@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
  font-family: 'メイリオ',Meiryo,sans-serif;
}

body {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #5D454B;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

.ro a img {
  transition: opacity .2s;
}
.ro a:hover img {
  opacity: .8;
}

.pc-block {
  display: block;
}

.sp-block {
  display: none;
}

.inner ul li p.text a {
  color: #FF678A;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
#header .logo {
  width: 136px;
  padding: 2px 0 8px;
}
#header .right {
  display: flex;
  align-items: center;
}
#header .hnavi {
  margin-right: 25px;
  font-size: 1.2rem;
}
#header .hnavi ul {
  display: flex;
  align-items: center;
}
#header .hnavi ul li {
  margin-right: 25px;
}
#header .hnavi ul li:last-child {
  margin-right: 0;
}
#header .hnavi a {
  display: block;
  position: relative;
}
#header .hnavi a:before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-top: 2px solid #FF678A;
  border-right: 2px solid #FF678A;
  transform: rotate(45deg);
  content: "";
}
#header .pc-search .input-wrapper {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  border: 3px solid #FF678A;
  border-radius: 23px;
}
#header .pc-search .input-wrapper input[type="image"] {
  width: 24px;
  margin-right: 10px;
}
#header .pc-search .input-wrapper input[type="text"] {
  width: 160px;
  height: 30px;
  padding: 0;
  border: none;
  outline: none;
  font-size: 1.4rem;
}
#header .btn-sp-search {
  display: none;
}
#header .btn-sp-menu {
  display: none;
}
#header .btn-close {
  display: none;
}

#sp-search,
#sp-search-detail {
  display: none;
}

#sp-menu {
  display: none;
}

#gnavi {
  background-color: #FCEDEC;
  font-family: "Quicksand", "M PLUS 1p";
}
#gnavi ul {
  display: flex;
  align-items: center;
  max-width: 1124px;
  margin: 0 auto;
}
#gnavi ul li {
  width: 20%;
  flex-grow: 1;
  position: relative;
  font-size: 1.6rem;
}
#gnavi ul li.sp {
  display: none;
}
#gnavi ul li.double br {
  display: none;
}
#gnavi ul:first-child a {
  padding-top: 7px;
}
#gnavi ul:last-child a {
  padding-bottom: 7px;
}
#gnavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #gnavi {
    position: fixed;
    width: 100%;
    border-top: 2px solid #ff9ab1;
    bottom: 0;
    z-index: 10;
  }
  #gnavi ul li {
    width: auto;
  }
  #gnavi ul li.pc {
    display: none;
  }
  #gnavi ul li.sp {
    display: block;
  }
  #gnavi ul li.double {
    text-align: center;
    line-height: 1.2;
    font-size: 1.2rem;
  }
  #gnavi ul li.double br {
    display: inline;
  }
}
@media (max-width: 320px) {
  #gnavi ul li {
    font-size: 1.2rem;
  }
}

#contents {
  max-width: 1124px;
  margin: 0 auto;
  padding: 40px 10px 60px;
}
#contents .breadcrumb {
  padding: 0 0 15px;
}
#contents .breadcrumb ul {
  display: flex;
}
#contents .breadcrumb ul li {
  position: relative;
  padding-right: 25px;
  font-size: 1.2rem;
}
#contents .breadcrumb ul li:after {
  position: absolute;
  content: "";
  top: 5px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}
#contents .breadcrumb ul li:last-of-type {
  padding-right: 0;
}
#contents .breadcrumb ul li:last-of-type:after {
  display: none;
}
#contents .pagenation {
  text-align: center;
}
#contents .pagenation ul {
  display: flex;
  justify-content: center;
}
#contents .pagenation ul li {
  font-size: 1.4rem;
  font-weight: bold;
}
#contents .pagenation ul li a {
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  margin: 0 5px;
  text-align: center;
  border-radius: 17px;
  background: #f1f0ec;
  font-weight: bold;
}
#contents .pagenation ul li.active {
  width: 34px;
  height: 34px;
  line-height: 34px;
  margin: 0 5px;
  text-align: center;
  border-radius: 17px;
  background: #282222;
  color: #FFF;
}
#contents .pagenation ul li.prev {
  position: relative;
}
#contents .pagenation ul li.prev a {
  background: inherit;
  font-weight: normal;
}
#contents .pagenation ul li.prev:after {
  position: absolute;
  content: "";
  top: 14px;
  left: -4px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(45deg);
}
#contents .pagenation ul li.next {
  position: relative;
}
#contents .pagenation ul li.next a {
  background: inherit;
  font-weight: normal;
}
#contents .pagenation ul li.next:after {
  position: absolute;
  content: "";
  top: 14px;
  right: -4px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}

