@charset "UTF-8";
/* Welcome to Compass. Use this file to define print styles.
 * * Import this file using the following HTML or equivalent:
 * * <link href="/stylesheets/common.css" media="print" rel="stylesheet" type="text/css" />*/
@import "format.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
/* difinition list-------------------------------------------------- */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

html {
  overflow: scroll;
}

html, body {
  width: 100%;
  height: 100%;
  color: #111;
  background-color: #fff;
  font-size: 0.95rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

a:link, a:visited {
  text-decoration: underline;
  color: #1D9746;
}

a:hover, a:active {
  text-decoration: none;
  color: #b89629;
}

h6 {
  padding: 10px 0 5px;
}

h6 a, a.button {
  text-decoration: none !important;
  border-radius: 0.5em;
  line-height: 1.3em;
  text-align: center;
  color: #fff !important;
  padding: 0.6em 3.3em 0.6em 1.2em;
  background-color: #1D9746;
  transition: background-color 0.3s;
  display: inline-block;
  position: relative;
}
h6 a:after, a.button:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  right: 1.1em;
  top: calc(50% - 0.3em);
  transform: rotate(45deg);
  transition: right 0.2s;
}

h6 a:hover, a.button:hover {
  background-color: #32bf85;
}
h6 a:hover:after, a.button:hover:after {
  right: 0.7em;
}

a.buttonS {
  font-size: 0.85rem;
  padding: 0.4em 2em 0.6em;
}

a.buttonSS {
  font-size: 0.8rem;
  padding: 0.2em 1em 0.3em;
}
a.buttonSS:after {
  display: none;
}

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

#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;
}

/* breakpoint */
body {
  padding-top: 150px;
}
@media screen and (max-width: 1100px) {
  body {
    padding-top: 100px;
  }
}

.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: 0.4em;
  display: inline-block;
  background: url(../img/arrow_r.svg) no-repeat center center #E4F3F0;
  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: #32bf85;
}

/* header---------------------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  z-index: 999;
  background-color: #fff;
  /* open */
}
@media screen and (max-width: 1100px) {
  #header {
    height: 100px;
  }
}
#header #siteLogo {
  width: 330px;
  position: absolute;
  left: 30px;
  top: 37px;
  z-index: 2000;
}
@media screen and (max-width: 1100px) {
  #header #siteLogo {
    top: 13px;
    left: 25px;
  }
}
#header #siteLogo a {
  display: block;
  text-decoration: none;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: bold;
  color: #000;
}
#header #siteLogo a em {
  color: #1D9746;
  font-size: 1.2em;
}
@media screen and (max-width: 480px) {
  #header #siteLogo a {
    font-size: 1.4em;
    padding-top: 10px;
  }
}
#header #siteLogo a span {
  display: block;
  color: #000;
  font-size: 0.6em;
  letter-spacing: normal;
}
@media screen and (max-width: 480px) {
  #header #siteLogo a span {
    font-size: 0.7em;
    color: #555;
  }
}
#header #smToggle {
  position: fixed;
  right: 20px;
  top: 24px;
  border-radius: 50%;
  padding: 0;
  width: 50px;
  height: 50px;
  transition: background 0.4s cubic-bezier(0.8, 0, 0.2, 1);
  background-color: #fff;
  cursor: pointer;
  z-index: 9999999;
  display: none;
}
@media screen and (max-width: 1100px) {
  #header #smToggle {
    display: block;
  }
}
#header #smToggle span {
  /* hamburger icon in CSS */
  position: absolute;
  display: block;
  height: 3px;
  border-radius: 10px;
  width: 30px;
  left: 10px;
  top: 0;
  background: #1D9746;
  transition: background 0.3s 0.3s;
}
#header #smToggle span.barT {
  top: 19px;
}
#header #smToggle span.barM {
  top: 25px;
  width: 25px;
  display: none;
}
#header #smToggle span.barB {
  top: 31px;
}
#header #smToggle span {
  /* other 2 lines */
  content: "";
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 0% 50%;
  transition: all 0.3s;
  opacity: 1;
}
#header #smToggle.selected {
  background-color: #1D9746;
}
#header #smToggle.selected span.barT {
  background: #fff;
  transform: translateX(4px) translateY(-5px) rotate(45deg);
}
#header #smToggle.selected span.barM {
  opacity: 0;
}
#header #smToggle.selected span.barB {
  background: #fff;
  width: 30px;
  transform: translateX(4px) translateY(4px) rotate(-45deg);
}
#header #globalNavigation {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation {
    display: none;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 95%;
    z-index: 9999;
    overflow-y: scroll;
  }
}
#header #globalNavigation ul#mainMenu {
  width: fit-content;
  margin-left: auto;
  padding-right: 20px;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation ul#mainMenu {
    width: auto;
    padding: 5em 1em 0;
    margin: 0;
  }
}
#header #globalNavigation ul#mainMenu li {
  display: inline-block;
  border-left: 1px solid #000;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation ul#mainMenu li {
    display: block;
    border: 0;
  }
}
#header #globalNavigation ul#mainMenu li.home, #header #globalNavigation ul#mainMenu li.others {
  display: none;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation ul#mainMenu li.home, #header #globalNavigation ul#mainMenu li.others {
    display: block;
  }
}
#header #globalNavigation ul#mainMenu li.contact {
  border: 0;
}
#header #globalNavigation ul#mainMenu li.contact a {
  background-color: #1D9746;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 0.3em;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation ul#mainMenu li.contact a {
    padding: 0.7em 1em;
  }
}
#header #globalNavigation ul#mainMenu li a {
  display: block;
  padding: 0em 1.5em;
  font-size: 1.1em;
  line-height: 1.3em;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  position: relative;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation ul#mainMenu li a {
    font-size: 1.2em;
    padding: 1em 0;
    border-top: 1px solid #e0e0e0;
  }
}
#header #globalNavigation ul#mainMenu li a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #1D9746;
  transition: all 0.2s cubic-bezier(0.8, 0, 0.2, 1);
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation ul#mainMenu li a:after {
    display: none;
  }
}
#header #globalNavigation ul#mainMenu li a:hover:after {
  width: 100%;
  left: 0;
}
#header #globalNavigation ul#mainMenu li a.hover:after {
  width: 100%;
  left: 0;
}
#header #globalNavigation .outpatient {
  padding-bottom: 2em;
  display: none;
}
@media screen and (max-width: 1100px) {
  #header #globalNavigation .outpatient {
    display: block;
  }
}

