﻿@charset "utf-8";
/* --------------------------------------------
   標準ベース
-------------------------------------------- */
body {
  font-family: Verdana, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  min-width: 960px;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #003399;
  text-decoration: none;
}
/* スマホ用に見せる */
.mb {
  display: none !important;
}
.mbBlock {
  margin-right: 5px;
}
@media screen and (max-width: 640px) {
  body {
    min-width: auto;
  }
  /* スマホ用に見せる */
  .pc {
    display: none !important;
  }
  .mb {
    display: block !important;
  }
  .mbBlock {
    display: block !important;
    margin-right: 0px;
  }
}
/* --------------------------------------------
   ボタン類
-------------------------------------------- */
.button_link_white a {
  color: #fff;
  padding: 0px 2px;
  font-size: 14px;
}
.button_link_white a:after {
  display: inline;
  content: url(../images/common/icon_link.png);
}
.btn01 a {
  background: linear-gradient(to bottom, #f9819a 0%, #f85879 100%);
  color: #fff;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  padding: 2px 20px;
  border-radius: 12px;
}
.btn01 a > span {
  display: inline-block;
  background: url(../images/common/icon_link.png) no-repeat right center / 12px auto;
  padding-right: 15px;
}
.btn01 a:hover > span {
  text-decoration: underline;
}
/* ----------------------------------------------
	Tableレイアウト
---------------------------------------------- */
table {
  width: 100%;
}
th, td {
  padding: 10px;
  border: 1px solid #ffbac8;
}
th {
  background: #ffd4de;
}
th.side {
  background: #fbeaee;
}
.table01 th {
  width: 30%;
  text-align: center;
}
@media only screen and (max-width:640px) {
  .table01 {
    margin: 0 auto;
  }
  .table01 th, .table01 td {
    width: auto;
    display: block;
    border-top: none;
  }
  .table01 tr:first-child th {
    border-top: 1px solid #eae8e6;
  }
}
/* --------------------------------------------
   【注意書き】
-------------------------------------------- */
ul.notes {
  margin-left: 1em;
  margin-top: 20px;
}
ul.notes > li {
  list-style-type: none;
  text-indent: -1em;
}
ul.notes > li:before {
  display: inline;
  content: "※";
}
/* --------------------------------------------
   【リストデザイン】
-------------------------------------------- */
ul.disc > li {
  list-style: disc;
  margin-left: 1em;
}
ol.decimal > li {
  list-style: decimal;
  margin-left: 20px;
}
/* --------------------------------------------
  【Flexbox】
-------------------------------------------- */
.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-end {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.flex-evenly {
  -webkit-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.flex .flex-col2 {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.flex .flex-col3 {
  width: 33.33333333%;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.flex .flex-col4 {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.flex img:not([data-src]), .flex img.lazy-loaded {
  height: auto;
}
/* --------------------------------------------
   下層共通パーツ
-------------------------------------------- */
/* ぱんくず */
#breadcrumb {
  margin-bottom: 20px;
  text-align: right;
  font-size: 11px;
}
/* メインビジュアル */
#mainVisual {
  background: url(../images/top/mainVisual_bg.jpg) repeat-x center top;
  padding: 20px 0;
  margin-bottom: 20px;
}
/* h2 */
#mainVisual h2.h2, h2.h2 {
  font-size: 36px;
  text-align: center;
}
/* h3 */
#mainContents h3.h3 {
  font-size: 24px;
  margin: 40px 0 30px;
  background: #f77395 url(../images/common/h3_bg.png);
  background: url(../images/common/h3_bg.png), -moz-linear-gradient(top, #f77395, #fb9387);
  background: url(../images/common/h3_bg.png), -webkit-linear-gradient(top, #f77395 0%, #fb9387 100%);
  background: url(../images/common/h3_bg.png), linear-gradient(to bottom, #f77395 0%, #fb9387 100%);
  background-position: right;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5px 20px;
}
#mainContents h3.h3:nth-of-type {
  margin-top: 0;
}
/* h4 */
#mainContents h4.h4 {
  font-size: 18px;
  margin: 20px 0;
  color: #f37200;
  border-bottom: #ffae0e 2px solid;
  border-left: #ffae0e 6px solid;
  padding: 0 0 5px 16px;
}
#mainContents h4.h4:nth-of-type {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  /* ぱんくず */
  #breadcrumb {
    display: none;
  }
  /* メインビジュアル */
  #mainVisual {
    background-size: auto 210px;
  }
  #mainVisual h2.h2, h2.h2 {
    font-size: 30px;
  }
  #mainContents h3.h3 {
    padding-left: 10px;
    padding-right: 10px;
  }
  #mainContents h4.h4 {
    padding-left: 10px;
  }
}
/* --------------------------------------------
   【事業団概要】
-------------------------------------------- */
#company ol.company01 {
  width: 90%;
  margin: 20px auto;
  counter-reset: number;
}
#company ol.company01 > li {
  position: relative;
  padding: 0.1em 0 0 2em;
  color: #3e8b30;
  font-size: 16px;
  margin-bottom: 10px;
  counter-increment: number;
}
#company ol.company01 > li:before {
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background-color: #7dc270;
  border-radius: 100%;
  color: #fff;
  font-size: .9em;
  text-align: center;
}
#company ol.company01 > li > ul {
  margin-top: 0.5em;
  counter-reset: number;
}
#company ol.company01 > li > ul > li {
  counter-increment: number02;
  color: #3d5ea2;
  font-size: 14px;
}
#company ol.company01 > li > ul > li:before {
  content: counter(number02)". ";
  margin-left: -20px;
}
#company ol.company01 > li > ul > li:last-child {
  margin-bottom: 20px;
}
#company ol.company01 > li > ul > li > p {
  color: #222;
  margin-bottom: 0.3em;
}
#company table {
  width: 90%;
  margin: 0 auto;
}
#company table td.company02 {
  text-align: center;
}
#company .ac-container {
  background: url(../images/inner/company02.png) right top no-repeat;
  background-size: 300px auto;
}
#company .ac-container label {
  display: block;
  cursor: pointer;
  text-decoration: underline;
}
#company .ac-container input {
  display: none;
}
#company .ac-container ol {
  overflow: hidden;
  height: 0;
  transition: 0.6s;
   position: relative;
   z-index: 10;
}
#company .ac-container input:checked ~ ol {
  height: auto;
}
/*新しいアコーディオン250710*/
#campany .accordion01 {
    max-width: 500px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
}

