body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

header {
  width: 250px;
  height: 100%;
  padding: 40px 0 30px 40px;
  left: 0;
  top: 0;
  /* 画面の高さが低くてメニューが隠れてしまった場合に、縦スクロールが出るよう設定 */
  /* overflow-y: auto; */
}

header h1 img {
  width: 100%;
  margin-bottom: 50px;
  padding-right: 40px;
}
header .nav_menu {
  margin-bottom: 60px;
  line-height: 2rem;
}

header .nav_menu img {
  width: 20px;
  margin-right: 10px;
  display: inline;
  vertical-align: middle;
}
header li {
  font-size: 0.875rem;
  padding: 8px 0;
  position: relative;
}

header .sub_menu li {
  padding: 0px 0;
}

header .sen {
  border-top: 1px solid #e9e9e9;
  margin: 16px 0;
}
.sideHandler {
	cursor: pointer;
	height: 20px;
	width: 20px;
	background-color: white;
	z-index: 300;
	position: fixed;
	top: 0;
	left: 250px;
	opacity: 0.7;
}
.sideHandler:hover {
	opacity: 1;
}
.sideHandler:after {
	content: '';
	border-bottom: 2px solid black;
    border-left: 2px solid black;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 8px;
    height: 12px;
    width: 12px;
    transform: rotate(45deg) !important;
}
.sideHandler--wide {
	left: 0px;
}
.sideHandler--wide:after {
	left: 0px;
	transform: rotate(225deg) !important;
}

.container {
  margin: 80px 0 0 250px;
  width: calc(100% - 250px);
  background: #f3f3f3;
  min-width: 800px;
  min-height: 100%;
  position: absolute;
  top: 0;
}
.container--narrow {
  margin: 80px 0 0 0;
  width: 100%;
  background: #f3f3f3;
  min-width: 800px;
  position: absolute;
  top: 0;
}

.container-lp {
  margin-left: auto;
  margin-right: auto;
  background-image: url(/img/genesischintai_lp.png);
  width: 1280px;
  height: 800px;
}

main {
  background: #f3f3f3;
}

.head {
  width: 100%;
  position: absolute;
  top: -80px;
  left: 0;
  height: 80px;
  background-color: #00ABB5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  min-width: 800px;
}

.head h2 {
  margin-left: 50px;
}

.head .menu {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  font-size: 0.9rem;
}
.head .menu .dropdown img {
  width: 17px;
  margin: -3px 10px 0;
}

.head .menu li.logout {
  height: 100%;
  padding: 30px;
  background-color: #333;
  color: #fff;
  margin-left: 20px;
}
.head .menu li.logout img {

  width: 21px;

}

.panel_item {
  position: absolute;
  top: 80px;
  padding: 0;
  display: none;
  background-color: #fff;
  width: 168px;
}

/*.openが付与された時、表示の設定*/
.panel_item.open {
  display: block;
}

.panel_item li a {
  padding: 15px 10px;
  display: block;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e9e9e9;
}

img {
  width: 25px;
  display: inline;
  vertical-align: middle;
  margin-right: 10px;
}

input,
select,
button {
  background-color: #f3f3f3;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  padding: 5px;
}

[type="file"] {
  height: 50px;
  padding: 5px;
}

.select {
  position: relative;
}

.select::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
}

.csv_menu .select {
  width: 30%;
}

button {
  text-align: center;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0;
}

button:disabled {
  opacity: 0.2;
}

button img {
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: -10px;
}
button a {
  display: inline-block;
  vertical-align: middle;
}

button.btn-lp-login {
  position: absolute;
  top: 30%;
  left:21%;
  width: 250px;
  background: #e10028;
  border-radius: 50px;
}

input[type="radio"] {
  width: 20px;
}

input[type=checkbox] {
  width:auto;
  height:auto;
}

input[type=checkbox]:disabled + label {
  opacity: 0.5;
}

/* ログイン */