#footer .banners {
  margin-bottom: 45px;
  background-color: #f1f0ec;
}
#footer .banners .inner {
  max-width: 1124px;
  margin: 0 auto;
  padding: 30px 10px;
  overflow: hidden;
}
#footer .banners ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.66904% -2.66904% 0;
}
#footer .banners ul li {
  flex-basis: 47.40035%;
  margin: 0 2.59965% 2.59965% 0;
  text-align: center;
}
#footer .fnavi {
  display: flex;
  justify-content: space-between;
  max-width: 1124px;
  margin: 0 auto 20px;
  padding: 0 10px;
}
#footer .fnavi > div {
  flex-basis: 48.66548%;
}
#footer .fnavi .title {
  margin-bottom: 20px;
  border-bottom: 1px solid #FF678A;
  color: #FF678A;
  font-size: 1.8rem;
  font-weight: bold;
}
#footer .fnavi .contents > .inner {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
#footer .fnavi .contents ul {
  flex-basis: 48.62888%;
}
#footer .fnavi .contents ul li {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
#footer .fnavi .contents ul li:last-child {
  margin-bottom: 0;
}
#footer .fnavi .contents a {
  text-decoration: underline;
}
#footer .fnavi .contents a:hover {
  text-decoration: none;
}
#footer .fnavi .group > .inner {
  overflow: hidden;
}
#footer .fnavi .group ul li {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
#footer .fnavi .group ul li:last-child {
  margin-bottom: 0;
}
#footer .fnavi .group a {
  text-decoration: underline;
}
#footer .fnavi .group a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  #footer .fnavi .group {
    margin-bottom: 10px;
  }
  #footer .fnavi .group > .inner {
    display: block;
  }
  #footer .fnavi .group .title {
    padding-left: 4%;
  }
  #footer .fnavi .group ul {
    background-color: #fff;
  }
  #footer .fnavi .group ul:first-child {
    border-top: 1px solid #D7D4D4;
  }
  #footer .fnavi .group ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #D7D4D4;
  }
  #footer .fnavi .group a {
    display: block;
    position: relative;
    padding: 10px 4%;
  }
  #footer .fnavi .group a:after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4%;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    content: "";
  }
}
#footer .abj {
  margin-bottom: 25px;
}
#footer .abj .logo {
  width: 120px;
  margin: 0 auto;
}
#footer .abj p {
  font-size: 1rem;
  text-align: center;
}
#footer .copyright {
  padding: 20px;
  border-top: 3px solid #FF678A;
  font-size: 1.2rem;
  text-align: center;
}