#campany .accordion01 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
}
summary {
  cursor: pointer;
}
#campany .accordion01 summary::-webkit-details-marker {
    display: none;
}

#campany .accordion01 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333;
    border-right: 3px solid #333333;
    content: '';
    transition: transform .3s;
}

#campany .accordion01[open] summary::after {
    transform: rotate(225deg);
}
#company ol.company01 > li > details > ul > li {
    counter-increment: number02;
    color: #3d5ea2;
    font-size: 14px;
}
#company ol.company01 > li > details > ul > li:before {
    content: counter(number02) ". ";
    margin-left: -20px;
}

#campany .accordion01 ul {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333 !important;
    transition: transform .5s, opacity .5s;
}

#campany .accordion01[open] ul {
    transform: none;
    opacity: 1;
}
@media screen and (max-width: 640px) {
  #company .ac-container {
    background: none;
  }
  #company ol.company01 {
    width: 100%;
  }
  #company table {
    width: 100%;
    font-size: 12px;
  }
  #company table th.side, #company table td.company02 {
    white-space: nowrap;
  }
}
/* --------------------------------------------
   【運営施設一覧】
-------------------------------------------- */
.facilities_mainvisual {
  display: block;
}
.facilities_mainvisual img {
  max-width: 100%;
}
#facilities h3.h3 {
  margin-bottom: 10px;
}
#facilities .facilities01 {
  margin-bottom: 40px;
}
#facilities .facilities01 th:first-child {
  width: 30%;
}
#facilities .facilities01 th:nth-child(2) {
  width: 12%;
}
#facilities .facilities01 th:last-child {
  width: 15%;
}
#facilities .facilities01 td:nth-child(2), #facilities .facilities01 td:last-child {
  text-align: center;
}
@media screen and (max-width: 640px) {
  #facilities h3 {
    width: auto;
  }
  #facilities .facilities01 {
    margin-bottom: 0;
  }
  #facilities .facilities01 thead {
    display: none;
  }
  #facilities .facilities01 tr {
    display: block;
    margin-bottom: 40px;
  }
  #facilities .facilities01 td {
    display: block;
    text-align: left !important;
    padding-top: 40px;
    border-bottom: none;
    position: relative;
  }
  #facilities .facilities01 td:last-child {
    border-bottom: 1px solid #ffbac8;
  }
  #facilities .facilities01 td:before {
    width: 96%;
    display: block;
    background: #ffd4de;
    text-align: center;
    padding: 5px 2%;
    border-bottom: 1px solid #ffbac8;
    position: absolute;
    top: 0;
    left: 0;
  }
  #facilities .facilities01 td:first-child:before {
    content: '施設名';
  }
  #facilities .facilities01 td:nth-child(2):before {
    content: '〒';
  }
  #facilities .facilities01 td:nth-child(3):before {
    content: '所在地';
  }
  #facilities .facilities01 td:last-child:before {
    content: '電話番号';
  }
}
/* --------------------------------------------
   【トピックス】
-------------------------------------------- */
#topics h4.h4 {
  margin: 30px 0 20px;
}
#topics h4.h4 > span {
  position: relative;
}
#topics h4.h4 > span > .new {
  width: 30px;
  height: 15px;
  background: #ea5550;
  color: #fff;
  font-size: 10px;
  text-align: center;
  position: absolute;
  top: 0;
  right: -35px;
}
#topics ul > li {
  margin-bottom: 10px;
}
#topics .topics_content p {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  #topics h4.h4 {
    padding-right: 40px;
    position: relative;
  }
  #topics h4.h4 > span {
    position: static;
  }
  #topics h4.h4 > span > .new {
    right: 5px;
  }
}
/* --------------------------------------------
   【採用情報】
-------------------------------------------- */
#careers .term_link {
  display: flex;
  justify-content: center;
}
#careers .term_link li {
  display: flex;
  align-items: center;
}
#careers .term_link li:not(:last-child)::after {
  content: "|";
  color: #ccc;
}
#careers .term_link a {
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding: 5px 30px;
}
#careers .term_link a::after {
  content: "\025b6";
  font-size: .625em;
}
#careers h4.h4 {
  margin: 30px 0 20px;
}
#careers h4.h4 > span {
  position: relative;
}
#careers h4.h4 > span > .new {
  width: 30px;
  height: 15px;
  background: #ea5550;
  color: #fff;
  font-size: 10px;
  text-align: center;
  position: absolute;
  top: 0;
  right: -35px;
}
.careersBtn {
  text-align: center;
  margin-top: 30px;
}
.careersBtn a {
  background: linear-gradient(to bottom, #f9819a, #f85879);
  color: #fff;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 20px;
}
.careersBtn a span {
  background: url("../images/common/icon_link.png") no-repeat right center;
  display: inline-block;
  padding-right: 15px;
}
.careersBtn a:hover span {
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  #careers .term_link a {
    font-size: 14px;
    padding: 5px 20px;
  }
  #careers h4.h4 {
    padding-right: 40px;
    position: relative;
  }
  #careers h4.h4 > span {
    position: static;
  }
  #careers h4.h4 > span > .new {
    right: 5px;
  }
  #careers .recruitBnr img {
    width: 100%;
    height: auto;
  }
}
/* --------------------------------------------
   【採用インフォメーション】
-------------------------------------------- */
#recruit h4.h4 {
  margin: 30px 0 20px;
}
#recruit .txt + .pdf {
  margin-top: 20px;
}
#recruit .pdf + .pdf {
  margin-top: 20px;
}
/* --------------------------------------------
   【広報誌】
-------------------------------------------- */
#magazine dl > dt {
  width: 100px;
  background: #fb9387;
  color: #fff;
  text-align: center;
  float: left;
  margin: 15px 0 15px 10px;
}
#magazine dl > dd {
  padding: 15px 10px 15px 120px;
  border-bottom: #888 1px solid;
}
@media screen and (max-width: 640px) {
  #magazine dl > dt {
    float: none;
    margin: 10px 5px 5px 5px;
  }
  #magazine dl > dd {
    padding: 5px;
  }
}
/* --------------------------------------------
   【職員専用サイト】
-------------------------------------------- */
#staff .staff_info {
  position: relative;
}
#staff .staff_info .more a {
  width: 140px;
  background: linear-gradient(to bottom, #f9819a 0%, #f85879 100%);
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 2px 0;
  border-radius: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
}
#staff .staff_info .more a::after {
  content: url(../images/top/info_button.png);
}
#staff .staff_info .infoBox {
  border: #fbeaee 10px solid;
  padding: 10px 15px;
}
#staff .staff_info .infoBox dl dt {
  float: left;
  padding: 15px;
}
#staff .staff_info .infoBox dl dd {
  padding: 15px;
  border-bottom: #888 1px solid;
}
#staff .staff_info .infoBox dl dd:last-child {
  border-bottom: none;
}
#staff .title {
  color: #f9819a;
  font-size: 24px;
  text-align: center;
  padding: 10px;
  margin-bottom: 40px;
  border: #f9819a 1px solid;
  border-bottom: #f9819a 4px solid;
}
#staff .column {
  padding-left: 240px;
  position: relative;
}
#staff .column .anchor {
  width: 160px;
  background: #f6f9fa;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#staff .column .anchor li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