/* toppage--------------------------------------------------------- */
#branding {
  width: 100%;
  position: relative;
}
#branding:after {
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0);
  bottom: -0.3em;
  content: "For the world heritage!";
  opacity: 0.3;
  color: #fff;
  font-size: 9vw;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
}
#branding .inner {
  max-width: 1400px;
}
#branding .mainCopy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  padding: 17vw 0 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #branding .mainCopy {
    padding-top: 25vw;
  }
}
#branding .mainCopy h2.lead {
  font-size: 2.6em;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  color: #fff;
  font-weight: bold;
  padding: 0 0 0.5em;
}
@media screen and (max-width: 800px) {
  #branding .mainCopy h2.lead {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  #branding .mainCopy h2.lead {
    font-size: 1.1rem;
  }
}
#branding .mainCopy h2.lead em {
  color: #1D9746;
}
#branding .mainCopy p {
  padding: 1em 0;
  line-height: 1.5em;
}
#branding .bx-wrapper {
  margin-bottom: 0;
}

#slideShow {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  box-sizing: border-box;
  z-index: 998;
}
#slideShow li {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  box-sizing: border-box;
  width: 100%;
  height: 40vw;
}
@media screen and (max-width: 800px) {
  #slideShow li {
    height: 60vw;
  }
}

.topWrapper {
  padding: 10em 0;
  background: url(../img/bg_content.jpg) repeat left top;
}
@media screen and (max-width: 800px) {
  .topWrapper {
    padding: 7em 0;
  }
}
@media screen and (max-width: 800px) {
  .topWrapper {
    padding: 5em 0;
  }
}
.topWrapper p {
  line-height: 1.7em;
  padding-bottom: 2em;
}

.topUnitTitle {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 2em;
}
@media screen and (max-width: 800px) {
  .topUnitTitle {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 480px) {
  .topUnitTitle {
    font-size: 1.8em;
  }
}

#topContent {
  width: 100%;
}
#topContent span.newest {
  font-size: 10px;
  color: #fff;
  background-color: #e68;
  padding: 0px 4px;
  line-height: 12px;
  margin-left: 5px;
  border-radius: 3px;
}

/* value ------------------------------------------------------- */
#value {
  padding-bottom: 0;
  padding-top: 12vw;
}
#value .valueUnit {
  position: relative;
  background: #F1FEE2;
  background: linear-gradient(0deg, #f1fee2 50%, #bcf2c7 100%);
  padding-bottom: 3em;
}
#value .valueUnit:before {
  content: "";
  background: url(../img/value_bg.png) no-repeat center bottom;
  background-size: 100% auto;
  width: 100%;
  height: 6vw;
  top: -5.8vw;
  position: absolute;
  left: 0;
  display: block;
}
#value .valueUnit .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
}
#value .valueUnit .inner .summaryText {
  width: 47%;
}
@media screen and (max-width: 800px) {
  #value .valueUnit .inner .summaryText {
    width: 100%;
  }
}
#value .valueUnit .inner .summaryText h3 {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1em;
}
@media screen and (max-width: 480px) {
  #value .valueUnit .inner .summaryText h3 {
    font-size: 1.5rem;
  }
}
#value .valueUnit .inner .summaryText p {
  line-height: 1.9em;
  padding-bottom: 2em;
}
@media screen and (max-width: 480px) {
  #value .valueUnit .inner .summaryText p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 800px) {
  #value .valueUnit .inner .summaryText .moreInfo {
    padding-bottom: 2em;
  }
}
#value .valueUnit .inner .summaryPhoto {
  width: 47%;
}
@media screen and (max-width: 800px) {
  #value .valueUnit .inner .summaryPhoto {
    width: 100%;
    text-align: center;
  }
}
#value .valueUnit .inner .summaryPhoto img {
  border-radius: 0.5em;
  display: block;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 800px) {
  #value .valueUnit .inner .summaryPhoto img {
    margin: 0 auto 0.5em;
  }
}
#value .valueUnit .inner .summaryPhoto span {
  display: block;
  font-size: 0.85em;
  color: #555;
}
#value .valueUnit .inner .summaryPhoto .bx-wrapper {
  margin-bottom: 20px;
}

