* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  border: 0;
  height: auto;
  line-height: 0;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  outline: none;
  color: #429aec;
  text-decoration: none;
}

html {
  height: 100%;
  font-size: 10px;
  overflow-y: scroll;
}

body {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #212121;
  line-height: 1.7;
  font-size: 1.6rem;
  font-family: 'source-han-sans-japanese', sans-serif;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.site-footer {
  margin-top: auto;
  padding: 1em 0;
  background-color: #5ea11d;
}

.site-footer .container {
  text-align: center;
}

.site-footer span {
  color: #fff;
}

input,
select,
textarea {
  font-size: 1.6rem;
}

.flex {
  flex-wrap: wrap;
  display: -o-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box; /*--- Android4.3以前 ---*/
  display: -webkit-flex;
  display: flex;
}

.table,
.table th,
.table td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #c1cbcc;
  border-collapse: collapse;
}

.table {
  width: 100%;
}

.section {
  margin: 0 auto;
}

p.error {
  color: #f21237;
}

.pager {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pager a.current {
  display: inline-block;
  color: #fff;
  width: 50px;
  background: #116d2c;
  border-radius: 100px;
  padding: 12px 0;
  text-align: center;
  margin: 0 15px;
}

.pager a.next,
.pager a.prev {
  color: #212121;
}

.pc_off {
  display: none;
}

/* header */
header .container.flex {
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

header .h_logout .logout_btn {
  color: #116d2c;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border: 2px solid #116d2c;
  border-radius: 20px;
  width: 225px;
  padding: 5px;
  position: relative;
}

header .h_logout .logout_btn::before {
  content: '';
  margin-right: 5px;
  width: 28px;
  height: 25px;
  background: url('/assets/images/icon_logout.png') center / contain no-repeat;
}

header .h_logout .logout_btn:hover {
  color: #fff;
  background: #116d2c;
}

header .h_logout .logout_btn:hover::before {
  background: url('/assets/images/icon_logout_white.png') center / contain
    no-repeat;
}

header .h_logout .login_name {
  text-align: center;
  margin-top: 5px;
}

.h_logo {
  max-width: 330px;
}

.gnavi {
  background: #5ea11d;
  padding: 30px 0;
}

.gnavi ul li {
  margin-right: 20px;
}

.gnavi ul li a {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.gnavi ul li a:hover {
  text-decoration: underline;
}

h2.content_ttl {
  font-size: 3rem;
  color: #212121;
  margin-top: 30px;
  border-bottom: 2px solid #116d2c;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

h2.content_ttl::before {
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  background: #116d2c;
  margin-right: 15px;
}

/* signin */

body.signin .main_bg,
body.reminder .main_bg,
body.reminder-set .main_bg,
body.reminder-done .main_bg {
  background: #cce7b2;
  height: 300px;
  position: relative;
}

body.signin .main_bg::before,
body.reminder .main_bg::before,
body.reminder-set .main_bg::before,
body.reminder-done .main_bg::before {
  content: '';
  position: absolute;
  display: block;
  height: 30px;
  width: 100%;
  background: #5ea11d;
  top: 0;
  z-index: 10;
}

body.signin:not(.home) h1,
body.reminder h1,
body.reminder-set h1,
body.reminder-done h1 {
  padding: 80px 0 70px;
}

body.signin .form_box,
body.reminder .form_box,
body.reminder-set .form_box,
body.reminder-done .form_box {
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
  padding: 50px;
  border-radius: 20px;
  background: #fff;
  margin: -115px auto 0;
  position: relative;
  z-index: 100;
}

body.signin .form_box dt,
body.reminder .form_box dt,
body.reminder-set .form_box dt,
body.reminder-done .form_box dt {
  font-weight: bold;
}

body.signin .form_box input,
body.reminder .form_box input,
body.reminder-set .form_box input,
body.reminder-done .form_box input {
  padding: 5px;
  display: block;
  width: 100%;
  border: 2px solid #c1cbcc;
  border-radius: 10px;
}

body.signin .form_box dd,
body.reminder .form_box dd,
body.reminder-set .form_box dd,
body.reminder-done .form_box dd {
  margin-bottom: 20px;
}

body.signin .form_box button,
body.reminder .form_box button,
body.reminder-set .form_box button,
body.reminder-done .form_box button {
  font-size: 2.25rem;
  width: 300px;
  margin: 30px auto 10px;
  display: block;
  height: 80px;
  color: #fff;
  font-weight: bold;
  background: #f1a020;
  border-radius: 10px;
  border: 2px solid #f1a020;
}

body.signin .form_box button:hover,
body.reminder .form_box button:hover,
body.reminder-set .form_box button:hover,
body.reminder-done .form_box button:hover {
  background: #fff;
  color: #f1a020;
}

body.signin .form_box .reminder_link {
  text-align: center;
}

body.signin .form_box .reminder_link a {
  text-decoration: underline;
  color: #212121;
}

body.signin.account-select .account-select__description {
  margin-bottom: 20px;
}

body.signin.account-select .account-select__list {
  display: grid;
  gap: 15px;
}

body.signin.account-select .form_box .account-select__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border: 2px solid #c1cbcc;
  border-radius: 10px;
  cursor: pointer;
}

body.signin.account-select .form_box .account-select__item:has(input:checked) {
  border-color: #5ea11d;
  background: #f3faed;
}

body.signin.account-select .form_box .account-select__item input {
  width: auto;
  margin-top: 5px;
  padding: 0;
  border: 0;
}

body.signin.account-select .account-select__details {
  display: grid;
  gap: 4px;
}

body.reminder .reminder-login-guide {
  margin: 12px 0 20px;
  text-align: center;
}

body.reminder .reminder-login-guide a {
  text-decoration: underline;
  color: #212121;
}

/* home */
body.signin .home_table th {
  background: #116d2c;
  color: #fff;
}

body.signin .home_table td {
  text-align: center;
}

body.signin .home_topics_list {
  display: none;
}

body.signin .home_table td.detail {
  text-align: left;
}

body.signin .home_table span.emergency {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  background: #f21237;
  border-radius: 5px;
  padding: 0 5px;
}

body.signin .home_table td a {
  color: #429aec;
  text-decoration: underline;
}

body.signin .home_table td ul li a {
  font-size: 1.4rem;
}

body.payment .payment_list {
  display: none;
}

body.reports .report_list {
  display: none;
}

body.signin.home .topics_list {
  padding-bottom: 30px;
  border-bottom: 2px solid #116d2c;
}

body.signin .home_link_wrap,
body.signin .home_minilink_wrap {
  max-width: 555px;
  margin: 30px auto;
}

body.signin .home_link_wrap li a {
  display: block;
  color: #fff;
  background: #116d2c;
  padding: 10px;
  margin-top: 20px;
  font-weight: bold;
}

body.signin .home_link_wrap li a:hover,
body.signin .home_minilink_wrap li a:hover {
  background: #5ea11d;
}

body.signin .home_minilink_wrap li {
  width: calc((100% - 40px) / 3);
}

body.signin .home_minilink_wrap li a {
  text-align: center;
  display: block;
  color: #fff;
  background: #116d2c;
  padding: 10px;
  font-weight: bold;
}

body.signin .home_minilink_wrap {
  justify-content: space-between;
  padding-bottom: 50px;
}

body.reminder .email:read-only {
  background-color: #c7c7c7;
}

/* schedule */

body.schedule .schedule_txt {
  margin-right: 30px;
}

body.schedule .schedule_table_wrap {
  padding-bottom: 50px;
}

body.schedule .schedule_table {
  border-collapse: collapse;
}

body.schedule .schedule_table th {
  font-size: 2rem;
  color: #fff;
  background: #116d2c;
  padding: 10px;
}

body.schedule .schedule_table td {
  background: #e6f6ea;
  font-weight: bold;
  text-align: center;
  padding: 0 20px;
}

body.schedule .subttl {
  border-bottom: 2px solid #116d2c;
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.schedule .subttl.controll {
  text-align: center;
}

body.schedule .controll div {
  width: 38%;
  vertical-align: middle;
}

body.schedule .control div:nth-child(1) {
  text-align: right;
}

body.schedule .control div:nth-child(2) {
  width: 24%;
  text-align: center;
}

body.schedule .control div:nth-child(3) {
  text-align: left;
}

body.schedule .control div a {
  color: #116d2c;
  font-size: 2rem;
}

body.schedule .schedule_main_table .table {
  width: 90%;
  margin: 0 auto;
}

body.schedule .schedule_main_table .sat {
  background: #e9f9f8;
}

body.schedule .schedule_main_table .sun {
  background: #f9e9f9;
}

body.schedule .schedule_main_table th input {
  margin-left: 5px;
}

body.schedule .schedule_main_table th .schedule_tag {
  display: block;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  background: #757171;
  padding: 8px;
  width: 65px;
  margin: 10px auto 0;
}

body.schedule .schedule_main_table td p span {
  margin-right: 1em;
  font-weight: bold;
}

body.schedule .schedule_main_table .schedule-state-select {
  margin-left: 8px;
  min-width: 4.2em;
  padding: 4px 8px;
  border: 1px solid #8f8f8f;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}

input[type='checkbox'] {
  margin: 0 3px 0 2px;
  transform: scale(1.2);
  accent-color: #116d2c;
}

input[type='radio'] {
  margin: 0 3px 0 2px;
}

body.schedule p.schedule_change_txt {
  width: 90%;
  margin: 0 auto;
  font-size: 2rem;
}

body.schedule p.schedule_change_txt select {
  font-size: 2rem;
}

body.schedule p.schedule_change_txt button {
  font-size: 2rem;
  border: 2px solid #212121;
  background: #fff;
  color: #212121;
  padding: 0px 10px;
  border-radius: 5px;
}

body.schedule p.schedule_change_txt button:hover {
  color: #fff;
  background: #212121;
}

body.schedule button.schedule_regit {
  border: 2px solid #fff;
  font-weight: bold;
  background: #f1a020;
  font-size: 3rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 30px auto;
  width: 330px;
  display: block;
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
}

body.schedule button.schedule_regit:hover {
  border: 2px solid #f1a020;
  background: #fff;
  color: #f1a020;
}

body.schedule .schedule_date .biko {
  width: 100%;
  height: 2em;
}

body.schedule .biko_row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

body.schedule .biko_row .biko {
  flex: 1;
  width: auto;
  min-width: 0;
}

sat 

/* admin-topics */

body.admin-topics h2.content_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.admin-topics h2.content_ttl::before {
  content: none;
}

body.admin-topics h2.content_ttl p {
  display: flex;
  align-items: center;
}

body.admin-topics h2.content_ttl p::before {
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  background: #116d2c;
  margin-right: 15px;
}

body.admin-topics h2.content_ttl a.new_btn {
  display: block;
  color: #fff;
  background: #f21237;
  border-radius: 10px;
  padding: 3px;
  font-size: 1.8rem;
  border: 2px solid #f21237;
  margin-left: 2em;
}

body.admin-topics h2.content_ttl a.new_btn:hover {
  color: #f21237;
  background: #fff;
}

body.admin-topics .topics_edit_table th {
  background: #116d2c;
  color: #fff;
}

body.admin-topics .topics_edit_table td {
  text-align: center;
}

body.admin-topics .topics_edit_table td.detail {
  text-align: left;
}

body.admin-topics .topics_edit_table span.emergency {
  display: block;
  color: #fff;
  font-weight: bold;
  background: #f21237;
  border-radius: 5px;
  padding: 2px;
}

body.admin-topics .topics_edit_table a.edit_btn {
  display: block;
  color: #fff;
  font-weight: bold;
  background: #116d2c;
  border-radius: 5px;
  border: 2px solid #116d2c;
}

body.admin-topics .topics_edit_table a.edit_btn:hover {
  color: #116d2c;
  background: #fff;
}

/* admin-topics-new */
/* admin-topics-edit */

body.input_topics .topics_regist_table th {
  width: 250px;
  text-align: left;
  background: #e6f6ea;
}

body.input_topics #individual_targets .targets {
  max-height: 18em;
  overflow-y: scroll;
}

body.input_topics .topics_regist_table th span.req {
  font-size: 1.3rem;
  color: #f21237;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  border: 2px solid #f21237;
  border-radius: 5px;
  padding: 0 3px;
  margin-right: 10px;
}

body.input_topics .topics_regist_table th span.any {
  font-size: 1.3rem;
  color: #212121;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  border: 2px solid #212121;
  border-radius: 5px;
  padding: 0 3px;
  margin-right: 10px;
}

body.input_topics .topics_regist_table button {
  border: 2px solid #fff;
  font-weight: bold;
  background: #f1a020;
  font-size: 3rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 30px auto;
  width: 165px;
  display: block;
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
}

body.input_topics .topics_regist_table button:hover {
  border: 2px solid #f1a020;
  background: #fff;
  color: #f1a020;
}

body.input_topics .topics_regist_table input[type='text'],
body.input_topics .topics_regist_table textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #c1cbcc;
}

body.input_topics .topics_regist_table input[type='submit'] {
  border: none;
  font-size: 90%;
  border-radius: 0;
  margin: 20px 0 0;
  background: none;
  text-decoration: underline;
}

.regist_txt {
  text-align: center;
}

.regist_back {
  text-align: center;
  margin-top: 20px;
}

.regist_back a {
  text-decoration: underline;
  color: #212121;
}

body.input_topics .selection_btn {
  color: #fff;
  font-size: 1.4rem;
  padding: 1px 8px;
  margin: 8px 0 4px;
  border-radius: 8px;
  background: #116d2c;
  display: inline-block;
  border: 1px solid #116d2c;
}

body.input_topics .selection_btn:hover {
  background: #fff;
  color: #116d2c;
}

body.input_topics #individual_targets {
  padding: 8px;
  margin: 8px 0 0;
  background: #f1f1f1;
}

/* reports */

.report_table_wrap {
  margin-top: 15px;
}

.report_table_wrap .flex {
  justify-content: space-between;
  align-items: center;
}

.report_table_wrap p.check {
  font-weight: bold;
}

.report_table_wrap p.check input {
  margin-right: 1em;
}

body.reports .report_search {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

body.reports .report_search input {
  margin: 0 1em;
  padding: 5px;
  width: 9em;
}

body.reports .report_table_wrap .report_search_btn {
  height: 30px;
  background: #f1a020;
  color: #fff;
  border: 2px solid #f1a020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  width: 4em;
}

body.reports .report_table_wrap .report_search_btn:hover {
  background: #fff;
  color: #f1a020;
}

body.reports .report_table {
  margin-top: 10px;
}

body.reports .report_table th {
  background: #116d2c;
  color: #fff;
}

body.reports .report_table th.state {
  width:10%;
}


body.reports .report_table td {
  text-align: center;
}

body.reports .report_table a.report_btn {
  display: block;
  color: #fff;
  font-weight: bold;
  background: #5ea11d;
  border-radius: 5px;
  border: 2px solid #5ea11d;
}

body.reports .report_table a.report_btn:hover {
  background: #fff;
  color: #5ea11d;
}

body.reports .report_table a.report_btn.red {
  background: red;
  border: 2px solid red;
}

body.reports .report_table a.report_btn.red:hover {
  background: #fff;
  color: red;
}

/* reports-detail */

body.reports-detail textarea.rereport {
  width: 80%;
  margin-left: 15%;
  display: block;
  height: 10em;
}

.subttl {
  border-bottom: 2px solid #116d2c;
  margin: 30px 0 20px;
  color: #116d2c;
  font-size: 2rem;
}

body.reports-detail .report_info_table th {
  background: #e6f6ea;
  width: 8em;
}

body.reports-detail .report_info_table td.status {
  width: 286px;
}

body.reports-detail .report_time_table {
  margin-top: 20px;
}

body.reports-detail .report_time_table th {
  background: #d5f3f6;
}

body.reports-detail .report_time_table td {
  width: 321px;
}

body.reports-detail .report_time_table select {
  margin: 0 5px;
}

body.reports-detail .activity_places {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.reports-detail .activity_places input,
body.reports-detail .activity_places p {
  width: 100%;
  margin: 0;
}

body.reports-detail .price_sum {
  background-color: #f3f3f3;
  text-align: right;
}

body.reports-detail .gray {
  background-color: #f3f3f3;
  text-align: right;
}

body.reports-detail .input_price {
  text-align: right;
}

body.reports-detail .readonly {
  background-color: #f3f3f3;
}

.report_carfare h3.subttl {
  justify-content: space-between;
  padding-bottom: 5px;
}

.report_carfare h3.subttl .flex,
.report_supplies h3.subttl .flex,
.report_content h3.subttl .flex,
.report_next h3.subttl.flex {
  align-items: center;
}

.report_carfare h3.subttl span,
.report_supplies h3.subttl span,
.report_content h3.subttl span {
  display: block;
  color: #f21237;
  border: 1px solid #f21237;
  font-size: 1.5rem;
  padding: 0 2px;
  margin: 0 10px;
}

.report_next h3.subttl span {
  display: block;
  color: #212121;
  border: 1px solid #212121;
  font-size: 1.5rem;
  padding: 0 2px;
  margin: 0 10px;
}

.report_carfare h3.subttl p {
  color: #212121;
  font-weight: normal;
  font-size: 1.5rem;
}

.report_carfare input[type='radio'] {
  margin: 0 5px;
}

.comfare_sum {
  color: #212121;
  font-size: 1.5rem;
}

.comfare_sum input {
  padding: 10px;
  border: 1px solid #429aec;
  margin-left: 5px;
}

body.reports-detail .route_list li {
  border-bottom: 1px dashed #212121;
  padding: 15px 0;
  margin-bottom: 20px;
}

body.reports-detail .route_list li:last-child {
  border-bottom: none;
}

body.reports-detail .route_list li .route_wrap .route_type {
  width: 10%;
}

body.reports-detail .route_list input[type='text'],
body.reports-detail .route_list select,
body.reports-detail .report_next input[type='text'],
body.reports-detail .report_next select {
  padding: 10px;
  border: 1px solid #429aec;
  margin-bottom: 15px;
}

body.reports-detail .route_list select {
  margin-right: 20px;
}

body.reports-detail .route_list span {
  margin: 0 15px;
}

body.reports-detail .route_list .route_money input {
  margin-left: 5px;
}

body.reports-detail .route_list .other_content {
  width: 100%;
}

body.reports-detail .report_content textarea {
  width: 80%;
  margin: auto;
  display: block;
}

.report_content .report_attachments {
  width: 80%;
  margin: 15px auto 0;
}

body.reports-detail .report_next {
  padding-bottom: 50px;
}

.report_supplies {
  margin-top: 40px;
}

.report_supplies .supplies_block {
  padding-top: 20px;
}

.report_supplies .supplies_row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.report_supplies .supplies_count {
  width: 96px;
  text-align: right;
}

.report_supplies .supplies_lender span {
  display: inline-block;
  margin-right: 16px;
}

.report_supplies .supplies_lender input,
.report_supplies .supplies_lender p {
  display: inline-block;
  width: calc(100% - 220px);
  margin: 0;
}

body.reports-detail .report_next div {
  width: 80%;
  margin: 0 auto;
}

body.reports-detail .report_next button {
  border: 2px solid #fff;
  font-weight: bold;
  background: #f1a020;
  font-size: 3rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 30px auto;
  width: 200px;
  display: block;
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
}

body.reports-detail .report_next button:hover {
  color: #f1a020;
  background: #fff;
  border-color: #f1a020;
}

body.reports-detail .report_next select,
body.reports-detail .report_next input {
  margin: 0 15px;
}

/* reports-confirm */

.reports-confirm .detail_th {
  width: 10em;
  background: #e6f6ea;
}

.reports-confirm .report_time_table .detail_th {
  background: #d5f3f6;
}

.reports-confirm .report_next button {
  border: 2px solid #fff;
  font-weight: bold;
  background: #f1a020;
  font-size: 3rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 30px auto;
  width: 200px;
  display: block;
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
}

body.reports-confirm .report_time_table {
  margin-top: 20px;
}

body.reports-confirm .report_next table td,
body.reports-confirm .report_content table td {
  padding: 10px;
}

/* consults */

body.consults .consults_check.flex {
  align-items: center;
}

body.consults .consults_check.flex .flex {
  align-items: center;
}

body.consults .consults_check.flex h3,
body.consults .consults_check.flex p {
  margin-right: 1em;
}

body.consults .consults_check.flex button {
  display: block;
  border: 2px solid #116d2c;
  border-radius: 5px;
  background: #116d2c;
  color: #fff;
  font-weight: bold;
  padding: 2px 5px;
  font-size: 1.6rem;
  margin: 0;
}

body.consults .consults_check.flex button:hover {
  color: #116d2c;
  background: #fff;
}

body.consults .consults_txt {
  margin-top: 15px;
}

body.consults table {
  margin-top: 10px;
}

/*body.consults table tr:nth-child(even) td,
body.consults table tr:nth-child(even) th {
  border-bottom: 2px double #c1cbcc;
}*/

body.consults table tr.answer {
  border-bottom: 2px double #c1cbcc;
}


body.consults table select {
  width: 100%;
  text-align: center;
}

body.consults table .gray_txt {
  color: #c1cbcc;
}

body.consults section button {
  border: 2px solid #fff;
  font-weight: bold;
  background: #f1a020;
  font-size: 3rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 30px auto;
  width: 165px;
  display: block;
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
}

body.consults section button:hover {
  border: 2px solid #f1a020;
  background: #fff;
  color: #f1a020;
}

body.consults .detail_text {
  width: 100%;
  height: 2em;
}
/* payment */
body.payment .payment_txt {
}

body.payment .payment_search_wrap {
  margin-top: 15px;
}

body.payment .payment_search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body.payment .payment_search input {
  margin: 0 1em;
  padding: 5px;
  width: 9em;
}

body.payment .payment_search_wrap .payment_search_btn {
  height: 30px;
  background: #f1a020;
  color: #fff;
  border: 2px solid #f1a020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 4em;
}

body.payment .payment_search_wrap .payment_search_btn:hover {
  background: #fff;
  color: #f1a020;
}

body.payment .payment_search_wrap .payment_reset_btn {
  height: 30px;
  margin-left: 0.5em;
  padding: 0 0.75em;
  background: #777;
  color: #fff;
  border: 2px solid #777;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.payment .payment_search_wrap .payment_reset_btn:hover {
  background: #fff;
  color: #777;
}

body.payment .ui-datepicker-calendar {
  display: none;
}

body.payment .payment_table {
  margin-top: 15px;
}

body.payment .payment_table th {
  background: #116d2c;
  color: #fff;
  text-align: center;
}

body.payment .payment_table td {
  text-align: center;
}

body.payment .payment_table td a {
  color: #429aec;
  text-decoration: underline;
}

/* admin-users */
body.admin-users .users_search {
  display: flex;
  align-items: center;
}
body.admin-users .users_search input[type='text'] {
  width: 500px;
  margin-right: 1em;
  padding: 10px;
}

body.admin-users .users_search .user_search_btn {
  display: inline-block;
  padding: 6px;
  border-radius: 5px;
  background: #116d2c;
  border: 2px solid #116d2c;
  color: #fff;
}

body.admin-users .users_search .user_search_btn:hover {
  background: #fff;
  color: #116d2c;
}

body.admin-users .users_table {
  margin-top: 15px;
}

body.admin-users .users_table th {
  background: #116d2c;
  color: #fff;
  text-align: center;
}

body.admin-users .users_table td a {
  color: #429aec;
  text-decoration: underline;
}

/* form_requests */

body.form_requests h2.content_ttl {
  font-size: 2.4rem;
}

body.form_requests .input_form {
  margin-top: 15px;
}

body.form_requests .input_form table {
  margin-bottom: 40px;
}

body.form_requests .input_form th {
  width: 250px;
  text-align: left;
  background: #e6f6ea;
}

body.form_requests .input_form th span.req {
  font-size: 1.3rem;
  color: #f21237;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  border: 2px solid #f21237;
  border-radius: 5px;
  padding: 0 3px;
  margin-right: 10px;
}

body.form_requests .input_form td span.req {
  font-size: 1.3rem;
  color: #f21237;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  border: 2px solid #f21237;
  border-radius: 5px;
  padding: 0 3px;
  margin-right: 10px;
}

body.form_requests .input_form th span.any {
  font-size: 1.3rem;
  color: #212121;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  border: 2px solid #212121;
  border-radius: 5px;
  padding: 0 3px;
  margin-right: 10px;
}

body.form_requests .input_form td span.any {
  font-size: 1.3rem;
  color: #212121;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  border: 2px solid #212121;
  border-radius: 5px;
  padding: 0 3px;
  margin-right: 10px;
}

body.form_requests .input_form .btn {
  border: 2px solid #fff;
  font-weight: bold;
  background: #f1a020;
  font-size: 3rem;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 30px auto;
  width: 165px;
  display: block;
  box-shadow: 8px 8px 15px 1px rgba(1, 34, 10, 0.1);
}

body.form_requests .input_form .btn:hover {
  border: 2px solid #f1a020;
  background: #fff;
  color: #f1a020;
}

body.form_requests .input_form input[type='text'],
body.form_requests .input_form textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #c1cbcc;
}

body.form_requests .input_form input[type='text'].readonly-field {
  background: #f3f3f3;
  color: #555;
}

body.form_requests .input_form textarea {
  resize: none;
}

body.form_requests .input_form .inline-radio {
  display: inline-block;
  white-space: nowrap;
  margin-right: 12px;
}

body.form_requests .input_form .inline-other {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

body.form_requests .input_form .equip_table th,
body.form_requests .input_form .equip_table td {
  background: #fff;
}

body.form_requests .input_form .equip_table {
  table-layout: fixed;
}

body.form_requests .input_form .equip_table .equip_group {
  width: 250px;
  text-align: center;
  background: #e6f6ea;
}

body.form_requests .input_form .equip_table tr th:not(.equip_group) {
  width: 250px;
}

body.form_requests .input_form .equip_table .equip_check {
  text-align: left;
  padding-left: 20px;
}

body.form_requests .input_form .equip_table .equip_check input[type='checkbox'] {
  width: 24px;
  height: 24px;
}

body.form_requests .input_form .equip_table .equip_check label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.form_requests .input_form input[type='text'].w-50 {
  width: 50%;
}

body.form_requests .input_form input[type='text'].w-70 {
  width: 70%;
}

body.form_requests .input_form input[type='text'].w-140 {
  width: 140px;
}

body.form_requests .input_form input[type='submit'] {
  border: none;
  font-size: 90%;
  border-radius: 0;
  margin: 20px 0 0;
  background: none;
  text-decoration: underline;
}

body.form_requests .form_back_link {
  text-align: center;
  margin-bottom: 20px;
}

body.form_requests .form_back_link .link_button {
  border: none;
  background: none;
  padding: 0;
  color: #212121;
  text-decoration: underline;
  cursor: pointer;
}