@media (max-width: 768px) {
  body.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }

  .pc-block {
    display: none;
  }

  .sp-block {
    display: block;
  }

  #header {
    position: relative;
    height: 55px;
    padding: 0 4% 0 1.8%;
    border-bottom: 1px solid #FF678A;
  }
  #header .logo {
    width: 95px;
    padding: 0;
  }
  #header .right {
    margin-right: -9px;
  }
  #header .hnavi {
    display: none;
  }
  #header .pc-search {
    display: none;
  }
  #header .btn-sp-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
  }
  #header .btn-sp-search img {
    width: 32px;
  }
  #header .btn-sp-menu {
    display: block;
  }
  #header .btn-sp-menu .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
  }
  #header .btn-sp-menu .icon {
    position: relative;
    width: 17px;
    height: 17px;
  }
  #header .btn-sp-menu span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 17px;
    height: 3px;
    margin: auto;
    background-color: #FF678A;
  }
  #header .btn-sp-menu span::before,
  #header .btn-sp-menu span::after {
    display: block;
    position: absolute;
    width: 17px;
    height: 3px;
    background-color: #FF678A;
    content: "";
  }
  #header .btn-sp-menu span::before {
    top: -7px;
  }
  #header .btn-sp-menu span::after {
    bottom: -7px;
  }
  #header .btn-sp-menu.on span {
    background-color: transparent;
  }
  #header .btn-sp-menu.on span::before {
    top: 0;
    transform: rotate(45deg);
  }
  #header .btn-sp-menu.on span::after {
    bottom: 0;
    transform: rotate(135deg);
  }
  #header .btn-close {
    display: none;
  }
  #header .btn-close .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
  }
  #header .btn-close .icon {
    position: relative;
    width: 17px;
    height: 17px;
  }
  #header .btn-close span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 17px;
    height: 3px;
    margin: auto;
    background-color: transparent;
  }
  #header .btn-close span::before,
  #header .btn-close span::after {
    display: block;
    position: absolute;
    width: 17px;
    height: 3px;
    background-color: #282222;
    content: "";
  }
  #header .btn-close span::before {
    top: 0;
    transform: rotate(45deg);
  }
  #header .btn-close span::after {
    bottom: 0;
    transform: rotate(135deg);
  }

  #sp-search {
    position: absolute;
    z-index: 15;
    top: 55px;
    left: 0;
    width: 100%;
    overflow: auto;
    border-top: 3px solid #D7D4D4;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  #sp-search > .inner {
    padding: 20px 0 0;
  }
  #sp-search .input-wrapper {
    display: flex;
    align-items: center;
    width: 92%;
    height: 40px;
    margin: 0 auto 10px;
    padding: 0 15px;
    border-radius: 23px;
    box-sizing: border-box;
    background-color: #f1f0ec;
  }
  #sp-search .input-wrapper input[type="image"] {
    width: 20px;
    margin-right: 10px;
  }
  #sp-search .input-wrapper input[type="text"] {
    flex-grow: 1;
    width: auto;
    height: 30px;
    padding: 0;
    border: none;
    outline: none;
    background-color: #f1f0ec;
    font-size: 1.2rem;
  }
  #sp-search ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 15px;
  }
  #sp-search ul li {
    margin: 0 0 0 10px;
  }
  #sp-search ul li a {
    display: inline-block;
    border-radius: 20px;
    padding: 5px 15px 5px 15px;
    background-color: #f5f5f5;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) and (max-width: 320px) {
  #sp-search ul li a {
    padding: 5px 10px 5px 10px;
  }
}

