@charset "UTF-8";
/* ----------------------------------------------*/
/*	1.ブラウザ初期設定リセット
/* ----------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

p {
  font-size: 100%;
  line-height: 1.5em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}
caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* ----------------------------------------------*/
/*	2.共通箇所
/* ----------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 auto;
  width: 100%;
  min-width: 1000px;
}

body {
  box-sizing: border-box;
  color: #434343;
  font: 200 13px/1.8 "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  left: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
}

.inner {
  margin: 0 auto;
  padding: 1px 0 45px;
  width: 980px;
}
.inner:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}

a {
  transition: all .35s ease-in-out;
  color: #27969e;
}

th {
  font-weight: 200;
}

button,
input,
textarea {
  -webkit-appearance: none;
  color: #434343;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-size: 13px;
  outline: none;
  resize: none;
}

::-webkit-input-placeholder {
  color: #c5c5c5 !important;
}

/* -------------------------------------------------- */
/* 開発側で追加（IE・ログイン画面プレースホルダの色） */
/* -------------------------------------------------- */
:-ms-input-placeholder {
  color: #c5c5c5 !important;
}

/* ----------------------------------------------*/
/*		2-1.header
/* ----------------------------------------------*/
.header {
  height: 62px;
  margin: 0 auto;
  overflow: hidden;
  width: 980px;
}
.header__logo {
  float: left;
  padding: 17px 0;
  width: 160px;
}

/* ----------------------------------------------*/
/*		2-3.main contents
/* ----------------------------------------------*/
.contents {
  background: #f8f8f8;
}
.contents__ttl {
  font-size: 26px;
  font-weight: 200;
  line-height: 1;
  margin: 40px 0 0;
  position: relative;
}
.contents__box {
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  box-sizing: border-box;
  margin: 20px 0 0;
  padding: 24px;
  position: relative;
}
.contents__btn {
  transition: all .5s ease-out;
  background: #27969e;
  border: 1px solid #27969e;
  border-radius: 4px;
  box-shadow: 0 1px 0 #065f65;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  line-height: 1.5;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.contents__btn:hover {
  background: #fff;
  box-shadow: none;
  color: #27969e;
}
.contents__btn-gray {
    background: #9d9d9d;
    border-radius: 4px;
    box-shadow: 0 1px 0 #9d9d9d;
    box-sizing: border-box;
    color: #fff;
    cursor: default;
    display: inline-block;
    line-height: 1.5;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}
.contents__txt-description {
  margin: 5px 0 15px 0;
}

/* ----------------------------------------------*/
/*		2-4.footer
/* ----------------------------------------------*/
.footer {
  background: #6e6e6e;
  color: #fff;
  padding: 30px 0 10px;
  text-align: center;
}

.footer__nomenu {
  padding-top: 10px;
}

/* ----------------------------------------------*/
/*	3.フォームのパーツ
/* ----------------------------------------------*/
.form__radio {
  display: inline-block;
  line-height: 1;
}
.form__radio label {
  background: url(../_img/form_radio-off.png) left 1px no-repeat;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  min-height: 20px;
  margin: 5px 0;
  padding: 0 0 0 25px;
  position: relative;
  vertical-align: middle;
}
.form__radio input[type="radio"] {
  display: none;
}
.form__radio input:checked + label {
  background-image: url(../_img/form_radio-on.png);
  color: #27969e;
}
.form__radio input:disabled + label {
  opacity: 0.7;
}
.form__radio .form__text,
.form__radio .form__date,
.form__radio .form__select {
  box-sizing: border-box;
  height: 30px;
  line-height: 30px;
  margin: 0 0 0 5px;
  vertical-align: middle;
}
.form__radio-block {
  display: block;
}
.form__radio-only label {
  padding: 0 0 0 18px;
  content: '';
  width: 1px;
}
.form__radio-input {
  display: inline-block;
  margin: 0 0 0 1em;
}


.form__text {
  background: #fff;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  height: 35px;
  padding: 0 10px 0 10px;
  border: 1px solid #c5c5c5;
  vertical-align: middle;
}
.form__text[disabled] {
  background: #aaa;
  opacity: 0.7;
}