/* attempt ------------------------------------------------------- */
#attempt {
  padding: 0 0 3em;
}
#attempt .topUnitTitle {
  padding-bottom: 1em;
}
@media screen and (max-width: 800px) {
  #attempt p br {
    display: none;
  }
}
#attempt .attempt-list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
#attempt .attempt-list article {
  width: 42%;
  padding: 3%;
  margin-bottom: 4%;
  background-color: #fff;
  border-radius: 1em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 800px) {
  #attempt .attempt-list article {
    width: 100%;
  }
}
#attempt .attempt-list article h3 {
  color: #1D9746;
  padding: 0 0 1em;
  font-size: 1.3em;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #attempt .attempt-list article h3 {
    padding-bottom: 0.5em;
  }
}
#attempt .attempt-list article p {
  padding-bottom: 0;
}

/* about ------------------------------------------------------- */
#about {
  padding: 17vw 0 0;
}
#about .aboutUnit {
  position: relative;
  background: #eefde0;
  padding-bottom: 5em;
}
#about .aboutUnit:before {
  content: "";
  background: url(../img/about_bg.png) no-repeat center bottom;
  background-size: 100% auto;
  width: 100%;
  height: 33vw;
  top: -20vw;
  position: absolute;
  left: 0;
  display: block;
  z-index: 0;
}
#about .aboutUnit .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
}
#about .aboutUnit .inner .aboutText {
  width: 47%;
}
@media screen and (max-width: 800px) {
  #about .aboutUnit .inner .aboutText {
    width: 100%;
  }
}
#about .aboutUnit .inner .aboutText .topUnitTitle {
  padding-bottom: 0.5em;
}
#about .aboutUnit .inner .aboutMap {
  width: 47%;
}
@media screen and (max-width: 800px) {
  #about .aboutUnit .inner .aboutMap {
    width: 100%;
  }
}

/* document ------------------------------------------------------- */
#document .topUnitTitle {
  padding-bottom: 1em;
}
#document .lead-text {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  padding-bottom: 3em;
}
#document .recentList li {
  width: 22%;
  margin-bottom: 3%;
}
@media screen and (max-width: 800px) {
  #document .recentList li {
    width: 48%;
  }
}
#document .recentList li iframe {
  width: 100%;
  height: 155px;
}
@media screen and (max-width: 1100px) {
  #document .recentList li iframe {
    height: 11vw;
  }
}
@media screen and (max-width: 800px) {
  #document .recentList li iframe {
    height: 25.5vw;
  }
}
#document .shortcut-list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-bottom: 1em;
}
#document .shortcut-list li {
  width: 30%;
  padding-top: 1em;
}
@media screen and (max-width: 480px) {
  #document .shortcut-list li {
    width: 100%;
  }
}
#document .shortcut-list li a {
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 2em;
  color: #333;
  border-radius: 0.5em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* contact ------------------------------------------------------- */
#contact {
  padding: 5em 0;
  background: #E4F3F0;
  text-align: center;
}
#contact a.button {
  background-color: #b89629;
}

/* info ------------------------------------------------------- */
#info .inner .infoUnit {
  background-color: #fff;
  padding: 3em;
  border-radius: 1em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 480px) {
  #info .inner .infoUnit {
    padding: 1.5em;
  }
}
#info .inner .infoUnit:before {
  content: "";
  position: absolute;
  height: 15vw;
  max-width: 400px;
  width: 40%;
  left: 0;
  top: -7vw;
  background: url(../img/info_bg.png) no-repeat left top;
  background-size: 100%;
}
#info .inner .infoUnit .topUnitTitle {
  padding-bottom: 1em;
}

table.topRecentList {
  width: 100%;
  margin: 0 auto 1em;
  max-width: 1000px;
}
table.topRecentList tr {
  border-bottom: 1px solid #1D9746;
}
table.topRecentList tr th, table.topRecentList tr td {
  padding: 1em 0;
}
table.topRecentList tr th {
  padding-right: 2em;
  width: 5%;
  white-space: nowrap;
  color: #1D9746;
  font-size: 0.9em;
}

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 {
  font-size: 14px;
  max-height: 36px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 5px;
  padding: 0;
  font-weight: bold;
  line-height: 18px;
}
ul.recentList li .upDate {
  color: #e00;
  padding: 3px 0;
  width: auto;
  font-size: 11px;
}
ul.recentList li a:hover .upDate {
  text-decoration: none;
}
ul.recentList li .itemTxt {
  font-size: 13px;
  line-height: 18px;
  padding: 0;
  height: 60px;
  overflow: hidden;
  color: #666;
  text-overflow: ellipsis;
}

