.dtbs_item_title:not(:first-child) {
  padding: 16px 12px 0;
  margin: 16px -12px 12px;
  border-top: 1px solid #eeeeee;
}

.dtbs_item_add_area {
  margin: 12px 0 0 .5em;
}

.item_text_plus {
  color: #0073aa;
  cursor: pointer;
  margin-top: 6px;
}

.item_text_plus::before {
  content: "\f502";
  font: normal 16px/1 dashicons;
  display: inline-block;
  margin-left: -1px;
  padding-right: 3px;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.item_text_minus {
  color: #a00;
  margin-left: 10px;
  cursor: pointer;
}

.item_text_minus::before {
  content: "\f153";
  font: normal 16px/1 dashicons;
  display: inline-block;
  margin-left: -1px;
  padding-right: 3px;
  vertical-align: text-top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.dtbs_item_select {
  margin: -.5em 0 0 .5em;
}

.dtbs_item_select select {
  margin-top: .5em;
}

.dtbs_item_select label {
  display: inline-block;
  margin: .5em 1em 0 0;
}

.dtbs_item_select label:hover {
  color: #00a0d2;
}

.dtbs_item_select_length {
  color: #aaa;
}

/* ----------------*/
.dtbs_list_detail {
  counter-reset: tableNumber;
}

.dtbs_list_detail .item_block {
  counter-increment: tableNumber;
}

.dtbs_list_detail .item_block .number::after {
  content: counter(tableNumber);
}

.dtbs_list_wrap {
  display: table;
  border-collapse: collapse;
  border: 1px solid #c3c4c7;
  width: 100%;
}

.dtbs_list_title {
  background: #fff;
  display: table-header-group;
}

.dtbs_list_title ul {
  display: table-row;
  border: 1px solid #c3c4c7;
}

.dtbs_list_title ul li {
  display: table-cell;
  padding: 1em;
  background: #fff;
  white-space: nowrap;
}

.dtbs_list_title-change {
  text-align: center;
}

.dtbs_list_title-delete {
  text-align: center;
}

.dtbs_list_detail {
  background: #fff;
  display: table-row-group;
  border: 1px solid #c3c4c7;
}

.dtbs_list_detail ul {
  display: table-row;
}

.dtbs_list_detail ul:nth-child(odd) {
  background: #f6f7f7;
}

.dtbs_list_detail li {
  display: table-cell;
  vertical-align: middle;
  padding: 1em;
}

.dtbs_list_detail li.number {
  width: calc(52px + 2em);
}

.dtbs_list_detail li.number span {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
  margin-right: 20px;
  vertical-align: middle;
}

.dtbs_list_detail li.number span::before, .dtbs_list_detail li.number span::after {
  content: "";
  width: 40%;
  height: 2px;
  background: currentColor;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: .5;
}

.dtbs_list_detail li.number span::before {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.dtbs_list_detail li.number span::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.dtbs_list_detail li.items select {
  min-width: 6em;
}

.dtbs_list_detail li.format {
  width: 11em;
}

.dtbs_list_detail li.format select {
  max-width: 100%;
}

.dtbs_list_detail li.change {
  width: 5.5em;
}

.dtbs_list_detail li.delete {
  width: 2rem;
  text-align: center;
}

.dtbs_list_detail .change_position_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dtbs_list_detail .change_position_wrap > span {
  width: calc(50% - 4px);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.dtbs_list_detail .change_position_wrap > span:empty {
  opacity: .25;
  pointer-events: none;
}

.dtbs_list_detail .change_position_wrap > span.change_position_up {
  margin-right: auto;
}

.dtbs_list_detail .change_position_wrap > span.change_position_down {
  margin-left: auto;
}

.dtbs_list_detail input[type="text"],
.dtbs_list_detail select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.dtbs-edit-header {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 20px 24px;
}

.dtbs-edit-header_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.dtbs-edit-header_item {
  max-width: 50%;
}

.dtbs-edit-header_item dl {
  margin: 0;
}

.dtbs-edit-header_item dt {
  font-weight: bold;
}

.dtbs-edit-header_item dd {
  margin: 10px 0 0;
  white-space: nowrap;
}

.dtbs-edit-header_item:not(:last-child) dd::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left-color: currentColor;
  vertical-align: middle;
  margin: 0 .65em 0 1em;
  -webkit-transform: scale(1, 0.65);
          transform: scale(1, 0.65);
}

.dtbs-edit-contents {
  margin-top: 40px;
}

.dtbs-edit-contents_heading {
  font-size: 26px;
  font-weight: bold;
}

.dtbs-edit-contents_parents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.dtbs-edit-contents_parents dt {
  margin: 0;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.75em;
}

.dtbs-edit-contents_parents dd {
  margin: 0;
}

.dtbs-edit-contents_parents ol {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style: none;
}

.dtbs-edit-contents_parents li {
  margin: 0;
}

.dtbs-edit-contents_parents li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 0.35em;
}

.dtbs-edit-contents table {
  max-width: 700px;
  margin-top: 40px;
}

.dtbs-edit-contents table th.delete {
  white-space: nowrap;
  width: 1px;
}

.dtbs-edit-contents table td {
  vertical-align: middle;
}

.dtbs-edit-contents table td.sort {
  width: 32px;
}

.dtbs-edit-contents table td.sort span {
  display: block;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
}

.dtbs-edit-contents table td.sort span::before, .dtbs-edit-contents table td.sort span::after {
  content: "";
  width: 40%;
  height: 2px;
  background: currentColor;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: .5;
}

.dtbs-edit-contents table td.sort span::before {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.dtbs-edit-contents table td.sort span::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.dtbs-edit-contents table td.delete {
  text-align: center;
}

.dtbs-edit-contents table td input[type="text"] {
  width: 100%;
}

.dtbs-edit-contents table tfoot td {
  text-align: right;
}

.dtbs-edit-contents table tfoot button span {
  vertical-align: text-bottom;
  margin-right: 0.35em;
  position: relative;
  bottom: -0.1em;
}

@-webkit-keyframes positionMoveFixed {
  0% {
    background-color: aqua;
  }
  100% {
    background-color: #fff;
  }
}

@keyframes positionMoveFixed {
  0% {
    background-color: aqua;
  }
  100% {
    background-color: #fff;
  }
}

.dtbs_list_detail ul.moveFixed li {
  -webkit-animation: positionMoveFixed .5s ease;
          animation: positionMoveFixed .5s ease;
}

.dtbs_del_form {
  margin-top: 1em;
}

.dtbs_del_form input[type="submit"] {
  background: rgba(0, 0, 0, 0.02);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #b32d2e;
  min-height: 30px;
  padding: 0 10px;
  min-width: 4em;
  cursor: pointer;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
  border-radius: 3px;
}

.dtbs_del_form input[type="submit"]:hover {
  background-color: #b32d2e;
  color: #fff;
}

.detabess-info .detabess-visual {
  position: relative;
  background: #fff url(../images/info/common/bg_visual.png) no-repeat center/cover;
  border-radius: 30px;
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
  padding: 3% 6%;
  margin: 0 0 3em;
}

@media screen and (max-width: 1024px) {
  .detabess-info .detabess-visual {
    border-radius: 14px;
  }
}

.detabess-info .detabess-visual::before {
  content: "";
  display: block;
  padding-top: 49.45%;
}

.detabess-info .detabess-visual_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
}

.detabess-info .detabess-visual_wrap span {
  width: 100%;
  text-align: center;
}

.detabess-info .detabess-visual_wrap .version {
  margin-top: 1em;
  color: #999;
  font-size: 26px;
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  .detabess-info .detabess-visual_wrap .version {
    font-size: 18px;
  }
}

.detabess-info .detabess-visual img {
  width: 32%;
  min-width: 280px;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .detabess-info .detabess-visual img {
    min-width: 140px;
  }
}

.detabess-info .detabess-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1280px) {
  .detabess-info .detabess-container {
    display: block;
  }
}

.detabess-info .detabess-container_navi {
  width: calc(280px - 3em);
  position: -webkit-sticky;
  position: sticky;
  top: 3em;
  font-size: 16px;
  margin: 0 1em 0 3em;
  min-width: 280px;
}

@media screen and (max-width: 1280px) {
  .detabess-info .detabess-container_navi {
    width: auto;
    margin: 2em 1em;
    position: static;
  }
  .detabess-info .detabess-container_navi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.detabess-info .detabess-container_navi li {
  line-height: 1.6;
}

.detabess-info .detabess-container_navi li + li {
  margin-top: 1em;
}

@media screen and (max-width: 1280px) {
  .detabess-info .detabess-container_navi li {
    margin: .5em 1.5em 0 0;
  }
  .detabess-info .detabess-container_navi li + li {
    margin: .5em 1.5em 0 0;
  }
}

.detabess-info .detabess-container_navi li a {
  text-decoration: none;
  display: block;
  position: relative;
  padding-left: 1em;
}

.detabess-info .detabess-container_navi li a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left-color: #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: .35em;
  left: 0;
}

.detabess-info .detabess-container_contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.detabess-info .section-inner {
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
  padding: 3% 6%;
}

@media screen and (max-width: 1280px) {
  .detabess-info .section-inner {
    border-radius: 14px;
  }
}

.detabess-info .section-inner .section {
  display: block;
}

.detabess-info .section-inner .section + .section {
  margin-top: 6em;
}

.detabess-info .section-inner p {
  margin-top: 1.45em;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-inner p {
    font-size: 14px;
  }
}

.detabess-info .section-first_image {
  width: 35%;
  float: right;
  margin: 0 0 3em 3em;
  max-width: 400px;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-first_image {
    width: auto;
    float: none;
    max-width: 300px;
    margin: 0 auto 4em;
  }
}

.detabess-info .section-first_image img {
  width: 100%;
}

.detabess-info .section-first_contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.detabess-info .section-inner ul {
  margin: 1.65em 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-inner ul {
    font-size: 14px;
  }
}

.detabess-info .section-inner li {
  padding-left: 1.75em;
  position: relative;
  margin-top: 0.65em;
}

.detabess-info .section-inner li::before {
  content: "";
  position: absolute;
  width: .4em;
  height: .4em;
  top: .65em;
  left: .65em;
  background: #ccc;
  border-radius: 100%;
}

.detabess-info .section-inner ul.detabess-list-plus {
  border: 3px solid #02A7FB;
  background: rgba(2, 167, 251, 0.05);
  border-radius: 0 10px 10px 10px;
  padding: 1.4em 2em;
  margin: 3.45em 0 1.65em;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-inner ul.detabess-list-plus {
    font-size: 14px;
  }
}

.detabess-info .section-inner ul.detabess-list-plus::before {
  content: "Plus!";
  background: #02A7FB;
  border-radius: 3px 3px 0 0;
  color: #fff;
  line-height: 26px;
  padding: 0 1.2em;
  border-radius: 5px 5px 0 0;
  position: absolute;
  top: -26px;
  left: -3px;
  font-size: 16px;
  font-weight: bold;
}

.detabess-info .section-inner ul.detabess-list-plus li {
  padding-left: 1.3em;
  margin-top: 0.65em;
}

.detabess-info .section-inner ul.detabess-list-plus li::before, .detabess-info .section-inner ul.detabess-list-plus li::after {
  content: "";
  width: 3px;
  height: 12px;
  background: #02A7FB;
  position: absolute;
  left: 0;
  top: .45em;
  border-radius: 2px;
}

.detabess-info .section-inner ul.detabess-list-plus li::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.detabess-info .section-inner ul.detabess-list-check {
  background: rgba(2, 167, 251, 0.05);
  border-radius: 0 10px 10px 10px;
  padding: 1.4em 2em;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-inner ul.detabess-list-check {
    font-size: 14px;
  }
}

.detabess-info .section-inner ul.detabess-list-check li::before {
  background: none;
  width: 5px;
  height: 12px;
  border: solid #02A7FB;
  border-width: 0 3px 3px 0;
  border-radius: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: .25em;
  left: .1em;
}

.detabess-info .section-heading {
  font-size: 2.4em;
  color: #02A7FB;
  margin: 0 .8em 1em;
  padding-top: 2.8em;
  line-height: 1.5;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-heading {
    font-size: 18px;
  }
}

.detabess-info .section-heading-sub {
  font-weight: bold;
  position: relative;
  padding: .1em 0 .1em 1em;
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 1.3em;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-heading-sub {
    font-size: 16px;
  }
}

.detabess-info .section-heading-sub::before {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #02A7FB;
}

.detabess-info .section-inner .detabess-image {
  margin: 6.5% auto 8%;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .detabess-info .section-inner .detabess-image {
    margin: 6.5% auto;
    max-width: none;
  }
}

.detabess-info .detabess-image img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px -10px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px -10px;
}
/*# sourceMappingURL=detabess_admin.css.map */