.form__search {
  box-sizing: border-box;
  display: block;
  padding: 0 165px 0 0;
  margin-bottom: 5px;
  position: relative;
  width: 100%;
}
.form__search input[type="text"] {
  background: #fff;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  height: 45px;
  padding: 0 15px;
  width: 100%;
}
.form__search input[type="submit"] {
  transition: all .5s ease-out;
  background: #27969e;
  border: 1px solid #27969e;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  height: 45px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 155px;
}
.form__search input[type="submit"]:hover {
  background: #fff;
  color: #27969e;
}
.form__search-line input[type="text"] {
  border: 1px solid #27969E;
}
.form__regist {
  display: block;
  position: relative;
  width: 100%;
}
.form__regist input[type="text"], .form__regist input[type="number"], .form__regist input[type="password"], .form__regist input[type="url"] {
  background: #fff;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  height: 35px;
  padding: 0 10px 0 10px;
  width: 100%;
  border: 1px solid #c5c5c5;
}
.form__regist input[type="text"][disabled], .form__regist input[type="number"][disabled], .form__regist input[type="password"][disabled], .form__regist input[type="url"][disabled] {
  background: #aaa;
  opacity: 0.7;
}
.form__regist-textarea {
  background: #fff;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  height: 65px;
  padding: 5px 10px 5px 10px;
  width: 100%;
  border: 1px solid #c5c5c5;
}
.form__regist-textarea-l {
  background: #fff;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  height: 260px;
  padding: 5px 10px 5px 10px;
  width: 100%;
  border: 1px solid #c5c5c5;
}
.form__regist-textarea-longword {
  height: 200px;
}
.form__regist-textarea[disabled] {
  background: #aaa;
  opacity: 0.7;
}
.form__regist-inline {
  display: inline-block;
}

.form__submit {
  clear: both;
  margin: 30px 0 0;
  text-align: center;
}
.form__submit input[type="button"], .form__submit input[type="submit"] {
  transition: all .5s ease-out;
  background: #27969e;
  border: 1px solid #27969e;
  border-radius: 4px;
  box-shadow: 0 1px 0 #065f65;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  padding: 15px;
  min-width: 350px;
  line-height: 1.5;
  vertical-align: bottom;
  margin: 0 10px;
  transition: all .5s ease-out;
}
.form__submit input[type="button"]:hover, .form__submit input[type="submit"]:hover {
  background: #fff;
  box-shadow: none;
  color: #27969e;
}
.form__submit input[type="button"]:disabled, .form__submit input[type="submit"]:disabled {
  background: #969696;
  border: 1px solid #969696;
  box-shadow: 0 1px 0 #969696;
  color: #ccc;
  cursor: default;
}
.form__submit input[type="button"]:disabled:hover, .form__submit input[type="submit"]:disabled:hover {
  color: #ccc;
}
.form__submit input[type="button"].form__submit-btn-m, .form__submit input[type="submit"].form__submit-btn-m {
  padding: 10px 15px;
  min-width: 250px;
}
.form__submit input[type="button"][disabled], .form__submit input[type="submit"][disabled] {
  background: #969696;
  border: 1px solid #969696;
  box-shadow: 0 1px 0 #969696;
  color: #ccc;
  cursor: default;
}
.form__submit input[type="button"][disabled]:hover, .form__submit input[type="submit"][disabled]:hover {
  color: #ccc;
}
.form__submit a.contents__btn {
  transition: all .5s ease-out;
  background: #27969e;
  border: 1px solid #27969e;
  border-radius: 4px;
  box-shadow: 0 1px 0 #065f65;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  padding: 15px;
  min-width: 350px;
  margin: 0 10px;
  width: auto;
  vertical-align: bottom;
  line-height: 1.5;
  transition: all .5s ease-out;
}
.form__submit a.contents__btn:hover {
  background: #fff;
  box-shadow: none;
  color: #27969e;
}
.form__submit a.contents__btn:disabled {
  background: #969696;
  border: 1px solid #969696;
  box-shadow: 0 1px 0 #969696;
  color: #ccc;
  cursor: default;
}
.form__submit a.contents__btn:disabled:hover {
  color: #ccc;
}
.form__submit a.contents__btn-2line {
  padding: 4px 15px;
  line-height: 1.3;
}
.form__confirm input[type="button"] {
  font-size: 20px;
  padding: 15px;
}
.form__confirm a.contents__btn {
  font-size: 20px;
  padding: 15px;
}