ul.topInfoList {
  border-top: 1px solid #e0e0e0;
  padding-bottom: 2em;
}
ul.topInfoList li {
  border-bottom: 1px solid #e0e0e0;
  padding: 2em 4em 2em 2em;
  position: relative;
}
@media screen and (max-width: 800px) {
  ul.topInfoList li {
    padding: 2em 3em 2em 0;
  }
}
@media screen and (max-width: 480px) {
  ul.topInfoList li {
    padding: 2em 1em;
  }
}
ul.topInfoList li a {
  display: block;
  text-decoration: none !important;
}
ul.topInfoList li .upDate {
  width: 165px;
  display: table-cell;
  vertical-align: middle;
  font-size: 2.5em;
  position: relative;
  font-family: Arial, sans-serif, Verdana;
}
@media screen and (max-width: 800px) {
  ul.topInfoList li .upDate {
    width: auto;
    display: block;
  }
}
ul.topInfoList li .upDate span.yyyy {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4em;
  padding-right: 0.5em;
}
@media screen and (max-width: 800px) {
  ul.topInfoList li .upDate span.yyyy {
    display: inline-block;
    padding-bottom: 0.5em;
  }
}
ul.topInfoList li .upDate:after {
  content: "";
  height: 100%;
  border-right: 1px solid #e0e0e0;
  position: absolute;
  right: 1em;
  top: 0;
}
@media screen and (max-width: 800px) {
  ul.topInfoList li .upDate:after {
    display: none;
  }
}
ul.topInfoList li .itemImg {
  width: auto;
  margin-bottom: 7px;
  width: 280px;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/noimg.png);
  background-color: #eee;
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 800px) {
  ul.topInfoList li .itemImg {
    width: 200px;
    height: 120px;
  }
}
@media screen and (max-width: 480px) {
  ul.topInfoList li .itemImg {
    width: 100%;
    height: 50vw;
    display: block;
  }
}
ul.topInfoList li .itemImg a {
  width: 100%;
  height: 100%;
}
ul.topInfoList li .infoText {
  display: table-cell;
  vertical-align: middle;
  width: calc(100% - 475px);
  padding-left: 30px;
}
@media screen and (max-width: 480px) {
  ul.topInfoList li .infoText {
    display: block;
    padding-left: 0;
    padding-top: 0.5em;
    width: 100%;
  }
}
ul.topInfoList li .infoText a:after {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  right: 0;
  top: calc(50% - 27px);
  border-radius: 50%;
  display: block;
  margin: 1em auto 0;
  border: 1px solid #32bf85;
  background: url(../img/arrow_r.svg) no-repeat center center;
  background-size: 4.5px;
  transition: background 0.3s;
}
@media screen and (max-width: 480px) {
  ul.topInfoList li .infoText a:after {
    display: none;
  }
}
ul.topInfoList li .infoText a h3 {
  font-size: 1.1rem;
  line-height: 1.4em;
  padding-bottom: 0.5em;
  color: #000;
}
ul.topInfoList li .infoText a .itemTxt {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7em;
}
ul.topInfoList li .infoText a:hover:after {
  background-image: url(../img/arrow_w_r.svg);
  background-color: #32bf85;
}

.backNumber {
  text-align: center;
  padding: 2em 0 1em;
}

.newest {
  position: absolute;
  font-size: 10px;
  color: #fff;
  display: block;
  background-color: #ec3766;
  padding: 1px 4px 2px;
  line-height: 12px;
  margin: 2px 0;
  border-radius: 3px;
}

#outpatient {
  display: block;
}