.container.login {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.login h1 img {
  width: 400px;
  margin: 50px 0 50px;
}

.login form {
  width: 600px;
  margin: 0 auto;
}

.login form input {
  background: #fff;
  border: 2px solid #e9e9e9;
  width: 600px;
  text-align: left;
  padding: 30px;
  margin: 20px 0;
}

.login form a.forget {
  color: #00ABB5;
  text-decoration: underline #00ABB5;
  font-size: 0.8rem;
  text-align: right;
  display: block;
  margin-bottom: 70px;
}

.login form button {
  background: #00ABB5;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  width: 500px;
  height: fit-content;
  border-radius: 50px;
  padding: 20px 10px;
  position: relative;
}
.login form button img {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
}

.container.ip_error {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
}
.ip_error img {
  width: 400px;
  margin: 50px 0 50px;
}
.ip_error h1{
  font-size: 36px;
  margin-bottom: 50px;
}


a.privacy {
  color: #2d6d9d;
  text-decoration: underline #2d6d9d;
  margin-bottom: 30px;
  display: block;
}

footer {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 100px;
}

section {
  padding: 30px;
  font-size: 0.8rem;
}

section.customer_detail{
  width: 45%;
  float: left;
  padding: 20px;
}

section.customer_detail.add_option{
  width: 55%;
  float: left;
}

section.contract_detail{
  width: 55%;
  float: right;
  padding: 20px 20px 10px;
}

section.btn_back{
  width: 55%;
  float: right;
  text-align: right;
}

section.detail{
  width: 60%;
  text-align: left;
}

section.btn_back.detail{
  width: 60%;
  float: left;
  text-align: right;
}

section.btn_back.add_option{
  width: 55%;
  float: none;
  text-align: right;
}

section.btn_pps{
  padding: 10px;
}

section.send_type{
  width: 55%;
  float: right;
  padding: 20px 20px 10px;
}

section.sms_select {
  padding: 10px;
  min-width: 810px;
}

section.sms_select {
  /* background-color: #00ABB5; */
  /* margin-right: 30px; */
  width: 25%;
  min-width: 140px;
}

section.sms_result {
  padding: 10px;
  min-width: 810px;
}

section.sms_result {
  background-color: #FFFFFF;
  margin-right: 30px;
  width: auto;
  min-width: 140px;
}

section.request_business_form {
  width: 100%;
  padding: 20px;
}

.accordion_cnt{display:none;}
.accordion_btn:hover{
	cursor:pointer;
}
.accordion_btn span::before{
	content:"＋";
}
.accordion_btn span.accordion_mark::before{
	content:"－";
}

p.ttl {
  margin: 10px 0;
  font-weight: 400;
}

.conditions_menu {
  background-color: #fff;
  padding: 0 30px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* min-width: 750px; */
}
.conditions_menu label {
  font-weight: 400;
}

.conditions_menu li {
  margin: 20px 0 0;
  line-height: 2rem;
  width: 48%;
  min-width: 140px;
}

.external .conditions_menu li {
  width: 100%;
}

.conditions_menu li.long {
  width: 30%;
}

.conditions_menu li.short {
  width: 22%;
}

.conditions_menu li.five {
  width: 18%;
}

.conditions_menu li.six {
  width: 17%;
}

.conditions_menu li.seven {
  width: 12%;
}

.specification_title {
  cursor: pointer;
}

.conditions_menu li.specification_detail {
  line-height: 1rem;
  width: 100%;
  border: 1px solid;
  padding: 10px;
}

.conditions_menu div.specification_detail {
  line-height: 1rem;
  width: 100%;
  border: 1px solid;
  padding: 10px;
}

.conditions_menu.request_business_form {
  padding: 30px;
}

.conditions_menu.duplicate_control_preference {
  padding: 0 30px 0 30px;
}

.conditions.duplicate_control_preference .conditions_menu li {
  margin: 10px 0 0;
}

.specification_detail table,
.specification_detail table th,
.specification_detail table td {
  border: 1px solid;
}

.csv_menu {
  justify-content: space-between;
}

.csv_menu button{
  position:relative;
  top:40%;
}

.csv_header_menu {
  padding: 5px 30px 0;
  display: block;
}
.csv_header_menu li{
  /* height:20px; */
  margin: 0;
  line-height: 2rem;
  display: flex;
}
.csv_header_menu a{
  display: flex;
  justify-content: center;
  align-items: center;
}
.csv_header_menu img{
  height:10px;
  width: 10px;
  margin-right: 1px;
}

.csv_menu a img{
  height:10px;
  width: 10px;
  margin-right: 1px;
}

.conditions_header {
  background-color: white;
  font-size: 12pt;
  font-weight: bold;
  color: #8d8d8d;
  margin: 0;
  padding: 10px 10px 0 20px;
  width: 100%;
	display: flex;
	align-items: center;
}

.conditions_header:after {
	content: "";
	flex-grow: 1;
	height: 2px;
	display: block;
	margin-left: .5em;
	background: #e9e9e9;
}

.conditions_menu li.toshort .select {
  width: 27%;
  display: inline-block;
}

.conditions_menu li.toshort select {
  width: 100%;
}

.conditions_menu #btn_search {
  margin-top: 33px;
  background-color: #2d6d9d;
}