.form__error-txt {
  color: #ff004e;
  background: #fedee7;
  padding: 10px 15px;
  margin-top: 3px;
}
.form__error-block {
  background: #fedee7;
  padding: 10px 15px;
  margin-top: 25px;
  color: #ff004e;
  font-size: 16px;
  text-align: center;
}
.form__error-td {
  background: #fedee7;
}

.form__link-txt {
  margin: 0 0 5px 0;
  float: right;
}
.form__link-txt a {
  text-decoration: underline;
}
.form__link-txt a:hover {
  text-decoration: none;
}

/* ----------------------------------------------*/
/*	4.table設定
/* ----------------------------------------------*/
.contents__table {
  border: 1px solid #94d7dc;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  margin: 20px 0 0;
  width: 100%;
}
.contents__table tr {
  background: #fff;
}
.contents__table tr:nth-child(even) {
  background: #edfcfc;
}
.contents__table-th {
  border: 1px solid #daf2f4;
  border-top: none;
  border-bottom: none;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.3;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  background: #94d7dc;
  border-bottom: 1px solid #daf2f4;
}
.contents__table-th:first-child {
  border-left: none;
}
.contents__table-th:last-child {
  border-right: none;
}
.contents__table-td {
  border: 1px solid #daf2f4;
  border-top: none;
  border-bottom: none;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.3;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.contents__table-td:first-child {
  border-left: none;
}
.contents__table-td:last-child {
  border-right: none;
}
tr:first-child .contents__table-td {
  border-top: none !important;
}
.contents__table .contents__table-td {
  word-break:break-all;
  word-wrap:break-word;
  word-break:break-word;
  -ms-word-break:break-all;
}
.contents__table-sch {
  background: #fff;
  border-collapse: separate;
  border-spacing: 2px;
}
.contents__table-sch tr:nth-child(even) {
  background: none;
}
.contents__table-sch .contents__table-th {
  border: none;
  width: 150px;
  text-align: left;
  word-wrap:break-word;
  word-break:break-word;
  -ms-word-break:break-all;
}
.contents__table-sch .contents__table-td {
  background: #f9faf9;
  border: none;
  padding: 10px 20px;
  text-align: left;
  word-break:break-all;
  word-wrap:break-word;
  word-break:break-word;
  -ms-word-break:break-all;
}

.contents__table-dl {
  background: #fff;
  border-collapse: separate;
  border-spacing: 2px;
}
.contents__table-dl tr:nth-child(even) {
  background: none;
}
.contents__table-dl .contents__table-th {
  border: none;
  text-align: center;
  word-wrap:break-word;
  word-break:break-word;
  -ms-word-break:break-all;
}
.contents__table-dl .contents__table-td {
  background: #f9faf9;
  border: none;
  height: 52px !important;
  padding: 10px 20px;
  text-align: center;
  word-break:break-all;
  word-wrap:break-word;
  word-break:break-word;
  -ms-word-break:break-all;
}
.contents__table-l {
  text-align: left !important;
}

/* ----------------------------------------------*/
/*	5.モーダル設定
/* ----------------------------------------------*/
#lightbox {
  display: none;
}

#modal {
  padding: 0 30px 30px;
}

.modal {
  padding: 0 30px 30px;
}
.modal__txt {
  font-size: 13px;
  margin: 20px 0 0;
}
.modal__finish {
  background: url(../img/index_icn-check.png) center 40px no-repeat;
  text-align: center;
}
.modal__finish .contents__btn {
  transition: all .5s ease-out;
  background: #27969e;
  border: 1px solid #27969e;
  border-radius: 4px;
  box-shadow: 0 1px 0 #065f65;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.5;
  margin: 30px auto 0;
  padding: 15px;
  width: 350px;
}
.modal__finish .contents__btn:hover {
  background: #fff;
  box-shadow: none;
  color: #27969e;
}
.modal__finish .contents__btn:disabled {
  background: #969696;
  border: 1px solid #969696;
  box-shadow: 0 1px 0 #969696;
  color: #ccc;
  cursor: default;
}
.modal__finish .contents__btn:disabled:hover {
  color: #ccc;
}