@media (max-width: 768px) {
  #sp-search-detail {
    position: absolute;
    z-index: 16;
    top: 55px;
    left: 0;
    width: 100%;
    overflow: auto;
    border-top: 3px solid #D7D4D4;
    box-sizing: border-box;
    background-color: #fefefe;
  }
  #sp-search-detail > .inner {
    padding: 10px 4% 0;
  }
  #sp-search-detail > .inner dt {
    margin-top: 10px;
    font-weight: bold;
  }
  #sp-search-detail > .inner dd input[type=text] {
    width: 100%;
    height: 30px;
    padding: .6em 1.5em .5em 1.0em;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    background-color: #f1f0ec;
  }
  #sp-search-detail > .inner dd select {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f1f0ec;
  }
  #sp-search-detail > .inner label {
    display: block;
  }
  #sp-search-detail .button {
    position: relative;
    max-width: 500px;
    width: 100%;
    height: 45px;
    margin: 20px auto 0;
  }
  #sp-search-detail .button:after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    content: "";
  }
  #sp-search-detail .button:hover {
    cursor: pointer;
  }
  #sp-search-detail .button input[type=submit] {
    width: 100%;
    border: none;
    align-items: center;
    position: relative;
    height: 44px;
    border-radius: 22px;
    font-size: 1.8rem;
    font-weight: bold;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    color: #FFF;
    background: #ff678a;
  }

  #sp-menu {
    position: absolute;
    z-index: 15;
    top: 55px;
    left: 0;
    width: 100%;
    overflow: auto;
    border-top: 3px solid #D7D4D4;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  #sp-menu ul {
    background-color: #fff;
  }
  #sp-menu ul li {
    border-bottom: 1px solid #D7D4D4;
  }
  #sp-menu a {
    display: block;
    position: relative;
    padding: 10px 4%;
  }
  #sp-menu a:after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4%;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    content: "";
  }

  #contents {
    width: 92%;
    padding: 20px 0 30px;
  }
  #contents .breadcrumb {
    order: 3;
  }
  #contents .breadcrumb ul {
    display: block;
  }
  #contents .breadcrumb ul li {
    display: inline-block;
  }
  #contents .pagenation {
    width: 100%;
    margin-bottom: 30px;
    order: 2;
  }
  #contents .pagenation ul li a {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
  #contents .pagenation ul li.active {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
  #contents .pagenation ul li.prev:after {
    top: 10px;
    left: -6px;
  }
  #contents .pagenation ul li.next:after {
    top: 10px;
    right: -6px;
  }

  #footer {
    padding-bottom: 80px;
    background-color: #F1F0EC;
  }
  #footer .banners {
    margin-bottom: 0;
  }
  #footer .banners .inner {
    width: 92%;
    padding: 20px 0;
  }
  #footer .banners ul {
    display: block;
    margin: 0 0 -10px 0;
  }
  #footer .banners ul li {
    margin: 0 0 10px 0;
  }
  #footer .fnavi {
    display: block;
    margin: 0 auto 25px;
    padding: 0;
  }
  #footer .fnavi .title {
    margin-bottom: 10px;
    border-bottom: none;
    color: #000;
    font-size: 1.2rem;
  }
  #footer .fnavi .contents {
    margin-bottom: 10px;
  }
  #footer .fnavi .contents > .inner {
    display: block;
  }
  #footer .fnavi .contents .title {
    display: none;
  }
  #footer .fnavi .contents ul {
    background-color: #fff;
  }
  #footer .fnavi .contents ul:first-child {
    border-top: 1px solid #D7D4D4;
  }
  #footer .fnavi .contents ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #D7D4D4;
  }
  #footer .fnavi .contents a {
    display: block;
    position: relative;
    padding: 10px 4%;
  }
  #footer .fnavi .contents a:after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4%;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    content: "";
  }
  #footer .abj {
    width: 92%;
    margin: 0 auto 0;
  }
  #footer .abj .logo {
    width: 85px;
    margin: 0 auto 15px;
  }
  #footer .abj p {
    font-size: 1rem;
  }
  #footer .copyright {
    padding: 15px;
    border-top: none;
    font-size: 1.2rem;
  }
}
.cms h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #FF678A;
  color: #FF678A;
  font-size: 2.0rem;
  font-weight: bold;
}
.cms h2:first-child {
  margin-top: 0;
}
.cms h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  color: #FF678A;
  font-size: 1.6rem;
  font-weight: bold;
}
.cms h4,
.cms h5,
.cms h6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  color: #FF678A;
  font-size: 1.6rem;
  font-weight: bold;
}
.cms p {
  margin: 0 0 2.5rem;
}
.cms ul,
.cms ol {
  margin: 0 0 2.5rem;
}
.cms ul li,
.cms ol li {
  list-style: disc;
  margin-left: 2.5rem;
  margin-bottom: 0.5rem;
  list-style-position: initial;
}
.cms ul ul {
  margin: 0 0 0 1em;
}
.cms ul ul li {
  list-style-type: circle;
  margin: 0 0 1rem 1em;
}
.cms ul ul ul li {
  list-style-type: square;
  margin: 0 0 1rem 1em;
}
.cms ul li {
  list-style: disc;
}
.cms ol ol {
  margin: 0 0 0 1em;
}
.cms ol ol li {
  margin: 0 0 1rem 1em;
}
.cms ol li {
  list-style: decimal;
}
.cms dl {
  margin: 1.5em 0 2.5rem;
}
.cms dl dt {
  font-weight: bold;
}
.cms dl dd {
  margin: 0 0 1.5rem 0;
}
.cms blockquote {
  margin: 1em;
  padding: 0 0 0 1em;
  border-left: 3px solid #CCCCCC;
}
.cms blockquote blockquote {
  margin: 0 0 2.5rem;
}
.cms pre {
  margin: 1em;
  padding: 1em;
  border: 1px solid #CCCCCC;
  white-space: normal;
}
.cms table {
  width: 100%;
  border-bottom: dotted 2px #d9d6d6;
  margin: 0 0 2.5rem;
}
.cms table th {
  width: 165px;
  padding: 10px;
  background: #f1f0ec;
  border-top: dotted 2px #d9d6d6;
}
.cms table td {
  padding: 10px 30px;
  border-top: dotted 2px #d9d6d6;
  word-break: break-all;
}
.cms a {
  text-decoration: underline;
}
.cms a:hover {
  text-decoration: none;
}
.cms a.pdf {
  position: relative;
  padding: 2px 0 0 30px;
}
.cms a.pdf:before {
  position: absolute;
  content: "";
  background: url(../images/common/icon_pdf.png) no-repeat left top;
  -webkit-background-size: contain;
  background-size: contain;
  width: 24px;
  height: 30px;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .cms h1 {
    font-size: 1.8rem;
    border-bottom: 1px solid #FF678A;
    margin: 0 0 20px;
    padding: 0 4% 10px;
  }
  .cms h2 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
  }
  .cms h3 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
  }
  .cms h4,
  .cms h5,
  .cms h6 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
  }
  .cms img {
    width: 100%;
  }
  .cms table {
    width: auto !important;
  }
  .cms table th {
    width: 127px;
  }
  .cms a.pdf {
    padding: 0 0 0 25px;
  }
  .cms a.pdf:before {
    width: 18px;
    height: 22px;
  }
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 50;
}