.outpatient h3 {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  color: #1D9746;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1em 0;
  margin-bottom: 2em;
}
.outpatient h3 .ti_icon {
  display: inline-block;
  padding: 0.3em 0 0.3em 1.5em;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.2em 1.4em;
}
.outpatient h3 .i_time {
  background-image: url(../img/icon_clock.svg);
}
.outpatient h3 .i_tell {
  background-image: url(../img/icon_tel.svg);
}
.outpatient h3 .i_binder {
  background-image: url(../img/icon_binder.svg);
}
.outpatient .opWrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: 1px solid #e0e0e0;
}
.outpatient .right_border {
  padding-right: 2%;
  border-right: 1px solid #e0e0e0;
}
@media screen and (max-width: 800px) {
  .outpatient .right_border {
    padding-right: 0;
    border-right: 0;
  }
}
.outpatient .headerUnit {
  padding: 0 1em 1em;
}
.outpatient .halfUnit {
  width: 48%;
}
@media screen and (max-width: 800px) {
  .outpatient .halfUnit {
    width: 100%;
    margin-bottom: 1em;
  }
}
.outpatient .fullUnit {
  width: 100%;
  padding-top: 1em;
}
.outpatient dl.busiHours {
  width: 100%;
  max-width: 470px;
  margin: 0 auto 2em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
}
.outpatient dl.busiHours dt, .outpatient dl.busiHours dd {
  margin: 0.7em 0;
  display: block;
  line-height: 1.5em;
}
.outpatient dl.busiHours dt {
  background-color: #32bf85;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  width: 80px;
  padding: 0.2em 0 0.4em;
}
.outpatient dl.busiHours dd {
  width: calc(97% - 80px);
  padding: 0.2em 0 0.4em 3%;
}
.outpatient dl.busiHours dd em {
  font-size: 2rem;
  font-weight: bold;
  font-family: Arial, sans-serif, Verdana;
}
.outpatient dl.busiHours dd small {
  display: block;
  font-size: 0.85rem;
  color: #555;
  padding-top: 0.5em;
}
.outpatient .clinicReserve {
  width: 100%;
  max-width: 470px;
  margin: 0 auto 2em;
  line-height: 2em;
}
.outpatient .clinicReserve .telNum {
  text-align: center;
  font-size: 2rem;
  font-family: Arial, sans-serif, Verdana;
  font-weight: bold;
  padding: 0.7em 0;
}
.outpatient .clinicReserve .telNum a {
  color: #333;
  text-decoration: none;
}
.outpatient .clinicReserve .telNum a:hover {
  color: #1D9746;
  text-decoration: underline;
}
.outpatient .clinicReserve .telNum small {
  display: inline-block;
  padding-right: 0.5em;
  font-size: 0.9rem;
}
.outpatient .clinicReserve .openTime {
  text-align: center;
  font-size: 1.4rem;
  font-family: Arial, sans-serif, Verdana;
  font-weight: bold;
}
.outpatient .clinicReserve .openTime .otLabel {
  background-color: #32bf85;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 0.2em 1em 0.4em;
  margin-right: 1em;
}
@media screen and (max-width: 480px) {
  .outpatient .clinicReserve .openTime .otLabel {
    margin: 0 auto 0.5em;
    max-width: 120px;
    display: block;
  }
}
.outpatient .departmentList {
  padding-bottom: 2em;
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
.outpatient .departmentList li {
  width: 25%;
  padding: 0.5em 0;
}
@media screen and (max-width: 800px) {
  .outpatient .departmentList li {
    width: 33%;
  }
}
@media screen and (max-width: 480px) {
  .outpatient .departmentList li {
    width: 50%;
  }
}
.outpatient .departmentList li a {
  color: #000;
  text-decoration: none;
  position: relative;
  padding-left: 25px;
  line-height: 1.3em;
  display: block;
}
.outpatient .departmentList 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 #32bf85;
  background: url(../img/arrow_r.svg) no-repeat center center;
  background-size: 4.5px;
  transition: background 0.3s;
}
.outpatient .departmentList li a:hover {
  text-decoration: underline;
}
.outpatient .departmentList li a:hover:before {
  background-image: url(../img/arrow_w_r.svg);
  background-color: #32bf85;
}

/* banner ------------------------------------------------------- */
#banner {
  border-top: 1px solid #e0e0e0;
}
#banner .bannerList {
  text-align: center;
}
@media screen and (max-width: 800px) {
  #banner .bannerList {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
  }
}
#banner .bannerList li {
  display: inline-block;
  padding: 0.5em;
}
@media screen and (max-width: 800px) {
  #banner .bannerList li {
    width: 30%;
    padding: 0 1.5% 1em;
  }
}
@media screen and (max-width: 480px) {
  #banner .bannerList li {
    width: 45%;
    padding: 0 2.5% 1em;
  }
}
#banner .bannerList li img {
  max-width: 100%;
}

/* container------------------------------------------------------- */
#container {
  width: 100%;
  word-wrap: break-word;
}
#container.secondPages {
  padding: 4em 0 0;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  #container.secondPages {
    padding-top: 3em;
  }
}
#container .pageTop {
  clear: both;
  text-align: right;
  padding: 30px 0 20px;
  font-size: 90%;
}
#container #attentionUnit {
  border: 1px solid #ff8080;
  padding: 1px;
  margin-bottom: 1em;
}
#container #attentionUnit .attInner {
  position: relative;
  background: url(../img/attention_bg.png) repeat-y left top;
  padding: 18px 20px 18px 43px;
}
#container #attentionUnit h2 {
  font-size: 16px;
  line-height: 1em;
  color: #d00;
  padding: 0;
  width: 205px;
  text-align: center;
  left: 0;
  top: calc(50% - 8px);
  position: absolute;
}
@media screen and (max-width: 800px) {
  #container #attentionUnit h2 {
    position: relative;
    left: unset;
    top: unset;
    padding: 0.5em 0 1em;
    width: 100%;
    text-align: center;
  }
}
#container #attentionUnit ul {
  padding-left: 210px;
}
@media screen and (max-width: 800px) {
  #container #attentionUnit ul {
    width: 100%;
    padding: 0 1em 0.6em;
  }
}
#container #attentionUnit ul li {
  padding: 0.5em 0;
}
#container #attentionUnit ul li a {
  font-size: 105%;
  color: #d00;
  font-weight: bold;
  padding-left: 22px;
  background: url(../img/attention_icon.png) no-repeat left center;
}
#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: "※";
}

/* pagenavi------------------------------------------------------- */
.pageNation {
  text-align: center;
  padding: 3em 0;
}
.pageNation span, .pageNation a {
  display: inline-block;
  padding: 0.2em 0.4em 0.3em;
  font-size: 1.2rem;
  line-height: 1.2em;
  font-family: Arial, sans-serif, Verdana;
}
.pageNation a.prev {
  padding-right: 1.8em;
  padding-left: 0;
  font-size: 1rem;
}
.pageNation a.next {
  padding-left: 1.8em;
  padding-right: 0;
  font-size: 1rem;
}
.pageNation .current {
  background-color: #000;
  color: #fff;
}