#staff .column .anchor li:last-child {
  margin-bottom: 0;
}
#staff .column .anchor li::before {
  width: 12px;
  height: 12px;
  content: '';
  background: #f9819a;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}
#staff .column .anchor li a {
  color: #222;
}
#staff .column .list li {
  margin-top: 5px;
}
@media screen and (max-width: 640px) {
  #staff .staff_info .more a {
    width: 100px;
    font-size: 14px;
    top: 15px;
  }
  #staff .staff_info .infoBox dl dt {
    float: none;
    padding: 10px 0 0;
  }
  #staff .staff_info .infoBox dl dd {
    padding: 5px 0 10px;
  }
  #staff .column {
    padding-left: 0;
  }
  #staff .column .anchor {
    width: auto;
    max-width: 320px;
    background: none;
    padding: 0;
    margin: 0 auto;
    position: static;
  }
  #staff .column .anchor li {
    width: 32%;
    display: inline-block;
    padding-left: 0;
    margin: 2% 2% 0 0;
  }
  #staff .column .anchor li:first-child {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  #staff .column .anchor li:nth-child(4) {
    margin-right: 0;
  }
  #staff .column .anchor li::before {
    content: none;
  }
  #staff .column .anchor li a {
    background: #eee;
    display: block;
    text-align: center;
    padding: 5px 0;
  }
  #staff .column .anchor li:first-child a {
    background: #ddd;
  }
}
/* --------------------------------------------
   【臨時職員事前登録フォーム】
-------------------------------------------- */
#regist_form .occupation dt {
  background: #fbeaee;
  padding: 10px 50px 10px 20px;
  border: #ffbac8 1px solid;
  border-bottom: none;
  position: relative;
  cursor: pointer;
}
#regist_form .occupation dt.active {
  border-bottom: #ffbac8 1px solid;
}
#regist_form .occupation dt:last-of-type, #regist_form .occupation dd:last-of-type {
  border-bottom: #ffbac8 1px solid;
}
#regist_form .occupation dt::before, #regist_form .occupation dt::after {
  content: '';
  background: #ffbac8;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
