@charset "utf-8";
/* CSS Document */
/*====================================================

全体

====================================================*/
html,
body,
#Wrapper {
  width: 100%;
  height: 100%;
}
#Wrapper {
  display: flex;
  flex-direction: column;
}

/*====================================================

ヘッダー

====================================================*/
header {
  flex: none;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 2px solid #00935f;
}
/*サイトロゴ*/
header h1 {
}

/*グロナビ*/
#gnav {
}
#gnav ul {
  display: flex;
  justify-content: space-between;
}
#gnav a {
  display: block;
}
#gnav a,
#gnav a:hover {
  transition: 0.8s;
  background-repeat: no-repeat;
}

/*PC幅*/
@media (min-width: 768px) {
  header {
    padding: 0 20px 0;
  }
  /*サイトロゴ*/
  header h1 {
    float: left;
    margin-top: 20px;
  }

  /*グロナビ*/
  #gnav {
    float: right;
    margin: 14px 0 6px;
  }
  #gnav li {
    margin-right: 10px;
  }
  #gnav li:last-child {
    margin-right: 0;
  }
  #gnav a {
    width: 112px;
    height: 38px;
  }
  #nav_home {
    background: url("../images/nav/nav_pc_home.svg");
  }
  #nav_home:hover {
    background: url("../images/nav/nav_pc_home_hover.svg");
  }
  #nav_myreserve {
    background: url("../images/nav/nav_pc_myreserve.svg");
  }
  #nav_myreserve:hover {
    background: url("../images/nav/nav_pc_myreserve_hover.svg");
  }
  #nav_account {
    background: url("../images/nav/nav_pc_account.svg");
  }
  #nav_account:hover {
    background: url("../images/nav/nav_pc_account_hover.svg");
  }
  #nav_register {
    background: url("../images/nav/nav_pc_register.svg");
  }
  #nav_register:hover {
    background: url("../images/nav/nav_pc_register_hover.svg");
  }
  #nav_logout {
    background: url("../images/nav/nav_pc_logout.svg");
  }
  #nav_logout:hover {
    background: url("../images/nav/nav_pc_logout_hover.svg");
  }
  #nav_login {
    background: url("../images/nav/nav_pc_login.svg");
  }
  #nav_login:hover {
    background: url("../images/nav/nav_pc_login_hover.svg");
  }
  #nav_admin {
    background: url("../images/nav/nav_pc_admin.svg");
  }
  #nav_admin:hover {
    background: url("../images/nav/nav_pc_admin_hover.svg");
  }
}

/*SP幅*/
@media (max-width: 767px) {
  header {
    padding: 0 10px 0;
  }
  /*サイトロゴ*/
  header h1 {
    width: 155px;
    margin: 15px auto 10px;
  }

  /*グロナビ*/
  #gnav {
    margin-bottom: 15px;
  }
  #gnav li {
    width: 25%;
  }
  #gnav a {
    width: 45px;
    height: 50px;
    margin: 0 auto 0;
  }
  #nav_home {
    background: url("../images/nav/nav_sp_home.svg");
  }
  #nav_home:hover {
    background: url("../images/nav/nav_sp_home_hover.svg");
  }
  #nav_myreserve {
    background: url("../images/nav/nav_sp_myyoyaku.svg");
  }
  #nav_myreserve:hover {
    background: url("../images/nav/nav_sp_myyoyaku_hover.svg");
  }
  #nav_account {
    background: url("../images/nav/nav_sp_account.svg");
  }
  #nav_account:hover {
    background: url("../images/nav/nav_sp_account_hover.svg");
  }
  #nav_register {
    background: url("../images/nav/nav_sp_register.svg");
  }
  #nav_register:hover {
    background: url("../images/nav/nav_sp_register_hover.svg");
  }
  #nav_logout {
    background: url("../images/nav/nav_sp_logout.svg");
  }
  #nav_logout:hover {
    background: url("../images/nav/nav_sp_logout_hover.svg");
  }
  #nav_login {
    background: url("../images/nav/nav_sp_login.svg");
  }
  #nav_login:hover {
    background: url("../images/nav/nav_sp_login_hover.svg");
  }
  #nav_admin {
    background: url("../images/nav/nav_sp_admin.svg");
  }
  #nav_admin:hover {
    background: url("../images/nav/nav_sp_admin_hover.svg");
  }
}