/* widget--------------------------------------------------------- */
#widget {
  width: 260px;
  float: right;
}
@media screen and (max-width: 1100px) {
  #widget {
    width: auto;
    float: none;
  }
}
#widget .widgetUnitBox {
  padding: 1em;
  margin-bottom: 2em;
  line-height: 1.3em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
}
#widget .widgetUnitBox dl.recentList dt {
  font-size: 80%;
  font-weight: bold;
  color: #ab740a;
  font-family: Arial, sans-serif, Verdana;
}
#widget .widgetUnitBox dl.recentList dd {
  font-size: 90%;
  padding-bottom: 1em;
}
#widget .widgetUnitBox .widgetMenu li {
  margin-top: 8px;
}
#widget .widgetUnitBox .widgetMenu li a {
  display: block;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  padding: 10px;
  background-color: #26b5c2;
  text-shadow: 0px 1px 0px #439097;
}
#widget .widgetUnitBox .widgetMenu .emergency a {
  background-color: #f94f6f;
  text-shadow: 0px 1px 0px #d04a63;
}
#widget .widgetUnitBox .widgetSubMenu li {
  padding: 0.5em 0;
}
#widget .widgetUnitBox .widgetSubMenu li a {
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  position: relative;
  padding-left: 23px;
  line-height: 1.3em;
  display: inline-block;
}
#widget .widgetUnitBox .widgetSubMenu li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 0.4em;
  display: inline-block;
  background: url(../img/arrow_r.svg) no-repeat center center #E4F3F0;
  background-size: 4.5px;
  transition: background 0.3s;
}
#widget .widgetUnitBox .widgetSubMenu li a:hover {
  text-decoration: underline;
}
#widget .widgetUnitBox .widgetSubMenu li a:hover:before {
  background-image: url(../img/arrow_w_r.svg);
  background-color: #32bf85;
}
#widget .widgetUnitBox .widgetSubMenu li .children {
  padding-left: 1em;
}
#widget .widgetUnitBox .widgetSubMenu li .children li {
  padding: 0.2em 0;
}
#widget .widgetUnitBox .widgetSubMenu li .children li a {
  padding-left: 10px;
  font-size: 0.8rem;
}
#widget .widgetUnitBox .widgetSubMenu li .children li a:before {
  content: "";
  position: absolute;
  border: 0;
  left: 0;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 0.2em;
  display: inline-block;
  background: url(../img/arrow_r.svg) no-repeat center left;
  background-size: 4.5px;
}
#widget .widgetUnitBox .widgetSubMenu .current_page_item {
  background-color: #edf3f7;
  border-radius: 1em;
  font-weight: bold;
}

.widgetTitle {
  font-size: 120%;
  text-align: center;
  padding: 3px 0 14px;
  margin-bottom: 17px;
  position: relative;
  border-bottom: 1px solid #1D9746;
}

dl.widgetGuide {
  padding-bottom: 5px;
  margin-bottom: 17px;
  border-bottom: 1px dotted #ccc;
}
dl.widgetGuide dt {
  padding-bottom: 12px;
}
dl.widgetGuide dd {
  padding-bottom: 10px;
}
dl.widgetGuide dd .noteList {
  padding-bottom: 0;
}

/* breadCrumb----------------------------------------------------- */
.breadCrumb {
  margin: 0;
  width: 100%;
  padding: 1em 0 1.1em;
  background: #E4F3F0;
}
.breadCrumb ul {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.breadCrumb ul li {
  float: left;
  padding-right: 12px;
  line-height: 1.3em;
  font-size: 0.85rem;
}
.breadCrumb ul li a {
  padding-right: 20px;
  background: url(../img/arrow_r.svg) no-repeat right center;
  background-size: 4.5px;
  text-decoration: none;
}
.breadCrumb ul li a:hover {
  text-decoration: underline;
}

.breadCrumb.bc_footer {
  margin-bottom: 0;
}

/* 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: 800px) {
  #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;
}

/* contentArea---------------------------------------------------- */
#contentsArea {
  float: left;
  width: calc(100% - 320px);
}
@media screen and (max-width: 1100px) {
  #contentsArea {
    width: auto;
    float: none;
    padding-bottom: 5em;
  }
}
#contentsArea #content {
  line-height: 1.4em;
}
#contentsArea #content .hentry {
  clear: both;
  *zoom: 1;
}
#contentsArea #content .hentry:after {
  content: "";
  display: table;
  clear: both;
}
#contentsArea h1.entry-title {
  font-size: 2.5em;
  line-height: 1.2em;
  font-weight: bold;
  padding: 0;
  text-align: center;
  position: relative;
  margin-bottom: 2em;
}
#contentsArea .post-title {
  padding: 0.2em 0 1em;
  border-bottom: 1px solid #e0e0e0;
  line-height: 130%;
  margin-bottom: 1em;
  font-size: 1.5em;
  font-weight: bold;
  color: #1D9746;
}
@media screen and (max-width: 800px) {
  #contentsArea .post-title {
    font-size: 1.3em;
  }
}
#contentsArea .childTitle {
  padding-top: 3px;
  font-size: 1.8rem;
  color: #1D9746;
  font-weight: bold;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