.register {
  padding: 10px;
  min-width: 810px;
}

.register #btn_register {
  /* background-color: #e10028; */
  /* margin-right: 30px; */
  width: 18%;
  min-width: 140px;
}

.table_area {
  width: 100%;
  background-color: #fff;
  padding: 30px;
}

.request_business_form .conditions_menu {
  padding: 0 30px 0 30px;
}

.table_area p {
    text-align: right;
}

.table-scroll {
  overflow: auto; /*スクロールさせる*/
  background-color: #fff;
  text-align: center;
  margin: 30px;
  white-space: nowrap;
}

.table-sms {
  background-color: #fff;
  text-align: center;
}

.detail .table-scroll,
.customer_detail .table-scroll,
.contract_detail .table-scroll,
.request_business_form .table-scroll {
  overflow: unset;
  white-space: normal;
  margin: 0;
}

.send_type{
  overflow: unset;
  white-space: normal;
  margin: 0;
}

.smssendsvg{
  background-color:#000000;
}

/* 以下、スクロールバーを追加 */

/* .table-scroll::-webkit-scrollbar{
  height: 5px;
}

.table-scroll::-webkit-scrollbar-track{
 background: #ccc;
}
.table-scroll::-webkit-scrollbar-thumb {
 background: #999;
} */

/* 以下、tableの指定 */
.table-scroll table {
  border-collapse: separate;
  border-spacing: 0;
  border-top: #e9e9e9 solid 1px;
  border-left: #e9e9e9 solid 1px;
  margin: 0 auto;
  width: 100%;
  max-height: 600px;
}
.table-scroll table th,
.table-scroll table td {
  padding: 10px 5px;
  border-right: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
  text-align: center;
  vertical-align: middle;
}

.detail .table-scroll table th,
.customer_detail .table-scroll table th,
.contract_detail .table-scroll table th {
  text-align: left;
  width: 25%;
}

.contract_detail.payment_detail .table-scroll table th {
  width: auto;
}

.request_business_form .table-scroll table th {
  text-align: left;
}

.detail .table-scroll table td,
.customer_detail .table-scroll table td,
.contract_detail .table-scroll table td,
.request_business_form .table-scroll table td {
  text-align: left;
}

.send_type table th {
  text-align: left;
  width: 25%;
}

.send_type table td {
  text-align: left;
}

.table-scroll table th {
  padding: 10px 15px;
  background:#f6f4ed;
}

.table-scroll,
.table-scroll table,
.table-scroll table th,
.table-scroll table td {
  box-sizing: initial;
}

/* .table-scroll table .fixed1,
.table-scroll table .fixed2,
.table-scroll table .fixed3,
.table-scroll table .fixed4
{
  padding: 10px 5px;
  position: sticky;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 0px;
  border-right: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
	z-index: 300;
}

.table-scroll table .fixed5
{
  padding: 10px 5px;
  position: sticky;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 0px;
  border-right: #e9e9e9 double 5px;
  border-bottom: #e9e9e9 solid 1px;
  z-index: 300;
}

.table-scroll table .th-fixed1,
.table-scroll table .th-fixed2,
.table-scroll table .th-fixed3,
.table-scroll table .th-fixed4,
.table-scroll table .th-fixed5
{
  padding: 10px 15px;
  position: sticky;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 0px;
  border-right: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
	z-index: 300;
}

.table-scroll table .th-fixed-header1
{
  padding: 10px 15px;
  position: sticky;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 0px;
  border-right: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
  z-index: 500;
}

.table-scroll table .th-fixed-header2
{
  padding: 10px 15px;
  position: sticky;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 0px;
  border-right: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 double 5px;
  z-index: 400;
} */

.table-scroll table td button {
  margin: 2px;
  white-space: nowrap;
}
/* .table-scroll table td .status {
  padding: 5px 10px;
  width: 60px;
  height: fit-content;
  color: #fff;
  border-radius: 3px;
  white-space: nowrap;
}

.table-scroll table td .status0 {
    background-color: #a7a7a7;
}
.table-scroll table td .status1 {
  background-color: #2d6d9d;
}
.table-scroll table td .status2 {
  background-color: #e10028;
}
.table-scroll table td .status3 {
  background-color: #a7a7a7;
  padding: 5px 15px;
}
.table-scroll table td .status4 {
  background-color: #a7a7a7;
  padding: 5px 15px;
}
.table-scroll table td .status10 {
  background-color: #66cdaa;
  padding: 5px 15px;
}
.table-scroll table td .haishi {
  color: #e10028;
}
.table-scroll table td .tsuden {
  color: #2d6d9d;
} */