/*====================================================

コンテンツ

====================================================*/
#contentWrapper {
  flex: 1 0 auto;
  clear: both;
  background: #f0f2f7;
}

/*PC幅*/
@media (min-width: 768px) {
  #contentWrapper {
    padding: 20px 20px 40px;
  }
}
/*SP幅*/
@media (max-width: 767px) {
  #contentWrapper {
    padding: 15px 0 40px;
  }
  #contentWrapper > .hl_icon {
    margin-left: 10px;
  }
}

/*====================================================

ログイン

====================================================*/
#box_login {
  margin: 20px auto 40px;
}
@media (min-width: 768px) {
  #box_login {
    width: 460px;
    padding: 30px 30px 20px;
  }
}
@media (max-width: 767px) {
  #box_login {
    margin-top: 0px;
  }
}
#box_login_icon {
  display: flex;
  width: 52px;
  margin: 0 auto 15px;
}
#box_login .blk_form {
  margin-bottom: 15px;
}
#box_login .checkbox {
  margin-bottom: 15px;
}
#box_login .checkbox input {
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border-radius: 0;
  border: 1px solid #000;
}
#box_login .btn_decision {
  display: inherit;
  margin: 0 auto 30px;
}
#box_login .sub_menu {
  width: 214px;
  margin: 0 auto;
}
#box_login .sub_menu li {
  margin-bottom: 15px;
}

#Input_RememberMe {
  margin-left: 5px;
}

/*====================================================

フッター

====================================================*/
/*ページトップのボタン*/
#box_toTop {
  position: absolute;
  top: -13px;
  right: 20px;
  text-align: right;
}
.page_top {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../images/common/arrow_up.svg");
  background-repeat: no-repeat;
}
.page_top:hover {
  background-image: url("../images/common/arrow_up_hover.svg");
}
/*footer*/
footer {
  flex: none;
  position: relative;
  clear: both;
  box-sizing: border-box;
  border-top: 3px solid #00935f;
}
footer a {
  color: #333333;
}
footer a:hover {
  color: #00935f;
  text-decoration: none;
}
footer .left {
  font-size: 15px;
}

footer .right img {
  margin-bottom: 5px;
}
footer address {
  clear: both;
  overflow: hidden;
  margin-bottom: 0;
  text-align: right;
  font-size: 14px;
  color: #333333;
}
@media (min-width: 768px) {
  footer {
    padding: 25px 20px 25px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 20px 20px 20px;
  }
  footer .left {
    width: 220px;
    margin: 0 auto 20px;
  }
  footer .right {
    width: 188px;
    margin: 0 auto 0;
  }
  footer .left,
  footer .right {
    float: none;
    display: flex;
  }
  footer address {
    text-align: center;
  }
}

/*====================================================

共通

====================================================*/

/*角丸外枠ブロック
------------------------------------*/
.box_kadomaru {
  margin-bottom: 30px;
  padding: 20px 20px 10px;
  background: #ffffff;
}
.box_kadomaru img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .box_kadomaru {
    background: #ffffff;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .box_kadomaru {
    padding: 20px 10px 10px;
  }
}
.box_kadomaru p {
  margin-bottom: 20px;
}