#regist_form .occupation dt::before {
  width: 20px;
  height: 2px;
  right: 20px;
}
#regist_form .occupation dt::after {
  width: 2px;
  height: 20px;
  right: 29px;
}
#regist_form .occupation dt.active::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#regist_form .occupation dd {
  display: none;
  padding: 15px 15px 15px 100px;
  border-left: #ffbac8 1px solid;
  border-right: #ffbac8 1px solid;
}
#regist_form .occupation dd ul li {
  width: 33.33%;
  display: inline-block;
}
#regist_form .occupation .word, #regist_form [id^="occupation0"] .word {
  width: 60px;
  background: #fff;
  font-size: 11px;
  display: inline-block;
  text-align: center;
  margin: 0 5px;
  border: #222 1px solid;
}
#regist_form .qualification {
  padding: 20px;
  border: #ccc 1px solid;
}
#regist_form .qualification dt {
  width: 180px;
  background: #fbeaee;
  float: left;
  text-align: center;
  padding: 5px 0;
  border-top: #ffbac8 1px solid;
}
#regist_form .qualification dd {
  padding: 5px 10px 5px 200px;
  margin-bottom: 10px;
  border-top: #ffbac8 1px solid;
}
#regist_form .qualification dd:last-of-type {
  margin-bottom: 0;
}
#regist_form .occupationList li {
  display: inline-block;
}
#regist_form [id^="occupation0"] {
  background: #fafafa;
  display: none;
  padding: 15px;
  border: #ccc 1px solid;
}
#regist_form [id="occupation01"] {
  display: block;
}
#regist_form [id^="occupation0"] li {
  width: 50%;
  display: inline-block;
}
#regist_form #mailformpro table th {
  text-align: left;
}
@media screen and (max-width: 640px) {
  #regist_form .occupation dd {
    padding: 10px 10px 10px 40px;
  }
  #regist_form .occupation dd ul li {
    width: auto;
    display: block;
  }
  #regist_form .qualification {
    padding: 10px;
  }
  #regist_form .qualification dt {
    width: auto;
    float: none;
    border: #ffbac8 1px solid;
    border-bottom: none;
  }
  #regist_form .qualification dd {
    padding: 10px;
    border: #ffbac8 1px solid;
  }
  #regist_form [id^="occupation0"] {
    padding: 10px;
  }
  #regist_form [id^="occupation0"] li {
    width: auto;
    display: block;
  }
}
/* --------------------------------------------
   【リンク集】
-------------------------------------------- */
#links ul.links01 > li {
  float: left;
  width: 225px;
  text-align: center;
  margin-right: 18px;
  margin-bottom: 18px;
}
#links ul.links01 > li > a > img {
  padding: 1px;
  border: #ccc 1px solid;
}
#links ul.links01 > li > p {
  padding: 5px 0;
}
#links ul.links01 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  #links ul.links01 > li {
    font-size: 0.8em;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  #links ul.links01 > li > a > img {
    width: 100%;
    height: auto;
  }
  #links ul.links01 > li:nth-child(2n) {
    margin-right: 0;
  }
}
/* --------------------------------------------
   【お問い合わせ】
-------------------------------------------- */
.mfp_element_submit, .mfp_element_reset, .mfp_element_button {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 30%;
  padding: 10px 0 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background: #ffbdcb;
  color: #777;
  position: relative;
  cursor: pointer;
  border-style: none;
  font-weight: bold;
  margin-top: 20px;
}
.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover {
  background: #f9819a;
  color: #222;
}
/* --------------------------------------------
   【アクセス】
-------------------------------------------- */
#access .ggmap {
  width: 500px;
  margin-right: 20px;
  float: left;
}
#access dl > dt {
  font-size: 16px;
  color: #7dc270;
  font-weight: bold;
}
#access dl > dd {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  #access .ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    width: 100%;
    float: none;
    margin-right: 0;
  }
  #access .ggmap iframe, #access .ggmap object, #access .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/* --------------------------------------------
   【エントリーフォーム】