.btn-success,
.btn-cancel,
.btn-canceled {
  color: #333;
  background: linear-gradient(#fff, #e9e9e9);
  border: 1px solid #e9e9e9;
  width: fit-content;
  height: fit-content;
  padding: 5px 10px;
}

.btn-cancel {
  color: #fff;
  background: #00A2D8;
  border: 1px solid #00A2D8;
}

.btn-canceled {
  color: #fff;
  background: #999;
  border: 1px solid #999;
  cursor: default;
}

.btn-success.nyukyo {
  padding: 0px 10px;
}

.btn-success:disabled {
  color: #fff;
  background: #e9e9e9;
  border: none;
}

label.rdo {
  margin-right: 5px;
}

#btn_search {
  padding: 0;
}
#btn_search img {
  margin: 0 2px 0 0;
  padding: 0;
}


#btn_search{
  padding: 0;
}
#btn_search img{
  margin: 0 2px 0 0;
  padding: 0;
}

#btn_back{
  background-color: #2d6d9d;
}
#btn_back img {
  width: 7px;
}
.btn_save {
  background-color: #e10028;
  width: 25%;
  padding: 10px;
}
.btn_save img {
  width: 16px;
}
.modal_btn_save {
  background-color: #e10028;
  margin-top: 30px;
  width: 80px;
  height: 40px;
}
.modal_btn_save img {
  width: 16px;
}
#btn_delete {
  background-color: #333;
  color: #fff;
  margin-top: 30px;
}
#btn_delete img {
  width: 16px;
}

#btn_reload {
  background-color: #389b2d;
  color: #fff;
  margin-top: 30px;
}
#btn_reload img {
  width: 16px;
}

.btn_tuika {
  background: #2d6d9d;
  color: #fff;
}

.btn_edit {
  background-color: #389b2d;
  width: 25%;
  padding: 10px;
}
.btn_edit img {
  width: 16px;
}

span.cau {
  color: #fff;
  background-color: #e10028;
  font-weight: 400;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
}


.cau p{
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    color: #e10028;
}
.red-text{
  color: #e10028;
}

.conditions_menu li p.pul_gr {
    background-color: #e3f7dc;
    border-radius: 3px;
    width: 100%;
    height: 50px;
    appearance: auto;
    padding: 10px;
}

.pagination{
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  align-items: center;
}

.pagination li {
  margin: 10px;
}
.pagination span,
.pagination a {
  display: inline-block;
  vertical-align: middle;
}
.pagination li.num {
  border-radius: 2px;
  background: #e9e9e9;
  color: #fff;
  padding: 8px 10px;
}
.pagination li.active {
  border-radius: 2px;
  border: 1px solid #00ABB5;
  padding: 8px 10px;
}
.pagination li img {
  width: 7px;
}
.pagination li img.side {
  width: 11px;
}

/* モーダル */

.content {
  margin: 0 auto;
  padding: 40px;
}
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  left: 0;
}
.modal__bg,
.modal-no-close {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  border-radius: 5px;
  text-align: center;
}
.modal__content h3 {
  color: #e10028;
  text-align: center;
  font-size: 1.7rem;
  margin: 0 0 20px;
  line-height: 3rem;
}
.modal__content h4 {
  font-weight: 400;
  line-height: 1.5rem;
}
.modal__content img {
  width: 50px;
}
.modal__content p {
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  line-height: 1.5rem;
}

a.js-modal-close {
  background-color: #2d6d9d;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 10px 20px;
  width: fit-content;
  margin: 10px auto 0;
  display: block;
}

a.js-modal-link {
  background-color: #2d6d9d;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 10px 20px;
  width: fit-content;
  margin: 10px auto 0;
  display: block;
}

a.link-text {
  background-color: transparent;
  text-decoration: underline;
  color: blue;
}

.btn_modal_regist {
  background-color: #9d2d2d;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 0 20px;
  width: fit-content;
  margin: 10px auto 0;
  display: block;
}

.btn_action_line {
  width: 220px;
  min-width: 220px;
  height: 40px;
  margin-top: 33px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn_action_line img {
  width: 16px;
  margin: 0;
  padding: 0;
}

.btn_action_line a {
  color: #fff;
}

#btn_select_columns.btn_action_line {
  background-color: #555;
}