/*見出し
------------------------------------*/
.hl_icon {
  height: 52px;
  margin-bottom: 15px;
  padding-top: 15px;
  padding-left: 67px;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 18px;
  background-repeat: no-repeat;
}
.hl_icon__register {
  background-image: url("../images/common/ico_register.svg");
}
.hl_icon__myreserve {
  background-image: url("../images/common/ico_myreserve.svg");
}
.hl_icon__place {
  background-image: url("../images/common/ico_place.svg");
}
.hl_ico_confirm {
  background-image: url("../images/common/ico_confirm.svg");
}
.hl_ico_examination {
  background-image: url("../images/common/ico_examination.svg");
}
.hl_ico_place {
  background-image: url("../images/common/ico_place.svg");
}
.hl_ico_time {
  background-image: url("../images/common/ico_time.svg");
}

.hl_var_green {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #00935f;
  font-size: 16px;
}

.hl_searchcondition {
  height: 19px;
  padding-left: 20px;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 16px;
  background-image: url("../images/common/ico_search.svg");
  background-position: left;
  background-repeat: no-repeat;
}

.hl_icon_midline {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.hl_icon_midline:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  display: block;
}
.hl_icon_midline:after {
  margin-left: 10px;
  background: #292929;
}

/*「項目（固定列）」と「内容（可変列）」
------------------------------------*/
/*使用例：
「My予約」の受診者、予約*/

.mod_sheet_fix_flex {
  overflow: hidden;
  margin-bottom: 20px;
}
.mod_sheet_fix_flex .ttl_fix,
.mod_sheet_fix_flex .subject_flex {
  margin-bottom: 10px;
}
.mod_sheet_fix_flex .ttl_fix {
  float: left;
  width: 100px;
  box-sizing: border-box;
  padding-right: 10px;
  font-weight: normal;
}
.mod_sheet_fix_flex .subject_flex {
  float: left;
  width: 100%;
  margin-left: -100px;
  padding-left: 100px;
  box-sizing: border-box;
}

/*会場検索条件のレイアウト
------------------------------------*/