-------------------------------------------- */
#entry .photoBox_inner {
  display: inline-block;
  padding: 20px;
  border: #ccc 1px dashed;
}
#entry .photoBox dl dt {
  float: none;
  width: auto;
  background: #eee;
  color: #222;
  font-size: 14px;
  text-align: center;
  padding: 2px 5px 2px 30px;
  margin-bottom: 10px;
  position: relative;
}
#entry .photoBox.required dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
#entry .photoBox dl dt::before {
  content: "\02460";
  position: absolute;
  top: 2px;
  left: 10px;
}
#entry .photoBox:nth-of-type(2) dl dt::before {
  content: "\02461";
}
#entry .photoBox.required dl dt::after {
  content: "必須";
  background: #c00;
  color: #fff;
  font-size: 10px;
  display: inline-block;
  flex-shrink: 0;
  line-height: 1.8;
  padding: 0 5px;
  border-radius: 4px;
}
#entry .photoBox dl dd {
  padding: 0;
  margin-bottom: 5px;
}
#entry .photoBox_inner .mfp_attached_thumbnails {
  margin-top: 5px;
}
#entry .photoBox .mfp_attached_thumbnails img {
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 300px;
}
#entry .photoBox button {
  width: auto;
  background: #f5f5f5;
  color: #222;
  font-size: 14px;
  font-weight: normal;
  padding: 2px 8px;
  margin: 0;
  border: #bbb 1px solid;
  border-radius: 0;
}
@media screen and (max-width: 640px) {
  #entry .photoBox_inner {
    padding: 10px;
  }
  #entry .photoBox dl dt {
    padding-left: 25px;
  }
  #entry .photoBox dl dt::before {
    left: 5px;
  }
  #entry .photoBox_inner input {
    margin-bottom: 5px;
  }
  #entry p.center:not(.check) {
    text-align: left !important;
  }
  #entry .mfp_element_submit {
    min-width: 180px;
  }
}
/* --------------------------------------------
   【パンフレット】
-------------------------------------------- */
#pamphlet p span{
  position: relative;
  padding-right: 30px;
}
#pamphlet p span::after{
  position: absolute;
  top: 0;
  right: 5px;
  background: url("../images/inner/pdf.png") no-repeat center / cover;
  width: 20px;
  height: 20px;
  content: "";
}
#pamphlet .list > li{
  width: 250px;
  margin:40px 40px 0 0;
  text-align: center;
}
#pamphlet .list > li:nth-child(-n+3){
  margin-top: 0;
}
#pamphlet .list > li:nth-child(3n),
#pamphlet .list > li:last-child{
  margin-right: 0;
}
#pamphlet .list > li p{
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  #pamphlet .list > li{
    width: 48%;
    margin:4% 4% 0 0;
    font-size: 14px;
  }
  #pamphlet .list > li img{
    width: 100%;
    height: auto;
  }
  #pamphlet .list > li:nth-child(-n+3){
    margin-top: 4%;
  }
  #pamphlet .list > li:nth-child(-n+2){
    margin-top: 0;
  }
  #pamphlet .list > li:nth-child(3n),
  #pamphlet .list > li:last-child{
    margin-right: 4%;
  }
  #pamphlet .list > li:nth-child(2n){
    margin-right: 0;
  }
  #pamphlet .list > li:last-child{
    margin-right: 0;
  }
  #pamphlet .list > li > ul > li:first-child{
    margin-bottom: 4% !important;
  }
}
/* --------------------------------------------
   【サイトマップ】
-------------------------------------------- */
#sitemap ul {
  float: left;
  margin-right: 20px;
}
#sitemap ul li:before {
  display: inline;
  content: "＋ ";
  color: #7dc270;
}
/* --------------------------------------------
   【新着一覧】
-------------------------------------------- */
#information.newslist {
  padding: 0;
}
#information.newslist dl {
  border: none;
  padding: 0;
}
#information .infoBnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#information .infoBnr li {
  width: 460px;
  flex-shrink: 0;
  margin-right: 40px;
}
#information .infoBnr li:nth-child(2n) {
  margin-right: 0;
}
#information .infoBnr li:nth-child(n+3) {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  #information img {
    width: 100%;
    height: auto;
  }
  #information .infoBnr {
    display: block;
  }
  #information .infoBnr li {
    width: auto;
    margin-right: 0;
  }
  #information .infoBnr li:nth-child(n+2) {
    margin-top: 10px;
  }
}
/* --------------------------------------------
   【top】
-------------------------------------------- */
/* メインビジュアル */
#mainvisual_slide {
  background: #fff7f9;
  padding: 20px 0;
  overflow-x: hidden;
}
#mainvisual_slide .ms-view {
  overflow: visible;
}
#mainvisual_slide .ms-slide img, #mainvisual_slide .ms-thumb-frame img {
  margin: 0 !important;
}
#mainvisual_slide .ms-bullets {
  margin: 10px auto 0;
  position: static;
}
#mainvisual_slide .ms-bullets-count {
  right: auto;
}
#mainvisual_slide .ms-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  float: none;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}
#mainvisual_slide .ms-bullet-selected {
  background: #f85879;
}
/* メイン下バナー */
#information .bnr_recruit {
  margin-bottom: 40px;
}
/* 新着一覧 */
#information {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
#information .infolistbutton {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f85879;
  background: -moz-linear-gradient(top, #f9819a, #f85879);
  background: -webkit-linear-gradient(top, #f9819a 0%, #f85879 100%);
  background: linear-gradient(to bottom, #f9819a 0%, #f85879 100%);
  border-radius: 12px;
  text-align: center;
  padding: 2px 0;
  width: 140px;
}
#information .infolistbutton > a {
  color: #fff;
  padding: 0px 2px;
  font-size: 14px;
  width: 140px;
  display: block;
}
#information .infolistbutton > a:after {
  display: inline;
  content: url(../images/top/info_button.png);
}
#information dl {
  border: #fbeaee 10px solid;
  padding: 10px 15px;
}
#information dl > dt {
  float: left;
  width: 110px;
  height: 30px;
  padding-top: 15px;
  padding-left: 140px;
}
#information dl > dt.news {
  background: url(../images/top/info_bnr_info.png) no-repeat 20px 10px;
  background-size: 90px 29px;
}
#information dl > dt.topics {
  background: url(../images/top/info_bnr_topix.png) no-repeat 20px 10px;
  background-size: 90px 29px;
}
#information dl > dt.careers {
  background: url(../images/top/info_bnr_careers.png) no-repeat 20px 10px;
  background-size: 90px 29px;
}
#information dl > dd {
  border-bottom: #888888 1px solid;
  padding: 15px 20px 15px 0;
}
#information dl > dd:last-child {
  border-bottom: none;
}
#information dl > dd.kitakyu:before {
  display: inline;
  content: "北九州市福祉事業団";
  font-size: 12px;
  color: #f9819a;
  background: #fbeaee;
  padding: 3px 5px;
  margin-right: 5px;
}
/* TOP100 */
#top100 {
  background: #f6f9fa;
  padding: 40px 0 30px;
  overflow: hidden;
}
#top100 ul.top101 > li {
  display: inline-block;
  width: 223px;
  padding: 10px 0;
  background: #fff;
  border: #003399 1px solid;
  border-bottom: #003399 4px solid;
  font-size: 18px;
  text-align: center;
  margin-right: 20px;
  margin-bottom: 10px;
}
#top100 ul.top101 > li:nth-child(4), #top100 ul.top101 > li:last-child {
  margin-right: 0;
}
/* TOP200 */
#top200 {
  padding: 22px 0;
}
#top200 ul > li {
  display: inline-block;
}
#top200 ul > li:first-child {
  margin-right: 40px;
}
.staffBtn {
  text-align: center;
  margin-top: 20px;
}
.staffBtn a {
  background: linear-gradient(to bottom, #f9819a, #f85879);
  color: #fff;
  display: inline-block;
  padding: 5px 60px;
  border-radius: 20px;
}
.staffBtn a span {
  background: url("../images/common/icon_link.png") no-repeat right center;
  display: inline-block;
  padding-right: 15px;
}
.staffBtn a:hover span {
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  /* メインビジュアル */
  #mainvisual_slide {
    padding: 10px 1%;
  }
  #mainvisual_slide .ms-bullets {
    margin-top: 0;
  }
  /* メイン下バナー */
  #information .bnr_recruit {
    margin-bottom: 20px;
  }
  /* 新着一覧 */
  #information .infolistbutton {
    top: 8px;
    right: 10px;
    width: 100px;
  }
  #information .infolistbutton > a {
    width: 100px;
  }
  #information dl > dt {
    float: none;
    width: auto;
    padding-top: 18px;
    padding-left: 100px;
  }
  #information dl > dt.news, #information dl > dt.topics, #information dl > dt.careers {
    background-position: 0px 15px;
  }
  #information dl > dd {
    padding: 5px 0 10px;
  }
  /* 臨時職員事前登録フォーム */
  .registBnr img {
    width: 100%;
    height: auto;
  }
  .recruitBnr img {
    width: 100%;
    height: auto;
  }
  /* TOP100 */
  #top100 {
    background: #f6f9fa;
    padding: 40px 0 30px;
    overflow: hidden;
  }
  #top100 ul.top101 {
    width: 100%;
    float: none;
  }
  #top100 ul.top101 > li {
    width: 48%;
    margin: 1%;
    padding: 10px 0;
    box-sizing: border-box;
  }
  #top100 ul.top101 .plan {
    font-size: 14px !important;
  }
  /* TOP200 */
  #top200 ul > li {
    display: block;
  }
  #top200 ul > li:first-child {
    margin-right: 0;
  }
  #top200 ul > li a img {
    width: 100%;
    height: auto;
  }
}