#contentsArea .thirdTitle {
  padding-top: 0.5em;
  font-size: 1.8rem;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
  line-height: 1.3em;
}
#contentsArea .image-title {
  padding: 0px 0 15px;
}
#contentsArea div.childTitle,
#contentsArea div.entry-title {
  padding: 0.8em 1.3em;
  margin-bottom: 2em;
  font-size: 0.9rem;
  color: #47749d;
  font-weight: normal;
  background: #f4f9fd;
  position: relative;
  border: 1px solid #d0dbe0;
  text-align: right;
  text-shadow: 0px 1px 0px #fff;
  display: none;
}
#contentsArea .type-post {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 2em;
  border-radius: 0.5em;
}
#contentsArea .type-post .list-date, #contentsArea .type-post .entry-meta {
  font-size: 85%;
  color: #ab740a;
  padding-bottom: 1em;
  line-height: 130%;
  font-weight: bold;
}
#contentsArea .entry-content {
  font-size: 1.1em;
}
#contentsArea .entry-content h2 {
  background-color: #E4F3F0;
  color: #1D9746;
  padding: 0.4em 0.6em 0.5em;
  margin: 1em 0;
  font-size: 1.8rem;
  line-height: 1.3em;
  font-weight: bold;
  border: 1px dotted #32bf85;
  border-radius: 0.2em;
}
@media screen and (max-width: 800px) {
  #contentsArea .entry-content h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  #contentsArea .entry-content h2 {
    font-size: 1.3em;
  }
}
#contentsArea .entry-content h3 {
  margin: 1.5em 0 1em;
  padding: 0 0 0.7em;
  border-bottom: 1px solid #1D9746;
  font-weight: bold;
  font-size: 1.4em;
}
@media screen and (max-width: 480px) {
  #contentsArea .entry-content h3 {
    font-size: 1.15em;
  }
}
#contentsArea .entry-content .wColumn {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 40px;
  -webkit-column-gap: 40px;
  column-gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
  line-height: 170%;
}
#contentsArea .entry-content .imgRight {
  float: right;
  padding: 5px 0 15px 15px;
}
#contentsArea .entry-content .imgLeft {
  float: left;
  padding: 5px 15px 15px 0px;
}
#contentsArea .entry-content .typeBlock td {
  height: 147px;
}
#contentsArea .entry-content table.flowTable {
  width: 100%;
  margin-bottom: 100px;
  border-bottom: 1px dashed #bbb;
}
#contentsArea .entry-content table.flowTable th {
  width: 300px;
  vertical-align: top;
  padding: 0;
}
@media screen and (max-width: 800px) {
  #contentsArea .entry-content table.flowTable th {
    height: auto !important;
  }
}
#contentsArea .entry-content table.flowTable td {
  font-size: 90%;
  line-height: 150%;
}
#contentsArea .entry-content table.flowTable th, #contentsArea .entry-content table.flowTable td {
  border: 0 !important;
  border-top: 1px dashed #bbb !important;
  padding: 10px 0 !important;
}
@media screen and (max-width: 800px) {
  #contentsArea .entry-content table.flowTable th, #contentsArea .entry-content table.flowTable td {
    width: auto !important;
    height: auto !important;
    display: block;
    border-top: 0 !important;
  }
}
#contentsArea .entry-content table.flowTable td.arrow {
  padding-bottom: 70px !important;
  background: url(../img/flow_arrow.png) no-repeat 150px bottom;
}
#contentsArea .entry-content dl.flowList dt {
  padding-bottom: 7px;
  border-bottom: 2px solid #888;
  color: #4a8c23;
  margin-bottom: 10px;
  font-size: 20px;
}
#contentsArea .entry-content dl.flowList dd {
  margin-bottom: 30px;
  font-size: 90%;
  line-height: 150%;
}

#contentsArea.single-attachment {
  float: none;
  margin: 0 auto;
}

/* footer--------------------------------------------------------- */
#footer {
  width: 100%;
  clear: both;
  text-align: center;
  padding-top: 2em;
}
#footer .footerSiteMap {
  padding: 2em 0;
}
#footer .footerSiteMap li {
  display: inline-block;
  padding: 0;
}
#footer .footerSiteMap li a {
  padding: 1em;
  text-decoration: none;
  display: block;
}
#footer #footerBottom {
  padding: 2em 0 0;
}
#footer #footerBottom .footerName {
  font-size: 1.3em;
  font-weight: bold;
  padding-bottom: 0.5em;
}
#footer #footerBottom address {
  line-height: 150%;
  color: #555;
  font-size: 0.9em;
}
#footer #footerBottom .social {
  padding-top: 0.5em;
  font-size: 0.9em;
}
#footer #footerBottom .council {
  font-size: 1.1em;
  padding-top: 2em;
}
#footer #footerBottom .council .place {
  padding-bottom: 0.5em;
  font-size: 0.9em;
}
#footer #footerBottom .accessibility {
  padding-top: 3em;
}
#footer #footerBottom .accessibility a.button {
  background-color: #32bf85;
  color: #fff !important;
}
#footer #copyright {
  color: #999;
  font-size: 0.9rem;
  padding: 1.8em 0;
  text-align: center;
  font-size: 80%;
}