.column_select_modal {
  width: 70%;
  max-width: 1100px;
  min-width: 900px;
  text-align: left;
}

.column_select_wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.column_box {
  width: 40%;
}

.column_box_ttl {
  font-weight: 700;
  margin-bottom: 10px;
}

.column_box select {
  width: 100%;
  min-height: 360px;
}

.column_btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.column_btns button {
  min-width: 50px;
  height: 36px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.btn_modal_cancel {
  background-color: #999;
  color: #fff;
  width: 80px;
  height: 40px;
  margin-right: 10px;
}

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

.btn_modal_inline {
  margin-top: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.btn_modal_cancel {
  background-color: #999;
  color: #fff;
  width: 80px;
  height: 40px;
  margin-right: 10px;
}

#btn_csv {
    background-color: #389b2d;
    font-size: 0.7rem;
    width: 18%;
    min-width: 140px;
}

.request_business_search #btn_csv {
  margin-top: 33px;
  width: 100%;
  font-size: unset;
}

.request_business_search .csv_menu #btn_csv {
  margin-top: 0;
  width: 100%;
  font-size: unset;
}

.csv {
  display:inline-block;
  width: 18%;
  font-size: 0.7rem;
  margin-bottom: 2px;
}

.csv button {
  background-color: #389b2d;
  width: 100%;
  min-width: 140px;
}

.row-active {
    background: #fff6e9;
}

/* 表示件数 */
#display-number {
  border-width: 1px;
  height: auto;
  width: auto;
  padding: 2px;
  background-color: white;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
}

.display-number {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5px;
}

.display-number label {
  margin-right: 5px;
}

/* TOPに戻るボタン */
html{
  scroll-behavior: smooth;
}
.gotop{
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #FFF;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}
.gotop::before{
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
.gotop:hover{
  opacity: 1;
}

.alert {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert-dismissible {
  padding-right: 35px;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-success {
  color: #05a04b;
  background-color: #def2e4;
  border-color: #ccebd6;
}

.request_business_form .required::after {
  content: '必須';
  display: inline-block;
  margin-left: .5em;
  padding: .3em;
  border-radius: .5em;
  color: #fff;
  font-size: .7em;
  background-color: #cc0000;
}

.errmsg {
  color: red;
}

.table_area.edit_payment .errmsg {
  text-align: left;
}

#btn_request_bisiness_disp {
  color: black;
  background-color: #f6f4ed;
  height: 30px;
}

#btn_request_bisiness_disp::before {
  content: "＋ 全件表示";
}

#btn_request_bisiness_disp.request_business_mark::before {
	content: "－ 閉じる";
}

.btn_request_bisiness_delete {
  color: black;
  background-color: #febebe;
  height: 30px;
}

.table-scroll table td button.btn_request_bisiness_delete,button.btn_request_bisiness_deleted {
  margin: 0;
}

.btn_request_bisiness_deleted {
  color: black;
  background-color: #cfcece;
  height: 30px;
}

.btn_request_bisiness_deleted:disabled {
  opacity: unset;
}

#btn_sms_log_disp {
  color: black;
  background-color: #F7D358;
  width: 200px;
  font-size: 18px;
  margin-bottom: 16px;
}

#btn_sms_log_disp h3::before {
  content: "＋ ";
}

#btn_sms_log_disp h3.sms_log_mark::before {
	content: "－ ";
}

select#sms_selected_type {
  background-color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid;
}

.change_pw_title {
  padding: 1rem 0;
  background-color: #00ABB5;
  color: #fff;
  font-weight: bold;
}

.change_pw_content {
  color: red;
  margin-top: 20px;
}

#add_payment_btn_area {
  display: flex;
  margin-bottom: 8px;
}

#add_payment_btn_area a {
  margin-top: 2px;
  margin-left: 16px;
}

#add_payment_btn_area h3 {
  padding-top: 10px;
}

#btn_add_payment {
  color: black;
  background-color: #d0ffd0;
  width: 200px;
  font-size: 15px;
}

.requiredTtl::after {
  content: '必須';
  display: inline-block;
  margin-left: .5em;
  padding: .3em;
  border-radius: .5em;
  color: #fff;
  font-size: .7em;
  background-color: #cc0000;
}

#contract_capacity {
  width: 40%;
}

.csv_menu .btn_csv_menu_action {
  margin-top: 0;
  width: 100%;
  min-width: 140px;
}

#btn_select_columns.btn_csv_menu_action {
  background-color: #555;
}