#searchBox {
  display: none;
  position: absolute;
  width: 880px;
  top: 50%;
  left: 50%;
  padding: 45px 0;
  border: 2px solid #FF678A;
  transform: translate(-50%, -50%);
  background: transparent;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
#searchBox form {
  display: block;
  width: 690px;
  margin: 0 auto;
}
#searchBox table {
  width: 100%;
  margin-bottom: 20px;
}
#searchBox table th, #searchBox table td {
  padding: 8px 0;
  color: #fff;
}
#searchBox table th {
  width: 150px;
  vertical-align: middle;
}
#searchBox input[type=text] {
  width: 500px;
  height: 30px;
  padding: .6em 1.5em .5em 1.5em;
  box-sizing: border-box;
  border-radius: 5px;
  border: none;
}
#searchBox input[type=checkbox] {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}
#searchBox label {
  margin-right: 10px;
}
#searchBox select {
  width: 430px;
  height: 30px;
  border-radius: 5px;
  border: none;
}
#searchBox .btn {
  width: 240px;
  margin: 0 auto 25px;
}
#searchBox .btn a {
  display: block;
  padding: 12px 0;
  border-radius: 4px;
  background-color: #8E8E8E;
  color: #fff;
  font-size: 117%;
  text-align: center;
}
#searchBox .btn span {
  display: inline-block;
  padding: 2px 0 2px 28px;
  background-image: url(/images/common/icon_search.png);
  background-position: 0 center;
  background-repeat: no-repeat;
}
#searchBox p {
  text-align: center;
}
#searchBox p a {
  color: #fff;
}
#searchBox .close {
  position: absolute;
  top: 30px;
  right: 15px;
}
#searchBox .close a {
  display: inline-block;
  padding: 2px 0 2px 25px;
  background-image: url(/images/common/icon5.png);
  background-position: 0 center;
  background-repeat: no-repeat;
  color: #fff;
}
#searchBox legend {
  margin-left: 15px;
}