#colorbox .modal__finish {
  padding: 120px 30px 30px;
}
/* ----------------------------------------------*/
/*	99.その他
/* ----------------------------------------------*/

.return__txt {
  font-size: 14px;
  margin: 15px 0 0;
  text-align: center;
}
.return__txt a {
  text-decoration: underline;
}
.nopage__message {
  padding: 100px 0 50px;
  text-align: center;
  font-size: 18px;
}

.notop {
  margin-top: 0 !important;
}

.bg__gray-1,
.bg__gray-1 .contents__table-td {
  background: #f9f9f9 !important;
}

.w80 {
  width: 80px !important;
  max-width: 80px !important;
  min-width: 80px !important;
}

.w90 {
  width: 90px !important;
  max-width: 90px !important;
  min-width: 90px !important;
}
.w100 {
  width: 100px !important;
  max-width: 100px !important;
  min-width: 100px !important;
}

.w200 {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
}

.w250 {
  width: 250px !important;
  max-width: 250px !important;
  min-width: 250px !important;
}
.w300 {
  width: 300px !important;
  max-width: 300px !important;
  min-width: 300px !important;
}
.error {
  background: #fedee7 !important;
  color: #ff004e !important;
}

/* ----------------------------------------------*/
/*	個別スタイルここから
/* ----------------------------------------------*/

.fixed-width{
  table-layout: fixed;
}
.form__slide-child.clm4  .form__checkbox {
  width: 25%;
}
.form__slide-child.clm8  .form__checkbox {
  width: 25%;
}

.contents__box-search-tab-list span {
  display: block;
  color: #434343;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.0;
  text-align: center;
  padding: 8px 25px 12px;
}

.contract__head{
  margin: 0 0 45px;
  text-align: center;
}

.marginsides-35{
  margin: 0 35px 0;
}
.form__date::-ms-clear {
        display: none;
}

.fixed-width{
  table-layout: fixed;
}
.marL20{
   margin-left: 20px;
}

.search__box-finish {
  background: #bbb;
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  float: right;
  text-align: center;
  font-size: 12px;
  padding: 2px 8px;
}
.form__select-mult {
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  color: #434343;
  line-height: 1;
  outline: none;
  padding: 3px;
  vertical-align: middle;
  max-width: 605px;
  min-width: 150px;
  min-height: 93px;
}
.form__select-mult[disabled] {
  background: #aaa;
  opacity: 0.7;
}
.btn__top {
  bottom: 75px;
  height: 0;
  overflow: visible;
  left: 125px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.btn__top {
  bottom: 75px;
  height: 0;
  overflow: visible;
  left: 125px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.btn__top p {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px 0 0;
  max-width: 930px;
}
.btn__top a {
  transition: all .5s ease-out;
  background: #27969e;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 15px;
  color: #fff;
  display: block;
  float: right;
  height: 45px;
  width: 45px;
  padding: 13px 0 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 2px #989898;
  background: #989898 url("../_img/page_top.png") center no-repeat;
}
.btn__top a:hover {
  background: #cccccc url("../_img/page_top.png") center no-repeat;
}
.red{
  color: #ff0000;
}

.form__switch {
  font-size: 0;
  margin: 20px 0 0;
}
.form__switch li {
  display: inline-block;
  font-size: 14px;
}
.form__switch-btn a {
  background: #FFF;
  border: 1px solid #c5c5c5;
  border-left: none;
  color: #434343;
  display: inline-block;
  line-height: 27px;
  padding: 0 8px;
  text-decoration: none;
}
.form__switch-btn:first-child a {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #c5c5c5;
  padding-left: 12px;
}
.form__switch-btn:last-child a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-right: 12px;
}
.form__switch-btn.on a {
  background: #d1f3f4;
  color: #27969e;
}
.form__switch-result {
  display: none;
  position: relative;
}
.form__switch-result.on {
  display: block;
}

.tl {
  width: 49.5%;
  float: left;
}

.tr {
  width: 49.5%;
  float: right;
}

.cb{
  clear: both;
  padding-top: 20px;
}

/* ----------------------------------------------*/
/*	開発側で追加(ダウンロード #loading)
/* ----------------------------------------------*/
#loading{
  width: 100%;
  height:100%;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 100;
  background: url(../img/loading.gif) no-repeat center center;
  background-color:rgba(255,255,255,0.5);
}