.mod_searchcondition {
  clear: both;
  overflow: hidden;
  padding-top: 4px;
  padding-left: 4px;
  padding-right: 4px;
}
.mod_searchcondition .form-control,
.mod_searchcondition .medium {
  height: 36px;
  margin-bottom: 15px;
}
.mod_searchcondition .check-group {
  width: 120px;
  margin-bottom: 15px;
  padding-top: 5px;
}
.mod_searchcondition .medium {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.mod_searchcondition .check-youbi,
.mod_searchcondition .btn-group {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
.mod_searchcondition .btn-group label {
  padding-left: 5px;
}
.mod_searchcondition .btn_decision {
  margin-top: 10px;
}
.mod_searchcondition select {
  padding: 0.375rem 0.6rem;
}

@media (min-width: 768px) {
  .mod_searchcondition .form-control,
  .mod_searchcondition .medium,
  .mod_searchcondition .medium_month,
  .mod_searchcondition .check-group {
    float: left;
  }
  .mod_searchcondition .form-control,
  .mod_searchcondition .medium,
  .mod_searchcondition .medium_month {
    width: 180px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .mod_searchcondition .form-control,
  .mod_searchcondition .medium {
    width: 100%;
  }
}
.kensa_aki {
  margin-top: -20px;
}

/*入力フォーム全般
------------------------------------*/
/*入力欄内のフォントの設定*/
::placeholder {
  color: #777777;
}
@media (max-width: 767px) {
  .form-control {
    font-size: 16px;
  }
}

/*「新規登録」の入力フォーム
------------------------------------*/
.blk_form .ttl_form {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: normal;
}
.blk_form .subject_form {
  margin-bottom: 15px;
}
.blk_form .subject_form:last-child {
}

.blk_form input {
  border-radius: 6px;
  border: 2px solid #aaaaaa;
}
@media (min-width: 768px) {
  .blk_form input {
    width: 400px;
  }
}

.blk_form input[type="checkbox"] {
  width: 15px;
}

.blk_form input[type="radio"] {
  width: 16px;
  margin-right: 15px;
  border: 1px solid #aaaaaa;
}
.blk_form input[type="radio"]:last-child {
  margin-right: 0;
}

.box_textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  padding: 15px 10px 15px;
  border: 1px solid #000;
  overflow-y: scroll;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .box_textarea {
    width: 100%;
  }
}

/*「コース・検査項目」の入力フォーム
------------------------------------*/
.blk_form_kensakomoku {
  margin-bottom: 40px;
}
.blk_form_kensakomoku input,
.blk_form_kensakomoku .form-check {
  margin-bottom: 15px;
}
.blk_form_kensakomoku label {
  font-weight: normal !important;
}
.blk_form_kensakomoku input:focus,
.form-control:focus {
  border-color: #86b7fe;
  box-shadow:
    0px 1px 1px rgba(136, 184, 253, 0.075) inset,
    0px 0px 8px #86b7fe;
}

/*ページャー
------------------------------------*/

.box_kadomaru .pagination {
  margin-bottom: 20px;
}
.box_kadomaru .page-item {
  width: 36px;
}
.page-link {
  padding: 0.5rem 0.1rem;
}
.box_kadomaru .page-item.active .page-link {
  border-color: #95e8cd;
}
.box_kadomaru .page-link,
.box_kadomaru .page-item.active .page-link {
  color: #333333;
}
.box_kadomaru .page-item.disabled .page-link {
  color: #cccccc;
}
.box_kadomaru .page-item .page-link {
  text-align: center;
  border-color: #babcbe;
}
.box_kadomaru .page-item .page-link:hover {
  background: #daf4f0;
}
.box_kadomaru .page-item.active .page-link {
  background: #95e8cd;
}
.box_kadomaru .pagination a {
  font-size: 14px;
}

/*会場一覧のテーブル表
------------------------------------*/

.box_kadomaru table {
  width: 100%;
  margin-bottom: 40px;
}
.box_kadomaru thead {
  background: none;
}
.box_kadomaru th,
.box_kadomaru td {
  padding: 0.8rem 0.5rem;
}

.box_kadomaru th {
  display: table-cell;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
  border: none;
  background: #daf4f0;
  color: #212529;
}
.box_kadomaru th:first-child {
  border-radius: 8px 0 0 0;
}
.box_kadomaru th:last-child {
  border-radius: 0 8px 0 0;
}
.box_kadomaru td {
  display: table-cell;
  vertical-align: middle;
}
.box_kadomaru th:nth-of-type(2),
.box_kadomaru th:nth-of-type(3),
.box_kadomaru th:nth-of-type(4) {
  text-align: left;
}
.box_kadomaru td a {
  color: #0d6efd;
  text-decoration: underline;
}
.box_kadomaru td a:hover {
  color: #0d6efd;
  text-decoration: none;
}

/*チェックボックス無効の透過を濃く*/
.box_kadomaru td input.check-box:disabled,
.box_kadomaru td input:disabled {
  opacity: 0.8;
}

/*首都圏の項目名のセンター配置*/
.box_kadomaru .Direct_SelectPlace td:nth-of-type(5),
.box_kadomaru .Direct_SelectPlace td:nth-of-type(6),
.box_kadomaru .Direct_SelectPlace td:nth-of-type(7),
.box_kadomaru .Direct_SelectPlace td:nth-of-type(8),
.box_kadomaru .Direct_SelectPlace td:nth-of-type(9) {
  text-align: center;
}

/*「選択」の幅調整*/
.box_kadomaru .Direct_SelectPlace td:nth-of-type(1) {
  width: 62px;
}
/*「希望会場に登録」の幅調整*/
.box_kadomaru .Cooperation_SelectPlace td:nth-of-type(1) {
  width: 130px;
}
@media (max-width: 767px) {
  .box_kadomaru .Cooperation_SelectPlace td:nth-of-type(1) {
    width: 90px;
  }
}

/*「骨」の幅調整*/
.box_kadomaru .Direct_SelectPlace td:nth-of-type(9),
.box_kadomaru .Cooperation_SelectPlace td:nth-of-type(8),
.box_kadomaru .Direct_SelectPlace th:nth-of-type(9),
.box_kadomaru .Cooperation_SelectPlace th:nth-of-type(8) {
  padding-right: 20px;
  padding-left: 20px;
}

/*地方の項目名のセンター配置*/
.box_kadomaru .Cooperation_SelectPlace td:nth-of-type(5),
.box_kadomaru .Cooperation_SelectPlace td:nth-of-type(6),
.box_kadomaru .Cooperation_SelectPlace td:nth-of-type(7),
.box_kadomaru .Cooperation_SelectPlace td:nth-of-type(8) {
  text-align: center;
}

/*「時間選択」のテーブル表の幅調整など*/
.box_kadomaru .Direct_SelectTime th {
  width: 50%;
}
.box_kadomaru .Direct_SelectTime th:nth-of-type(2) {
  text-align: center;
}
.box_kadomaru .Direct_SelectTime td {
  text-align: center;
}

/*スマートフォンの幅でテーブルをスクロール表示させる*/
@media (max-width: 670px) {
  .table-scroll {
    overflow: auto; /*スクロールさせる*/
    /*white-space: nowrap; */ /*文字の折り返しを禁止*/
    width: 100%;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    background: #333;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    background: #999;
  }
  .table-scroll table {
    width: 650px;
    margin: auto;
    border-collapse: collapse;
  }
}
.box_kadomaru th,
.box_kadomaru td {
  line-height: 1.2;
}

/*ボタン（２つの並列配置）
------------------------------------*/
/* 配置の枠*/
.list_horizontal {
  display: flex;
  clear: both;
  overflow: hidden;
}

/* 「My予約」「検査項目選択」ページ内のボタン配置*/
.mod_btns_myreserve,
.mod_btns_confirm {
  justify-content: center;
}

@media (min-width: 768px) {
  .mod_btns_myreserve li:first-child,
  .mod_btns_confirm li:first-child {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .list_horizontal.mod_btns_myreserve,
  .list_horizontal.mod_btns_confirm {
    display: block;
    clear: both;
    overflow: hidden;
    width: 280px;
    margin: auto;
  }
  .list_horizontal.mod_btns_confirm {
    text-align: center;
  }

  /* DirectSelectPlace: keep the two action buttons side-by-side even on mobile */
  .list_horizontal.mod_btns_myreserve.mod_btns_myreserve_inline_mobile {
    display: flex;
    width: 100%;
    margin: auto;
  }
  .list_horizontal.mod_btns_myreserve.mod_btns_myreserve_inline_mobile
    .list_horizontal_unit {
    flex: 1 1 0;
  }
  .list_horizontal.mod_btns_myreserve.mod_btns_myreserve_inline_mobile
    .list_horizontal_unit:first-child {
    margin-right: 10px;
  }
  .list_horizontal.mod_btns_myreserve.mod_btns_myreserve_inline_mobile
    .btn_decision {
    width: 100%;
    margin-bottom: 0;
  }
}

/*ボタン（単体）
------------------------------------*/

/*全ボタンのホバー時のアニメ*/
.btn_decision,
.btn_primary,
.btn_secondary,
.btn_small_primary,
.btn_small_secondary {
  transition: 0.5s;
}

/*ボタン中*/
.btn_decision,
.box_kadomaru td .btn_decision {
  display: block;
  width: 200px;
  height: 40px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-radius: 20px;
  background: #00935f;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  padding-top: 8px;
}
.btn_decision:hover,
.btn_small_primary:hover,
.btn_small_secondary:hover {
  color: #00935f;
  background: #95e8cd;
  border: 1px solid #95e8cd;
}
button.btn_decision {
  padding-top: 0px;
}

/*ボタン大*/
.btn_primary,
.box_kadomaru td .btn_primary {
  display: block;
  width: 280px;
  height: 40px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-radius: 20px;
  background: #00935f;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  padding-top: 8px;
  text-decoration: none;
}
.btn_primary:hover {
  color: #00935f;
  background: #95e8cd;
}
button.btn_primary {
  padding-top: 0;
}

/*ボタン小（白抜き）*/
.btn_secondary,
.box_kadomaru td .btn_secondary {
  display: block;
  width: 166px;
  height: 40px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border: 2px solid #00935f;
  border-radius: 20px;
  background: #ffffff;
  color: #00935f;
  font-size: 15px;
  text-align: center;
  padding-top: 6px;
  text-decoration: none;
}
.btn_secondary:hover {
  color: #00935f;
  background: #95e8cd;
  border-color: #95e8cd;
}
button.btn_secondary {
  padding-top: 0;
}

/*ボタン表内*/
.btn_small_primary,
.btn_small_secondary {
  display: inline-block;
  padding: 3px 9px 4px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
}

.btn_small_primary:hover,
.box_kadomaru td .btn_small_primary:hover,
.btn_small_secondary:hover,
.box_kadomaru td .btn_small_secondary:hover {
  color: #00935f;
  background: #95e8cd;
  border: 1px solid #95e8cd;
}

/*ボタン表内（塗り）（選択ボタン）*/
.btn_small_primary,
.box_kadomaru td .btn_small_primary {
  background: #00935f;
  border: 1px solid #00935f;
  color: #ffffff;
  text-decoration: none;
}

/*ボタン表内（白抜き）*/
.btn_small_secondary,
.box_kadomaru td .btn_small_secondary {
  border: 1px solid #00935f;
  background: #ffffff;
  color: #00935f;
}

/*リンク
------------------------------------*/
a:hover {
  text-decoration: none;
  color: #00935f;
}
/*「ミドリ矢印（左右）」アイコン*/
.arrow_green_right,
.arrow_green_left {
  background-repeat: no-repeat;
  padding-left: 19px;
}
.arrow_green_right {
  background-image: url("../images/common/arrow_green_right.svg");
}
.arrow_green_left {
  background-image: url("../images/common/arrow_green_left.svg");
}

/*テキスト
------------------------------------*/
/*文章の配置（左・中央・右）*/
.t_left {
  text-align: left;
}
.t_right {
  text-align: right;
}
.t_center {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .t_right_768 {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .t_center_767 {
    text-align: center;
  }
}

/*文字の大きさ*/

.t_12 {
  font-size: 12px;
}
.t_13 {
  font-size: 13px;
}
.t_14 {
  font-size: 14px;
}
.t_15 {
  font-size: 15px;
}
.t_16 {
  font-size: 16px;
}
.t_17 {
  font-size: 17px;
}
.t_18 {
  font-size: 18px;
}

/*レイアウト（左右の配置）*/
.clearfix {
  clear: both;
  overflow: hidden;
}

.left {
  float: left;
}

.right {
  float: right;
}

/*上下余白 調整
------------------------------------*/

/*上下余白（margin）*/
.mt_0 {
  margin-top: 0px;
}

.mt_5 {
  margin-top: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_35 {
  margin-top: 35px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_45 {
  margin-top: 45px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_0 {
  margin-bottom: 0px;
}

.mb_5 {
  margin-bottom: 5px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_35 {
  margin-bottom: 35px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_45 {
  margin-bottom: 45px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_0imp {
  margin-bottom: 0px !important;
}

/*上下余白（padding）*/
.pt_0 {
  padding-top: 0px;
}

.pt_5 {
  padding-top: 5px;
}

.pt_10 {
  padding-top: 10px;
}

.pt_15 {
  padding-top: 15px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_25 {
  padding-top: 25px;
}

.pt_30 {
  padding-top: 30px;
}

.pt_35 {
  padding-top: 35px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_45 {
  padding-top: 45px;
}

.pt_50 {
  padding-top: 50px;
}

.pb_0 {
  padding-bottom: 0px;
}

.pb_5 {
  padding-bottom: 5px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pb_15 {
  padding-bottom: 15px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_25 {
  padding-bottom: 25px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pb_35 {
  padding-bottom: 35px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_45 {
  padding-bottom: 45px;
}

.pb_50 {
  padding-bottom: 50px;
}