/* responsive structure-------------------------------------------- */
@media screen and (max-width: 800px) {
  .inner {
    width: 95%;
    margin: 0 auto;
  }
  #pickup {
    padding-bottom: 30px;
  }
  #pickup .pickUpBanner {
    width: 100%;
  }
  #container #attentionUnit .attInner {
    padding: 10px;
    background-repeat: repeat;
  }
  #container #attentionUnit h3 {
    float: none;
    width: auto;
    text-align: center;
    padding-bottom: 10px;
  }
  #container #attentionUnit ul {
    float: none;
    width: auto;
  }
  #container #attentionUnit ul li a {
    font-weight: normal;
    font-size: 100%;
  }
  #container .pageTop {
    text-align: center;
  }
  #container #topWrapper {
    width: 100%;
    float: none;
  }
  #container #topWrapper #topContent {
    width: 100%;
    float: none;
  }
  #container #topWrapper #topContent .topGuide {
    display: block;
  }
  #container #topWrapper #topContent .pickUpBanner li {
    width: 100%;
    overflow: hidden;
    text-align: center;
  }
  #container #topWrapper #topContent .pickUpBanner li img {
    padding: 0;
    border: 0;
    max-width: 120%;
    height: auto;
  }
  #container #topWrapper #topContent .topInfoUnit {
    width: 97%;
    margin: 0 auto;
  }
  #container #topWrapper #topContent .topInfoUnit .topRecentList td {
    font-size: 70% !important;
    width: 75px;
  }
  #header #headerNavi {
    width: 100%;
    float: none;
    padding-top: 0;
  }
  #header #headerNavi #toggleSwitch {
    display: block;
    float: right;
    padding-right: 10px;
  }
  #header #headerNavi #toggleSwitch img {
    width: 40px;
    height: 40px;
  }
  #header #headerNavi #globalNavigation {
    clear: both;
    padding: 0px 0 4px;
    border: 0;
    display: none;
  }
  #header #headerNavi #globalNavigation li {
    float: none;
    width: 100%;
    height: auto;
    border: 0;
    border-top: 1px solid #fff;
    background-image: none;
  }
  #header #headerNavi #globalNavigation li:first-child {
    border-left: 0;
  }
  #header #headerNavi #globalNavigation li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background-color: #3dadff;
    text-decoration: none;
  }
  #contentsArea {
    padding-bottom: 30px;
  }
  #contentsArea #content h1.entry-title {
    font-size: 1.8rem;
  }
  #contentsArea #content img {
    max-width: 100%;
    height: auto;
  }
  #widget {
    clear: both;
  }
  #widget .widgetUnitBox {
    border-right: 0;
    border-left: 0;
  }
  #widget .widgetUnitBox .widgetMenu {
    clear: both;
  }
  #widget #widgetRecent {
    display: none;
  }
  dl.widgetGuide {
    width: 50%;
    float: left;
    border-bottom: 0;
  }
  body.home #widget .guidePrmy, body.home #widget .widgetGuide {
    display: none;
  }
  #footer #footerTop .noSmoking {
    clear: both;
    float: none;
    margin-left: 10px;
  }
  #footer #footerToggleSwitch {
    text-align: center;
    padding: 11px 0;
    color: #fff;
    background-color: #0f8ae4;
    width: 97%;
    margin: 0 auto;
    text-shadow: 0px 1px 0px #439097;
    border-radius: 3px;
  }
}
@media screen and (max-width: 480px) {
  #pickup {
    padding-bottom: 30px;
  }
  #pickup .pickUpBanner {
    width: 100%;
  }
  #pickup .pickUpBanner li {
    width: 98%;
    float: none;
    margin: 0 1% 10px;
  }
  #pickup .pickUpBanner li a {
    background-position: top right !important;
  }
  #pickup .pickUpBanner li.recruit {
    margin: 0 1% 10px;
  }
  #pickup .pickUpBanner li.recruit a {
    background-position: top right !important;
  }
  #topContent ul.recentList li .itemImg {
    height: 130px;
  }
  #container #topWrapper #topContent .topInfoUnit {
    width: 97%;
    margin: 0 auto;
  }
  #container #topWrapper #topContent .topInfoUnit .topRecentList td {
    display: none;
  }
  #container #contentsArea .recruitList {
    margin: 0;
    padding: 0 0 30px;
  }
  #container #contentsArea .recruitList li {
    float: none;
    margin: 0 0 10px;
    width: 100%;
    list-style: none;
  }
  #container #contentsArea .entry-content .ofx {
    overflow-x: scroll;
  }
  #container #contentsArea .entry-content table tr td, #container #contentsArea .entry-content table tr th {
    padding: 0.5em 0.7em;
    font-size: 85%;
    min-width: 5em;
  }
  #widget .widgetUnitBox .widgetMenu {
    clear: both;
  }
  dl.widgetGuide {
    width: auto;
    float: none;
    border-bottom: 0;
  }
}
@media print {
  #header {
    position: relative;
  }
}

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