@charset "UTF-8";
html {
  scroll-behavior: smooth;
  word-break: break-all; }

html,
body {
  color: #383850;
  font-family: "Hiragino Kaku Gothic ProN","\30E1\30A4\30EA\30AA", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  scroll-padding-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

a {
  cursor: pointer;
  text-decoration: none;
  transition: .2s;
  color: #383850; }
  a:hover {
    color: #383850; }
  a:focus-visible {
    outline: 2px solid #242434; }

button:focus {
  outline: none; }

button:focus-visible {
  outline: 2px solid #242434; }

h1, h2, h3, h4, h5, h6 {
  color: #383850;
  font-weight: 600;
  line-height: 1.5;
  margin: 0; }

h1 {
  font-size: 40px; }

h2 {
  font-size: 32px; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

p {
  font-size: 14px;
  margin: 0; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  ul li {
    list-style: none;
    margin: 0;
    padding: 0; }

img {
  display: block;
  height: auto;
  width: 100%; }

hr {
  border-top: 1px solid #D7D7DC;
  margin: 0; }

select {
  overflow-x: hidden; }

.forPC {
  display: block; }

@media screen and (max-width: 767px) {
  .forPC {
    display: none; } }

.forSP {
  display: none; }

@media screen and (max-width: 767px) {
  .forSP {
    display: block; } }

.forPC-table {
  display: table-cell; }

@media screen and (max-width: 767px) {
  .forPC-table {
    display: none; } }

.forSP-table {
  display: none; }

@media screen and (max-width: 767px) {
  .forSP-table {
    display: table-cell; } }

.hidden {
  display: none !important; }

.text-gray {
  color: #D7D7DC; }

.text-green {
  color: #00E0B5; }

.text-blue {
  color: #6CD0D8; }

.text-orange {
  color: #FF6A3E; }

.text-yellow {
  color: #F4E921; }

.text-pink {
  color: #FF6366; }

.text-xsmall {
  font-size: 10px; }

.text-small {
  font-size: 12px; }

.text-medium {
  font-size: 16px; }

.text-large {
  font-size: 20px; }

.text-xlarge {
  font-size: 24px; }

.text-xxlarge {
  font-size: 32px; }

.text-xxxlarge {
  font-size: 40px; }

.text-bold {
  font-weight: 600; }

.text-heavy {
  font-weight: 900; }

.bg-navy-0 {
  background: #F0F0F2; }

.bg-yellow-0 {
  background: #FDFBDA; }

.bg-pink-0 {
  background: #FFE5E6; }

.radius {
  border-radius: 4px; }

.clickable {
  cursor: pointer; }

.ws-nowrap {
  white-space: nowrap; }

.section-head {
  font-size: 26px;
  margin-bottom: 20px; }

#dashboard {
  flex-grow: 1; }

.alert {
  border-radius: 8px;
  padding: 16px; }
  .alert.alert-primary {
    background: #D5FAF3;
    border: none; }
  .alert.alert-secondary {
    background: #E7F7F9;
    border: none; }
  .alert.alert-warning {
    background: #FDFBDA;
    border: none; }
  .alert.alert-info {
    background: #F0F0F2;
    border: none; }

.link-text {
  color: #6CD0D8;
  text-decoration: underline; }

.flex-column {
  flex-direction: column; }

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFF;
  border: 1px solid #D7D7DC;
  border-radius: 4px;
  font-size: 14px; }
  .form-control::placeholder {
    color: #D7D7DC; }
  .form-control:focus {
    outline: 2px solid #242434;
    border-color: initial;
    box-shadow: initial; }
  .form-control[disabled] {
    background: #F0F0F2; }
  .form-control.error {
    background: #FFE5E6;
    border: 1px solid #FF6366; }

.form-control-plaintext {
  display: block;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.select-wrap {
  position: relative;
  display: inline-block; }
  .select-wrap select {
    -webkit-appearance: none;
    appearance: none;
    height: 32px;
    border-radius: 16px;
    padding-left: 16px;
    padding-right: 36px;
    max-width: 198px;
    border-color: #000;
    cursor: pointer;
    transition: .2s ease;
    background: #FFF;
    color: #383850; }
    .select-wrap select:hover {
      background: #F5F5F6;
      transition: .2s ease; }
    .select-wrap select:focus-visible {
      outline: 2px solid #242434; }
  .select-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none; }

.form-select-wrap {
  position: relative; }
  .form-select-wrap select {
    -webkit-appearance: none;
    appearance: none;
    height: 44px;
    border-radius: 4px;
    padding-left: 16px;
    padding-right: 36px;
    border-color: #D7D7DC;
    cursor: pointer;
    transition: .2s ease; }
    .form-select-wrap select:hover {
      background: #F0F0F0;
      transition: .2s ease; }
  .form-select-wrap::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none; }

.search-keyword {
  position: relative; }
  .search-keyword .input-wrap input {
    padding-left: 40px;
    border-color: #000; }
  .search-keyword .input-wrap::before {
    content: "";
    background-image: url(images/icon/owner/search.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 16px; }

.date-filter-content {
  border: 1px solid #242434;
  border-radius: 16px;
  height: 32px;
  display: flex;
  align-items: center; }
  .date-filter-content label {
    margin-bottom: 4px; }
  .date-filter-content input {
    height: 30px;
    border: 1px solid transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    -webkit-appearance: initial; }
    .date-filter-content input::-webkit-date-and-time-value {
      text-align: left; }

.month-filter-content {
  border: 1px solid #242434;
  border-radius: 16px;
  height: 32px;
  display: flex;
  align-items: center; }
  .month-filter-content label {
    margin-bottom: 4px; }
  .month-filter-content select {
    border-radius: 16px;
    border: none;
    background: none; }
    .month-filter-content select:hover {
      background: none; }

.border {
  border: 1px solid #D7D7DC !important; }

.border-top {
  border-top: 1px solid #D7D7DC !important; }

.border-right {
  border-right: 1px solid #D7D7DC !important; }

.border-bottom {
  border-bottom: 1px solid #D7D7DC !important; }

.border-left {
  border-left: 1px solid #D7D7DC !important; }

.border-primary {
  border-color: #00B893 !important; }

.border-blue {
  border-color: #6CD0D8 !important; }

.border-yellow {
  border-color: #F4E921 !important; }

.border-orange {
  border-color: #F4E921 !important; }

.border-pink {
  border-color: #FF6366 !important; }

.btn {
  border-radius: 8px;
  transition: .2s;
  width: max-content;
  line-height: 44px;
  height: 44px;
  min-width: 144px;
  padding: 0 16px;
  font-size: 14px;
  text-decoration: none; }
  .btn.disabled, .btn:disabled {
    background: #D7D7DC !important;
    border: 1px solid #D7D7DC !important;
    color: #FFF !important; }

.btn-default {
  background: #FFF;
  border: 1px solid #00B893;
  color: #00B893; }
  .btn-default:hover {
    background: #FFF;
    border: 1px solid #00B893;
    color: #00B893;
    opacity: .8; }

.btn-primary {
  background: #00B893;
  border: 1px solid #00B893;
  color: #FFF; }
  .btn-primary:hover {
    background: #009D7F;
    border: 1px solid #00B893;
    opacity: .8; }

.btn-cancel {
  background: #FFF;
  border: none;
  color: #888896; }
  .btn-cancel:hover {
    background: #F5F5F6; }

.btn-disabled {
  background: #D7D7DC;
  border: 1px solid #D7D7DC;
  color: #FFF;
  cursor: auto; }
  .btn-disabled:hover {
    background: #D7D7DC;
    border: 1px solid #D7D7DC;
    color: #FFF;
    opacity: 1; }
  .btn-disabled:focus {
    box-shadow: none; }
  .btn-disabled:active {
    background: #D7D7DC;
    border: 1px solid #D7D7DC;
    color: #FFF; }

.btn-blue {
  background: #6CD0D8;
  border: 1px solid #6CD0D8;
  color: #FFF; }
  .btn-blue:hover {
    background: #6CD0D8;
    border: 1px solid #6CD0D8;
    color: #FFF;
    opacity: .8; }

.btn-orange {
  background: #FF6A3E;
  border: 1px solid #FF6A3E;
  color: #FFF; }
  .btn-orange:hover {
    background: #FF6A3E;
    border: 1px solid #FF6A3E;
    color: #FFF;
    opacity: .8; }

.btn-yellow {
  background: #F4E921;
  border: 1px solid #F4E921; }
  .btn-yellow:hover {
    background: #F4E921;
    border: 1px solid #F4E921;
    opacity: .8; }

.btn-pink {
  background: #FF6366;
  border: 1px solid #FF6366;
  color: #FFF; }
  .btn-pink:hover {
    background: #FF6366;
    border: 1px solid #FF6366;
    color: #FFF;
    opacity: .8; }

.circle-button {
  height: 32px;
  width: 32px;
  border-radius: 16px;
  background: white;
  border: 1px solid #000;
  transition: .2s ease;
  padding: 0; }
  .circle-button:hover {
    background: #F5F5F6;
    transition: .2s ease; }
  .circle-button:disabled, .circle-button.disabled {
    background: #F8F8F9;
    border-color: #AFAFB9; }
  .circle-button:focus-visible {
    outline: 2px solid #242434; }
  .circle-button img {
    height: 20px;
    width: 20px;
    display: inline-block; }

.circle-button-primary {
  height: 32px;
  border-radius: 16px;
  border: none;
  background: #00B893;
  color: white;
  padding: 0 16px;
  transition: .2s ease; }
  .circle-button-primary:hover {
    background: #009D7F;
    transition: .2s ease; }
  .circle-button-primary:focus-visible {
    outline: 2px solid #80F0DA; }

.icon-text-button {
  height: 32px;
  border-radius: 16px;
  padding: 0 16px;
  background: white;
  border: 1px solid #000;
  transition: .2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  width: max-content;
  color: #383850;
  text-decoration: none; }
  .icon-text-button:hover {
    background: #F5F5F6;
    transition: .2s ease;
    color: #383850;
    text-decoration: none; }
  .icon-text-button:focus-visible {
    outline: 2px solid #242434; }
  .icon-text-button img {
    height: 20px;
    width: 20px;
    display: inline-block; }

@media screen and (max-width: 768px) {
  .icon-text-button {
    padding: 0;
    width: 32px;
    justify-content: center; }
    .icon-text-button .text {
      display: none; }
  .icon-text-button.no-ellipsis {
    padding: 0 16px 0 12px;
    width: initial; }
    .icon-text-button.no-ellipsis .text {
      display: block; } }

.text-button {
  height: 32px;
  border-radius: 16px;
  padding: 0 16px;
  background: white;
  border: 1px solid #000;
  transition: .2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap; }
  .text-button:hover {
    background: #F5F5F6;
    transition: .2s ease; }
  .text-button:focus-visible {
    outline: 2px solid #242434; }

.overflow-menu {
  position: relative; }
  .overflow-menu .overflow-menu-button {
    width: 32px;
    height: 32px;
    border: 1px solid #383850;
    border-radius: 16px;
    padding: 4px;
    cursor: pointer;
    transition: .2s ease;
    background: transparent; }
    .overflow-menu .overflow-menu-button.is-open {
      background: #F0F0F0; }
    .overflow-menu .overflow-menu-button:hover {
      background: #F5F5F6;
      transition: .2s ease; }
  .overflow-menu .overflow-menu-content {
    position: absolute;
    top: 40px;
    right: 0;
    padding: 8px 0;
    width: max-content;
    min-width: 100px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    z-index: 50;
    display: none; }
    .overflow-menu .overflow-menu-content a {
      display: flex;
      width: 100%;
      height: 40px;
      padding: 0 16px;
      align-items: center;
      justify-content: center;
      color: #383850;
      text-decoration: none;
      transition: 0.2s ease; }
      .overflow-menu .overflow-menu-content a:hover {
        background: #F0F0F0;
        transition: 0.2s ease; }
    .overflow-menu .overflow-menu-content button {
      border: none;
      cursor: pointer;
      outline: none;
      padding: 0 16px;
      appearance: none;
      display: flex;
      width: 100%;
      height: 40px;
      align-items: center;
      justify-content: center;
      color: #383850;
      text-decoration: none;
      background: #FFF;
      transition: 0.2s ease; }
      .overflow-menu .overflow-menu-content button:hover {
        background: #F0F0F0;
        transition: 0.2s ease; }

.label {
  border-radius: 4px;
  display: inline-block;
  padding: 0.2rem; }

.label-lg {
  font-size: 16px; }

.label-sm {
  font-size: 10px; }

.label-default {
  background: #FFF;
  border: 1px solid #00B893;
  color: #00B893; }

.label-primary {
  background: #00B893;
  border: 1px solid #00B893;
  color: #FFF; }

.label-disabled {
  background: #D7D7DC;
  border: 1px solid #D7D7DC;
  color: #FFF; }

.label-blue {
  background: #6CD0D8;
  border: 1px solid #6CD0D8;
  color: #FFF; }

.label-orange {
  background: #FF6A3E;
  border: 1px solid #FF6A3E;
  color: #FFF; }

.label-yellow {
  background: #F4E921;
  border: 1px solid #F4E921; }

.label-pink {
  background: #FF6366;
  border: 1px solid #FF6366;
  color: #FFF; }
  .label-pink:hover {
    background: #FF6366;
    border: 1px solid #FF6366;
    color: #FFF;
    opacity: .8; }

.status-label {
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1; }
  .status-label.active {
    background: #D5FAF3;
    border: 1px solid #00B893;
    color: #00B893; }
  .status-label.active_ready {
    background: #FFE6DF;
    border: 1px solid #FF6A3E;
    color: #FF6A3E; }
  .status-label.stop {
    background: #F0F0F2;
    border: 1px solid #D7D7DC;
    color: #AFAFB9; }
  .status-label.registered_by_admin {
    background: #E7F7F9;
    border: 1px solid #6CD0D8;
    color: #6CD0D8; }

.info-block {
  padding: 16px;
  border-radius: 8px;
  background: #E7F7F9; }
  .info-block a {
    color: #177BE0;
    text-decoration: underline;
    font-weight: bold; }

.alert-info {
  background: #E7F7F9;
  color: #383850; }
  .alert-info a {
    color: #177BE0; }

.alert-success {
  background-color: #D5FAF3;
  color: #383850; }
  .alert-success a {
    color: #00B893; }

.alert-warning {
  background-color: #FDFBDA;
  color: #383850; }
  .alert-warning a {
    color: #00B893; }

.alert-danger {
  background-color: #FFE5E6;
  color: #383850; }
  .alert-danger a {
    color: #FF6366; }

.nav-tabs {
  border-bottom: 4px solid #00B893; }
  .nav-tabs .nav-link {
    color: #00B893;
    font-size: 16px;
    font-weight: 600; }
    .nav-tabs .nav-link:hover {
      background: #D5FAF3; }
    .nav-tabs .nav-link.active {
      background: #00B893 !important;
      border-color: #00B893;
      color: #FFF; }

.tab-head {
  align-items: flex-end;
  border-bottom: 4px solid #00B893;
  display: flex; }
  .tab-head li {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #00B893;
    cursor: pointer;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem;
    text-align: center;
    transition: .2s; }
    .tab-head li:hover {
      background: #D5FAF3; }
    .tab-head li.active {
      background: #00B893;
      color: #FFF;
      cursor: auto; }
      .tab-head li.active:hover {
        background: #00B893; }

.tab-bodys .tab-detail {
  display: none; }
  .tab-bodys .tab-detail.show {
    display: block; }

@media screen and (max-width: 767px) {
  .nav-tabs .nav-link {
    font-size: 14px; }
  .tab-head li {
    font-size: 14px; } }

.list-group-item {
  border: 1px solid #D7D7DC;
  padding: 1rem; }
  .list-group-item.arrow {
    background-image: url(images/icon/follow-right.svg);
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-right: 3rem; }

.list {
  border-bottom: 1px solid #D7D7DC; }
  .list li {
    background: #FFF;
    border-bottom: 1px solid #D7D7DC;
    padding: 1rem; }
    .list li.head {
      border-bottom: 4px solid #383850;
      font-weight: 600; }
    .list li:last-child {
      border: none; }

.space-list li {
  align-items: center;
  display: flex;
  flex-wrap: wrap; }
  .space-list li .img {
    height: 60px;
    width: 60px; }
  .space-list li .detail {
    padding: 0 1rem;
    width: calc(100% - 160px); }
  .space-list li .status {
    text-align: right;
    width: 100px; }
    .space-list li .status .label {
      margin: 0.2rem 0; }
  .space-list li.active {
    background: #E7F7F9; }
  .space-list li.disabled {
    background: #F0F0F2; }
    .space-list li.disabled .detail {
      color: #383850;
      opacity: .3; }

@media screen and (max-width: 767px) {
  .space-list li .detail {
    padding: 0 0 0 1rem;
    width: calc(100% - 60px); }
    .space-list li .detail p {
      font-size: 12px; }
  .space-list li .status {
    padding-left: 75px;
    text-align: left;
    width: 100%; } }

@media screen and (max-width: 767px) {
  .scroll-list {
    margin: 0 -1rem;
    overflow-x: scroll;
    width: calc(100% + 2rem); }
    .scroll-list .list {
      min-width: 800px; } }

/**
 * ローダーのスタイル
 */
.loader > div {
  background-color: rgba(191, 191, 191, 0.3);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000; }

.modal-container {
  display: none;
  z-index: 97; }
  .modal-container .modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 99; }
  .modal-container .modal-window {
    position: fixed;
    max-width: 640px;
    width: calc(100% - 32px);
    height: auto;
    max-height: calc(100% - 32px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    overflow: auto;
    background: #FFF;
    box-shadow: 0 0 8px rgba(56, 56, 86, 0.16);
    border-radius: 8px; }
    .modal-container .modal-window .modal-content-wrap {
      display: flex;
      flex-direction: column; }
      .modal-container .modal-window .modal-content-wrap .modal-header {
        height: 60px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        position: sticky;
        top: 0;
        background: white;
        z-index: 100; }
        .modal-container .modal-window .modal-content-wrap .modal-header h2 {
          font-size: 16px;
          line-height: 1; }
        .modal-container .modal-window .modal-content-wrap .modal-header .modal-close-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 24px;
          width: 24px;
          cursor: pointer; }
      .modal-container .modal-window .modal-content-wrap .modal-body {
        padding: 20px 24px;
        flex-grow: 1; }
        .modal-container .modal-window .modal-content-wrap .modal-body h3 {
          font-size: 14px; }
      .modal-container .modal-window .modal-content-wrap .modal-footer {
        display: flex;
        justify-content: center;
        gap: 8px; }
      .modal-container .modal-window .modal-content-wrap .modal-action-button {
        padding: 0 20px 24px;
        display: flex;
        justify-content: center;
        gap: 8px; }

.modal-container.sp-filter {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 100;
  overflow: auto; }
  .modal-container.sp-filter .modal-content-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh; }
    .modal-container.sp-filter .modal-content-wrap .modal-header {
      height: 60px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      background: white; }
      .modal-container.sp-filter .modal-content-wrap .modal-header h2 {
        font-size: 16px; }
      .modal-container.sp-filter .modal-content-wrap .modal-header h4 {
        font-size: 16px;
        line-height: 1; }
      .modal-container.sp-filter .modal-content-wrap .modal-header .modal-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        width: 24px; }
    .modal-container.sp-filter .modal-content-wrap .modal-body {
      padding: 20px 24px;
      flex-grow: 1;
      padding-top: 32px; }
      .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px; }
        .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper label {
          display: block; }
        .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper .select-wrap {
          width: 100%; }
          .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper .select-wrap::after {
            top: 20px;
            border-color: #888896; }
          .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper .select-wrap select {
            width: 100% !important;
            max-width: initial;
            height: 44px;
            border-radius: 4px;
            border-color: #D7D7DC; }
        .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper .date-filter-content {
          border: none;
          border-radius: 0;
          display: grid;
          grid-template-columns: 1fr auto 1fr;
          align-items: center;
          justify-content: space-between;
          height: 40px;
          gap: 8px; }
          .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper .date-filter-content input {
            height: 40px;
            border: 1px solid #D7D7DC;
            border-radius: 4px; }
    .modal-container.sp-filter .modal-content-wrap .modal-footer {
      display: flex;
      justify-content: center;
      gap: 8px;
      position: fixed;
      bottom: 0;
      background: white;
      width: 100%; }
      .modal-container.sp-filter .modal-content-wrap .modal-footer div {
        margin: 0;
        height: 40px;
        width: 100%;
        max-width: 145px; }
        .modal-container.sp-filter .modal-content-wrap .modal-footer div button {
          width: 100%;
          height: 100%;
          border-radius: 8px;
          border: none; }
        .modal-container.sp-filter .modal-content-wrap .modal-footer div.cancel-button button {
          background: #FFF;
          color: #888896; }

@media screen and (max-width: 374.98px) {
  .modal-container.sp-filter .modal-content-wrap .modal-body .filter-wrapper .date-filter-content {
    grid-template-columns: 100%;
    gap: 4px; } }

.pagination {
  gap: 4px; }
  .pagination .page-item a, .pagination .page-item span {
    border-radius: 16px !important;
    height: 32px;
    width: max-content;
    min-width: 32px;
    display: block;
    color: #383850;
    border-color: #000;
    text-decoration: none; }
  .pagination .page-item.active .page-link {
    border: 1px solid #00B893;
    background: #D5FAF3;
    color: #009D7F;
    cursor: default; }
  .pagination .page-item.disabled .page-link {
    border: none; }
  .pagination .page-item .page-link.previous, .pagination .page-item .page-link.next {
    border: 1px solid #000; }
  .pagination .page-item .page-link:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
    box-shadow: initial; }
  .pagination .page-item .page-link:focus {
    outline: none;
    box-shadow: initial; }

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center; }
  .pagination .disabled .previous {
    background: #F8F8F9;
    border-color: #AFAFB9 !important; }
    .pagination .disabled .previous::after {
      border-top: 2px solid #AFAFB9;
      border-left: 2px solid #AFAFB9; }
  .pagination .disabled .next {
    background: #F8F8F9;
    border-color: #AFAFB9 !important; }
    .pagination .disabled .next::after {
      border-top: 2px solid #AFAFB9;
      border-left: 2px solid #AFAFB9; }
  .pagination .previous {
    position: relative; }
    .pagination .previous::after {
      content: "";
      position: absolute;
      right: 10px;
      top: 15px;
      width: 7px;
      height: 7px;
      border-top: 2px solid #000;
      border-left: 2px solid #000;
      transform: translateY(-50%) rotate(-45deg); }
    .pagination .previous:disabled::after, .pagination .previous.disabled::after {
      border-top: 2px solid #AFAFB9;
      border-left: 2px solid #AFAFB9; }
  .pagination .next {
    position: relative; }
    .pagination .next::after {
      content: "";
      position: absolute;
      right: 13px;
      top: 15px;
      width: 7px;
      height: 7px;
      border-top: 2px solid #000;
      border-left: 2px solid #000;
      transform: translateY(-50%) rotate(135deg); }
    .pagination .next:disabled::after, .pagination .next.disabled::after {
      border-top: 2px solid #AFAFB9;
      border-left: 2px solid #AFAFB9; }

@media screen and (max-width: 768px) {
  .pagination {
    justify-content: space-between !important;
    gap: 0; }
    .pagination .page-item a, .pagination .page-item span {
      height: 32px;
      width: 100%;
      min-width: initial;
      padding: 0;
      border: none;
      text-align: center;
      text-decoration: underline;
      line-height: 32px;
      white-space: nowrap; }
    .pagination .page-item.active .page-link {
      text-decoration: none;
      min-width: 32px; }
    .pagination .page-item.disabled .page-link {
      text-decoration: none; }
    .pagination .page-item:first-child a, .pagination .page-item:first-child span, .pagination .page-item:last-child a, .pagination .page-item:last-child span {
      width: 32px;
      height: 32px; }
    .pagination .page-item:first-child {
      margin-right: 8px; }
    .pagination .page-item:last-child {
      margin-left: 8px; } }

.table-wrapper {
  overflow: scroll;
  margin-bottom: 24px; }
  .table-wrapper .table {
    margin: 0; }

.table {
  margin-bottom: 24px; }
  .table thead tr th {
    border-top: 0;
    border-bottom: 0;
    white-space: normal; }
  .table tbody tr:last-of-type {
    border-bottom: 1px solid #D7D7DC; }
  .table tbody tr td {
    vertical-align: middle; }
  .table th {
    padding: 1rem;
    vertical-align: middle; }
    .table th label {
      margin: 0; }
  .table .head {
    border-bottom: 4px solid #383850; }
  .table.table-bordered {
    border: 1px solid #D7D7DC; }
    .table.table-bordered tr {
      border-bottom: 1px solid #D7D7DC; }
      .table.table-bordered tr th {
        background: #F0F0F2;
        border-left: 1px solid #D7D7DC;
        font-weight: 400;
        padding: 0.5rem; }
      .table.table-bordered tr td {
        padding: 0.5rem; }
  .table .table-sub tr {
    border-bottom: 1px solid #D7D7DC; }
    .table .table-sub tr:first-child td {
      border-top: none; }
    .table .table-sub tr:last-child {
      border-bottom: none; }
      .table .table-sub tr:last-child td {
        border-bottom: none; }
      @media screen and (max-width: 767px) {
        .table .table-sub tr:last-child td:last-child {
          border: none; } }
    .table .table-sub tr td {
      padding: 1rem; }
      .table .table-sub tr td:first-child {
        border-left: none; }
      .table .table-sub tr td:last-child {
        border-right: none;
        padding: 1rem; }
      @media screen and (max-width: 767px) {
        .table .table-sub tr td:last-child {
          border-bottom: 1px solid #D7D7DC;
          padding: 0 1rem 1rem; } }

.table-responsive {
  display: table; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      display: block; } }

@media screen and (max-width: 767px) {
  .table-wrap.table-bordered tr {
    border: none; }
    .table-wrap.table-bordered tr th {
      border: none;
      border-top: 1px solid #D7D7DC;
      border-bottom: 1px solid #D7D7DC;
      display: block;
      width: 100%; }
    .table-wrap.table-bordered tr:first-child th {
      border: none;
      border-bottom: 1px solid #D7D7DC; }
    .table-wrap.table-bordered tr td {
      border: none;
      display: block;
      width: 100%; } }

.calendar-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px; }
  .calendar-head .calendar-heading {
    font-size: 18px;
    font-weight: bold; }

.calendar-content {
  background: #FFF;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0; }
  .calendar-content th,
  .calendar-content td {
    width: auto !important; }
  .calendar-content th {
    background-color: #FFF !important;
    border: 1px solid #D7D7DC;
    font-weight: 600;
    text-align: center; }
  .calendar-content thead tr th {
    border: none;
    font-size: 14px;
    padding-bottom: 8px; }
  .calendar-content tbody tr:first-child td:first-child {
    border-radius: 8px 0 0 0;
    border-left: 1px solid #D7D7DC; }
  .calendar-content tbody tr:first-child td:last-child {
    border-radius: 0 8px 0 0;
    border-right: 1px solid #D7D7DC; }
  .calendar-content tbody tr:last-child td {
    border-bottom: 1px solid #D7D7DC; }
  .calendar-content tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px; }
  .calendar-content tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0; }
  .calendar-content tbody tr td:last-child {
    border-right: 1px solid #D7D7DC; }
  .calendar-content tbody tr td {
    padding-top: 8px;
    padding-bottom: 80px;
    color: #383850;
    background: #FFF;
    text-align: center;
    line-height: 1;
    border-left: 1px solid #D7D7DC;
    border-top: 1px solid #D7D7DC; }
    .calendar-content tbody tr td .date {
      display: block;
      font-weight: 600; }
    .calendar-content tbody tr td .price,
    .calendar-content tbody tr td .time {
      display: block;
      font-size: 12px; }
    .calendar-content tbody tr td.select-row {
      position: relative; }
      .calendar-content tbody tr td.select-row:not(.clickable) .content-wrapper {
        display: none; }
      .calendar-content tbody tr td.select-row.clickable span {
        font-size: 10px;
        writing-mode: vertical-rl;
        display: inline-block; }
      .calendar-content tbody tr td.select-row .content-wrapper {
        margin-top: 24px; }
      .calendar-content tbody tr td.select-row input[type='checkbox'] {
        pointer-events: none; }
    .calendar-content tbody tr td:not(.select-row) {
      position: relative; }
    .calendar-content tbody tr td.blank {
      background: #F8F8F9; }
    .calendar-content tbody tr td.no-rent {
      background: #F0F0F2; }
    .calendar-content tbody tr td .icon {
      margin: 0 auto;
      width: 24px; }
    .calendar-content tbody tr td.select-row {
      width: 20px !important; }

@media screen and (max-width: 767px) {
  .calendar-content {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px; }
    .calendar-content td, .calendar-content th {
      border-radius: 0 !important; } }

.lend-calendar td {
  width: 13%; }
  .lend-calendar td img {
    margin: 0 auto;
    width: 24px; }
  .lend-calendar td.select-week {
    width: 9%; }
  .lend-calendar td.select-week-blank {
    width: 9%; }

.filter label:first-child {
  min-width: 125px !important; }

.filter .select-wrap select {
  width: 154px;
  max-width: initial;
  transition: initial; }

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50; }
  header a {
    text-decoration: none; }
    header a:focus-visible {
      outline: 2px solid #FFF; }
  header .section-wrapper nav {
    background: #383850; }
    header .section-wrapper nav .nav-content-wrapper {
      max-width: 1440px;
      width: 100%;
      margin: auto;
      position: relative; }
      header .section-wrapper nav .nav-content-wrapper .logo {
        display: flex;
        width: 64px; }
      header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav .nav-title {
        align-items: center;
        border-bottom: 4px solid #383850;
        border-top: 4px solid #383850;
        box-sizing: border-box;
        color: #FFF;
        cursor: pointer;
        display: flex;
        font-size: 16px;
        padding: 1rem 1.5rem; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav .nav-title:hover {
          border-bottom: 4px solid #FFF;
          color: #FFF;
          text-decoration: none; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav .nav-title.disabled {
          color: #888896;
          cursor: default; }
          header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav .nav-title.disabled:hover {
            border-bottom: 4px solid #383850;
            color: #888896; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav .nav-title .arrow {
          font-size: 12px;
          margin-left: 0.5rem; }
      header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu {
        position: absolute;
        right: 24px;
        top: calc(100% + 12px);
        background: white;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li a {
          color: #383850; }
          header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li a.nav-title:focus-visible {
            outline: 2px solid #242434; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li.account {
          border-top: 1px solid #D7D7DC;
          padding-top: 16px; }
          header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li.account .name {
            font-weight: bold; }
          header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li.account form .logout-button {
            margin-top: 8px;
            height: 32px;
            border-radius: 16px;
            padding: 0 16px;
            background: white;
            border: 1px solid #000;
            transition: 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            color: #242434; }
            header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li.account form .logout-button:focus-visible {
              outline: 2px solid #242434; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li .banner-top {
          margin: 45px 0px; }
      header .section-wrapper nav .nav-content-wrapper .hamburger-menu {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        transition: .2s ease;
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none; }
        header .section-wrapper nav .nav-content-wrapper .hamburger-menu:hover {
          background: #242434;
          transition: .2s ease;
          cursor: pointer; }
        header .section-wrapper nav .nav-content-wrapper .hamburger-menu:focus-visible {
          outline: 2px solid #FFF; }
        header .section-wrapper nav .nav-content-wrapper .hamburger-menu img {
          width: 24px;
          height: 24px; }

@media screen and (min-width: 768px) {
  header .section-wrapper nav .nav-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 60px; }
    header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu {
      display: none; }
      header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li a {
        display: block; } }

@media screen and (max-width: 767.98px) {
  header .section-wrapper nav .nav-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 60px; }
    header .section-wrapper nav .nav-content-wrapper .section-wrapper {
      display: none;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      position: fixed;
      top: 60px;
      left: 0;
      background: white;
      padding: 32px 20px 100px;
      overflow: scroll; }
      header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav {
        flex-direction: column;
        gap: 32px; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav li a.nav-title {
          color: #383850;
          border: none;
          padding: 0;
          font-weight: bold;
          display: flex;
          align-items: center;
          height: 48px;
          margin-top: -12px;
          margin-bottom: -12px; }
          header .section-wrapper nav .nav-content-wrapper .section-wrapper .nav li a.nav-title:hover {
            border-bottom: initial;
            color: #383850;
            text-decoration: none; }
      header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu {
        position: initial;
        box-shadow: initial;
        padding: 0;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid #D7D7DC;
        border-radius: initial;
        gap: 32px; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li a {
          font-size: 16px;
          font-weight: bold;
          display: flex;
          align-items: center;
          height: 48px;
          margin-top: -12px;
          margin-bottom: -12px; }
          header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li a:hover {
            border-bottom: initial;
            color: #383850;
            text-decoration: none; }
        header .section-wrapper nav .nav-content-wrapper .section-wrapper .overflow-menu li.account {
          display: flex;
          justify-content: space-between;
          padding-top: 32px; }
    header .section-wrapper nav .nav-content-wrapper .hamburger-manu {
      width: 24px; } }

.edit header {
  background: #FFF;
  border-bottom: 1px solid #D7D7DC; }
  .edit header .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 16px;
    max-width: 1440px;
    width: 100%;
    margin: auto;
    position: relative; }
    .edit header .section-wrapper h1 {
      font-size: 16px; }
    .edit header .section-wrapper a {
      font-size: 12px;
      color: #606073;
      text-decoration: underline; }
      .edit header .section-wrapper a:focus-visible {
        outline: 2px solid black; }

#login .container {
  border-top: 8px solid #383850;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 4rem auto 0;
  max-width: 600px;
  padding: 4rem 6rem; }
  #login .container h1 {
    margin-bottom: 2rem; }
    #login .container h1 img {
      margin: 0 auto;
      max-width: 300px; }
  #login .container button {
    width: 100%; }

@media screen and (max-width: 767px) {
  #login .container {
    margin: 2rem 1rem 0;
    padding: 2rem;
    width: calc(100% - 2rem); } }

#forgot_password .container {
  border-top: 8px solid #383850;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 4rem auto 0;
  max-width: 600px;
  padding: 4rem 6rem; }
  #forgot_password .container h1 {
    margin-bottom: 2rem; }
    #forgot_password .container h1 img {
      margin: 0 auto;
      max-width: 300px; }
  #forgot_password .container button {
    width: 100%; }
  @media screen and (min-width: 768px) {
    #forgot_password .container .notice-text {
      white-space: nowrap;
      text-align: center;
      font-size: 12px;
      width: calc(100% + 12rem);
      margin-left: -6rem;
      margin-bottom: 1rem; } }

@media screen and (max-width: 767px) {
  #forgot_password .container {
    margin: 2rem 1rem 0;
    padding: 2rem;
    width: calc(100% - 2rem); } }

.parking-nav {
  border: 1px solid #D7D7DC;
  border-radius: 4px; }
  .parking-nav .nav-item a {
    border-right: 1px solid #D7D7DC;
    display: block;
    width: 100%; }
  .parking-nav .nav-item:last-child a {
    border-right: none; }
  @media screen and (max-width: 991px) {
    .parking-nav .nav-item a {
      border-bottom: 1px solid #D7D7DC; }
    .parking-nav .nav-item:nth-child(even) a {
      border-right: none; }
    .parking-nav .nav-item:nth-last-child(2) a, .parking-nav .nav-item:last-child a {
      border-bottom: none; } }

.parking-detail .space {
  background: #F0F0F2;
  border: 1px solid #D7D7DC;
  height: 400px;
  overflow-y: scroll; }

.parking-under-review-message {
  margin-bottom: 28px; }

#parking-index .content-wrapper .controller {
  display: flex;
  justify-content: space-between; }
  #parking-index .content-wrapper .controller #filter-pc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
    #parking-index .content-wrapper .controller #filter-pc .search-keyword .input-wrap input {
      border-radius: 16px;
      height: 32px; }
  #parking-index .content-wrapper .controller .csv-download {
    flex-shrink: 0; }

#parking-index .content-wrapper .aggregation {
  margin-top: 20px; }
  #parking-index .content-wrapper .aggregation .aggregation-content {
    display: flex;
    padding: 8px 16px;
    border-radius: 4px;
    background: #EBEBEE; }
    #parking-index .content-wrapper .aggregation .aggregation-content span {
      font-size: 14px; }
    #parking-index .content-wrapper .aggregation .aggregation-content .aggregation-head {
      font-weight: bold; }
    #parking-index .content-wrapper .aggregation .aggregation-content .parking {
      margin-right: 16px; }

#parking-index .content-wrapper .parking-list .sp-sort-wrap {
  margin-top: 24px; }
  #parking-index .content-wrapper .parking-list .sp-sort-wrap::after {
    right: 12px; }
  #parking-index .content-wrapper .parking-list .sp-sort-wrap select {
    border: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
    padding-left: 4px;
    margin-left: -2px;
    padding-right: 24px; }

#parking-index .content-wrapper .parking-list #parking-table {
  margin-top: 16px; }
  #parking-index .content-wrapper .parking-list #parking-table thead tr th {
    border-top: none;
    border-bottom: 1px;
    padding: 16px; }
    #parking-index .content-wrapper .parking-list #parking-table thead tr th.sort {
      position: relative;
      cursor: pointer; }
      #parking-index .content-wrapper .parking-list #parking-table thead tr th.sort:hover::before {
        background-color: #f6f6f6;
        border-radius: 10px;
        transition: .3s ease; }
    #parking-index .content-wrapper .parking-list #parking-table thead tr th.sort::before {
      content: "";
      background-image: url(images/icon/owner/sort.svg);
      background-size: cover;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 16px;
      right: 16px; }
    #parking-index .content-wrapper .parking-list #parking-table thead tr th.sort.is_sort-down::before {
      content: "";
      background-image: url(images/icon/owner/sort-down.svg);
      background-size: cover;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 16px;
      right: 16px; }
    #parking-index .content-wrapper .parking-list #parking-table thead tr th.sort.is_sort-up::before {
      content: "";
      background-image: url(images/icon/owner/sort-up.svg);
      background-size: cover;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 16px;
      right: 16px; }
  #parking-index .content-wrapper .parking-list #parking-table tbody tr {
    transition: .2s ease; }
    #parking-index .content-wrapper .parking-list #parking-table tbody tr:last-child {
      border-bottom: 1px solid #dee2e6; }
    #parking-index .content-wrapper .parking-list #parking-table tbody tr:hover {
      background: #FAFAFC;
      transition: .2s ease;
      cursor: pointer; }
    #parking-index .content-wrapper .parking-list #parking-table tbody tr td {
      padding: 16px; }
      #parking-index .content-wrapper .parking-list #parking-table tbody tr td.cell-parking-name span {
        font-weight: bold; }

#parking-index .content-wrapper .parking-list .no-parking {
  text-align: center;
  margin-top: 40px; }
  #parking-index .content-wrapper .parking-list .no-parking h2 {
    font-size: 24px; }
  #parking-index .content-wrapper .parking-list .no-parking p {
    margin-top: 12px; }

#parking-index .content-wrapper .parking-list .pagination {
  justify-content: center;
  margin-top: 24px; }

@media screen and (max-width: 768px) {
  #parking-index .content-wrapper .controller {
    gap: 8px; }
    #parking-index .content-wrapper .controller .filter {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px; }
      #parking-index .content-wrapper .controller .filter #filter-pc {
        display: block; }
  #parking-index .content-wrapper .parking-list #parking-table {
    margin-top: 16px; }
    #parking-index .content-wrapper .parking-list #parking-table thead {
      display: none; }
    #parking-index .content-wrapper .parking-list #parking-table tbody tr {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: repeat(5, auto);
      gap: 0 16px;
      border-top: 1px solid #dee2e6;
      transition: .2s ease;
      padding: 16px 20px;
      margin-left: calc(((100vw - 100%) / 2) * -1);
      margin-right: calc(((100vw - 100%) / 2) * -1); }
      #parking-index .content-wrapper .parking-list #parking-table tbody tr:last-child {
        border-bottom: 1px solid #dee2e6; }
      #parking-index .content-wrapper .parking-list #parking-table tbody tr:hover {
        background: #FAFAFC;
        transition: .2s ease;
        cursor: pointer; }
      #parking-index .content-wrapper .parking-list #parking-table tbody tr td {
        display: block;
        padding: 2px 0;
        border: none; }
        #parking-index .content-wrapper .parking-list #parking-table tbody tr td.cell-parking-name span {
          font-weight: bold; }
        #parking-index .content-wrapper .parking-list #parking-table tbody tr td.cell-owner-name, #parking-index .content-wrapper .parking-list #parking-table tbody tr td.cell-posting-count, #parking-index .content-wrapper .parking-list #parking-table tbody tr td.cell-business-hours, #parking-index .content-wrapper .parking-list #parking-table tbody tr td.cell-address {
          grid-column: 2 / 3; }
  #parking-index .content-wrapper .parking-list .pagination {
    margin-top: 24px; }
  #parking-index .content-wrapper .banner-top {
    margin-bottom: 56px; } }

#parking-detail .content-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px; }
  #parking-detail .content-head .section-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0; }
    #parking-detail .content-head .section-head .status-label {
      display: inline-block;
      line-height: 1; }

#parking-detail .content-wrapper .parking-detail {
  display: grid;
  grid-template-columns: auto minmax(auto, 1080px);
  justify-content: space-between;
  gap: 16px; }
  #parking-detail .content-wrapper .parking-detail .tab-menu .tab-btn-wrapper .tab-sticky {
    display: flex;
    flex-direction: column;
    gap: 16px;
    top: 100px;
    position: sticky; }
    #parking-detail .content-wrapper .parking-detail .tab-menu .tab-btn-wrapper .tab-sticky .tab-btn {
      background-color: transparent;
      border: none;
      padding: 0;
      appearance: none;
      width: 160px;
      height: 24px;
      padding-left: 12px;
      font-size: 16px;
      color: #383850;
      cursor: pointer;
      border-left: 4px solid transparent;
      border-radius: 2px;
      transition: all 0.2s ease 0s;
      text-align: left; }
      #parking-detail .content-wrapper .parking-detail .tab-menu .tab-btn-wrapper .tab-sticky .tab-btn.active {
        font-weight: bold;
        border-left: 4px solid #383850;
        border-radius: 2px;
        transition: all 0.2s ease 0s; }
  #parking-detail .content-wrapper .parking-detail .tab-body {
    width: 100%;
    max-width: 1080px; }
    #parking-detail .content-wrapper .parking-detail .tab-body h2 {
      font-size: 18px;
      margin-bottom: 24px; }
    #parking-detail .content-wrapper .parking-detail .tab-body h3 {
      font-size: 14px;
      font-weight: initial;
      color: #888896;
      margin-bottom: 8px; }
    #parking-detail .content-wrapper .parking-detail .tab-body .tab-content {
      display: none; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.active {
        display: block; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content .detailed-item-wrapper .detailed-item {
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid #D7D7DC; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .parking-photo .photo-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        padding-bottom: 24px;
        margin-bottom: 48px;
        border-bottom: 1px solid #D7D7DC; }
        #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .parking-photo .photo-wrapper .thumbnail {
          width: 200px;
          cursor: pointer;
          background-color: transparent;
          border: none;
          padding: 0;
          appearance: none;
          text-align: left; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .parking-photo .photo-wrapper .thumbnail img {
            border: 1px solid #D7D7DC;
            border-radius: 4px;
            margin-bottom: 8px; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .basic-info {
        margin-bottom: 48px; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper {
        display: grid;
        grid-template-columns: repeat(5, minmax(auto, 200px));
        justify-content: space-between;
        width: 100%;
        gap: 20px; }
        #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper .space-item {
          display: flex;
          flex-direction: column;
          gap: 8px; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper .space-item .space-head .status {
            display: inline-block; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper .space-item .space-body figure {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px; }
            #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper .space-item .space-body figure img {
              border-radius: 4px;
              border: 1px solid #D7D7DC; }
            #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper .space-item .space-body figure figcaption {
              text-align: center; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td {
        padding-bottom: 54px; }
        #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td .date {
          font-size: 16px;
          padding-top: 24px; }
        #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.blank {
          background: #FAFAFC; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.blank span {
            color: #D7D7DC; }
        #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.available-day {
          padding-bottom: 24px;
          background-color: #D5FAF3; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.available-day input[type="checkbox"] {
            width: 18px;
            height: 18px; }
            #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.available-day input[type="checkbox"]:checked::before {
              top: 4px;
              left: 2px; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.available-day .date {
            padding-top: 0;
            margin: 4px auto; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-parking-schedule .calendar .calendar-content tbody tr td.available-day .available-space-count {
            display: inline-block;
            padding: 6px 0;
            font-size: 12px; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-fee .calendar {
        margin-top: 48px; }
        #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-fee .calendar .calendar-content {
          table-layout: fixed; }
          #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-fee .calendar .calendar-content tbody tr td {
            height: 80px;
            padding-bottom: 8px;
            vertical-align: top; }
            #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-fee .calendar .calendar-content tbody tr td .date {
              margin-bottom: 12px; }
            #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-fee .calendar .calendar-content tbody tr td .price {
              font-size: 14px; }

@media screen and (max-width: 768px) {
  #parking-detail .content-head {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 16px 8px;
    margin-bottom: 24px; }
    #parking-detail .content-head .section-head {
      grid-column: 1 / 3;
      font-size: 22px; }
    #parking-detail .content-head button.icon-text-button {
      padding: 0 16px;
      width: auto; }
      #parking-detail .content-head button.icon-text-button .text {
        display: block; }
  #parking-detail .content-wrapper .parking-detail {
    grid-template-columns: 1fr;
    gap: 32px; }
    #parking-detail .content-wrapper .parking-detail .tab-menu {
      margin-left: calc(((100vw - 100%) / 2) * -1);
      margin-right: calc(((100vw - 100%) / 2) * -1);
      padding: 0 20px;
      border-bottom: 1px solid #D7D7DC;
      overflow-x: scroll; }
      #parking-detail .content-wrapper .parking-detail .tab-menu .tab-btn-wrapper .tab-sticky {
        flex-direction: initial;
        gap: 20px; }
        #parking-detail .content-wrapper .parking-detail .tab-menu .tab-btn-wrapper .tab-sticky .tab-btn {
          font-size: 14px;
          width: 64px;
          min-width: 64px;
          height: auto;
          border-left: none !important;
          padding-left: 0;
          padding-bottom: 12px;
          text-align: center;
          border-bottom: 4px solid transparent; }
          #parking-detail .content-wrapper .parking-detail .tab-menu .tab-btn-wrapper .tab-sticky .tab-btn.active {
            border-bottom: 4px solid #383850; }
    #parking-detail .content-wrapper .parking-detail .tab-body .tab-content .detailed-item-wrapper .detailed-item {
      margin-bottom: 30px; }
    #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .parking-photo .photo-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-bottom: 16px;
      margin-bottom: 56px; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .parking-photo .photo-wrapper .thumbnail {
        width: auto; }
    #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-detail .basic-info {
      margin-bottom: 56px; }
    #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 24px 12px; }
      #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-space .space-item-wrapper .space-item .space-head .status-label {
        padding: 3px 6px; }
    #parking-detail .content-wrapper .parking-detail .tab-body .tab-content.tab-fee .calendar {
      margin-top: 40px; } }

#parking-info .parking-content {
  width: 100%; }
  #parking-info .parking-content table tr th {
    width: 150px; }
  #parking-info .parking-content table tr td .time select {
    max-width: 150px; }

@media screen and (max-width: 767px) {
  #parking-info .parking-content table tr th {
    display: block;
    width: 100%; }
  #parking-info .parking-content table tr td {
    display: block;
    width: 100%; } }

#parking-space .parking-content .select-action {
  border: 1px solid #D7D7DC; }

#parking-space .parking-content .select-all {
  color: #007bff; }
  #parking-space .parking-content .select-all:hover {
    text-decoration: underline; }

#parking-space .parking-content .space-list {
  background: #F0F0F2;
  border: 1px solid #D7D7DC;
  border-radius: 4px;
  height: 400px;
  overflow-y: scroll; }

#parking-space-confirm .container table th {
  width: 150px; }

#parking-space-confirm .container button {
  max-width: 300px;
  width: 100%; }

#parking-schedule .parking-content table tr th {
  width: 150px; }

#parking-schedule .parking-content table tr td .photos {
  display: flex;
  flex-wrap: wrap; }
  #parking-schedule .parking-content table tr td .photos li {
    margin-right: 0.5rem;
    max-width: 100px; }

#parking-schedule .parking-content .tab-detail {
  border: 1px solid #D7D7DC; }

#parking-schedule .parking-content .calendar_setting .description {
  display: flex; }
  #parking-schedule .parking-content .calendar_setting .description .text {
    padding-right: 1rem;
    width: 60%; }
  #parking-schedule .parking-content .calendar_setting .description .img {
    width: 40%; }

#parking-schedule .parking-content .calendar_setting .detail .title {
  align-items: center;
  display: flex;
  justify-content: space-between; }
  #parking-schedule .parking-content .calendar_setting .detail .title .select-month {
    color: #007bff;
    cursor: pointer; }
    #parking-schedule .parking-content .calendar_setting .detail .title .select-month:hover {
      text-decoration: underline; }

#parking-schedule .parking-content .time {
  align-items: center;
  display: flex; }
  #parking-schedule .parking-content .time select {
    max-width: 150px; }
  #parking-schedule .parking-content .time div {
    margin: 0 0.5rem; }

@media screen and (max-width: 767px) {
  #parking-schedule .parking-content .calendar_setting .description {
    display: block; }
    #parking-schedule .parking-content .calendar_setting .description .text {
      padding-right: 0;
      width: 100%; }
    #parking-schedule .parking-content .calendar_setting .description .img {
      width: 100%; } }

#parking-price .parking-content .price-change {
  border: 1px solid #D7D7DC; }
  #parking-price .parking-content .price-change .price-status {
    display: flex; }
    #parking-price .parking-content .price-change .price-status .day,
    #parking-price .parking-content .price-change .price-status .time {
      width: 50%; }
      #parking-price .parking-content .price-change .price-status .day .input,
      #parking-price .parking-content .price-change .price-status .time .input {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem; }
        #parking-price .parking-content .price-change .price-status .day .input input,
        #parking-price .parking-content .price-change .price-status .time .input input {
          margin-left: 1rem;
          margin-right: 0.5rem;
          width: 150px; }
      #parking-price .parking-content .price-change .price-status .day p,
      #parking-price .parking-content .price-change .price-status .time p {
        text-align: center; }

#parking-price .parking-content .price-setting {
  border: 1px solid #D7D7DC; }

#parking-price .parking-content .price-schedule {
  border: 1px solid #D7D7DC; }

#parking-price .parking-content .btn {
  max-width: 300px;
  width: 100%; }

@media screen and (max-width: 767px) {
  #parking-price .parking-content .price-change .price-status {
    display: block; }
    #parking-price .parking-content .price-change .price-status .day,
    #parking-price .parking-content .price-change .price-status .time {
      margin-bottom: 1rem;
      width: 100%; }
      #parking-price .parking-content .price-change .price-status .day .input,
      #parking-price .parking-content .price-change .price-status .time .input {
        margin-bottom: 0.5rem; }
        #parking-price .parking-content .price-change .price-status .day .input input,
        #parking-price .parking-content .price-change .price-status .time .input input {
          margin-left: 1rem;
          margin-right: 0.5rem;
          width: 100px; }
      #parking-price .parking-content .price-change .price-status .day p,
      #parking-price .parking-content .price-change .price-status .time p {
        text-align: center; } }

#reservation .content-wrapper .controller {
  display: flex;
  justify-content: space-between; }
  #reservation .content-wrapper .controller .filter #filter-pc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
    #reservation .content-wrapper .controller .filter #filter-pc .search-keyword .input-wrap input {
      border-radius: 16px;
      height: 32px;
      padding-right: 24px; }
  #reservation .content-wrapper .controller .csv-download {
    flex-shrink: 0; }

#reservation .content-wrapper .aggregation {
  margin-top: 20px; }
  #reservation .content-wrapper .aggregation .aggregation-content {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    border-radius: 4px;
    background: #EBEBEE;
    gap: 8px; }
    #reservation .content-wrapper .aggregation .aggregation-content .aggregation-item-wrapper {
      display: flex;
      gap: 24px; }
    #reservation .content-wrapper .aggregation .aggregation-content .note {
      font-size: 14px; }
      #reservation .content-wrapper .aggregation .aggregation-content .note a {
        color: #00B893;
        text-decoration: underline; }
    #reservation .content-wrapper .aggregation .aggregation-content span {
      font-size: 14px; }
    #reservation .content-wrapper .aggregation .aggregation-content .aggregation-head {
      font-weight: bold; }
    #reservation .content-wrapper .aggregation .aggregation-content .parking {
      margin-right: 16px; }

#reservation .content-wrapper .reservation-list .table tbody tr td {
  vertical-align: text-bottom; }
  #reservation .content-wrapper .reservation-list .table tbody tr td .use-start-date-wrapper {
    display: inline; }
    #reservation .content-wrapper .reservation-list .table tbody tr td .use-start-date-wrapper .use-start-date {
      border-radius: 16px;
      height: 32px;
      width: 32px;
      display: inline-block;
      text-align: center;
      line-height: 32px;
      font-weight: bold;
      font-size: 16px;
      margin-left: 8px;
      margin-right: -4px; }
      #reservation .content-wrapper .reservation-list .table tbody tr td .use-start-date-wrapper .use-start-date.today {
        background: #00B893;
        color: #FFF; }

#reservation .content-wrapper .reservation-list .table tbody tr .use-start {
  width: 13%;
  min-width: 180px; }

#reservation .content-wrapper .reservation-list .table tbody tr .use-detail {
  width: 11%; }

#reservation .content-wrapper .reservation-list .table tbody tr .name,
#reservation .content-wrapper .reservation-list .table tbody tr .address {
  width: 12%; }

#reservation .content-wrapper .reservation-list .table tbody tr .space {
  width: 10%; }

#reservation .content-wrapper .reservation-list .table tbody tr .id {
  width: 8%; }

#reservation .content-wrapper .reservation-list .table tbody tr .car {
  width: 12%; }

#reservation .content-wrapper .reservation-list .table tbody tr .sales {
  width: 10%; }

#reservation .content-wrapper .reservation-list .table tbody tr .reservation-time {
  width: 10%; }

#reservation .content-wrapper .reservation-list .table tbody tr .sp-td-head {
  display: none; }

#reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .name, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .address, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .space, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .id, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .car, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .sales, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .reservation-time, #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .use-time {
  color: #AFAFB9; }

#reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .use-detail .use-time {
  display: block;
  text-decoration: line-through; }

#reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .use-detail .canceled-time {
  word-break: keep-all;
  font-size: 12px;
  font-weight: bold;
  color: #D73839;
  line-height: 16px;
  display: block; }

#reservation .content-wrapper .reservation-list .table tbody hr {
  display: none; }

#reservation .content-wrapper .reservation-list .no-reservation {
  text-align: center;
  margin-top: 40px; }
  #reservation .content-wrapper .reservation-list .no-reservation h2 {
    font-size: 24px; }
  #reservation .content-wrapper .reservation-list .no-reservation p {
    margin-top: 12px; }

@media screen and (max-width: 768px) {
  #reservation .banner-top {
    margin-bottom: 56px; }
  #reservation .content-wrapper .controller {
    gap: 8px; }
    #reservation .content-wrapper .controller .filter {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px; }
      #reservation .content-wrapper .controller .filter #filter-pc {
        display: block; }
  #reservation .content-wrapper .aggregation .aggregation-content .aggregation-item-wrapper {
    flex-direction: column;
    gap: 0; }
  #reservation .content-wrapper .reservation-list .table {
    margin-top: 16px; }
    #reservation .content-wrapper .reservation-list .table thead {
      display: none; }
    #reservation .content-wrapper .reservation-list .table tbody tr {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      grid-template-rows: auto;
      gap: 0 16px;
      border-top: 1px solid #D7D7DC;
      transition: .2s ease;
      padding: 16px 20px;
      margin-left: calc(((100vw - 100%) / 2) * -1);
      margin-right: calc(((100vw - 100%) / 2) * -1);
      align-items: start; }
      #reservation .content-wrapper .reservation-list .table tbody tr:last-child {
        border-bottom: 1px solid #D7D7DC; }
      #reservation .content-wrapper .reservation-list .table tbody tr .use-start, #reservation .content-wrapper .reservation-list .table tbody tr .reservation-time, #reservation .content-wrapper .reservation-list .table tbody tr .sales, #reservation .content-wrapper .reservation-list .table tbody tr .car, #reservation .content-wrapper .reservation-list .table tbody tr .id, #reservation .content-wrapper .reservation-list .table tbody tr .space, #reservation .content-wrapper .reservation-list .table tbody tr .name, #reservation .content-wrapper .reservation-list .table tbody tr .address, #reservation .content-wrapper .reservation-list .table tbody tr .use-detail {
        width: initial; }
      #reservation .content-wrapper .reservation-list .table tbody tr.month-exists td.space {
        grid-row: 4 / 5; }
      #reservation .content-wrapper .reservation-list .table tbody tr.month-exists td.id {
        grid-row: 2 / 3; }
      #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist {
        margin-left: 60px;
        padding-left: 0;
        grid-template-columns: 1fr auto; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .use-start, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .reservation-time, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .sales, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .car, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .space, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .name, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .address, #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist .use-detail {
          grid-column: 1 / 2; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.use-detail {
          grid-column: 1 / 2;
          font-weight: bold; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.name {
          grid-column: 1 / 3; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.address {
          grid-column: 1 / 3; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.space {
          grid-column: 1 / 3;
          grid-row: 3 / 4; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.id {
          grid-column: 2 / 3;
          grid-row: 1 / 2; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.car {
          grid-column: 1 / 3; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.sales {
          grid-column: 1 / 3; }
        #reservation .content-wrapper .reservation-list .table tbody tr.month-dose-not-exist td.reservation-time {
          grid-column: 1 / 3; }
      #reservation .content-wrapper .reservation-list .table tbody tr td {
        display: block;
        padding: 2px 0;
        border: none; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.use-start {
          grid-column: 1 / 3;
          display: flex;
          flex-direction: column;
          justify-content: center;
          position: relative; }
          #reservation .content-wrapper .reservation-list .table tbody tr td.use-start span {
            display: block; }
          #reservation .content-wrapper .reservation-list .table tbody tr td.use-start .use-start-month {
            font-weight: bold;
            margin-bottom: 8px; }
          #reservation .content-wrapper .reservation-list .table tbody tr td.use-start .use-start-date-wrapper {
            position: absolute;
            top: 26px;
            left: -4px;
            display: flex;
            flex-direction: column;
            justify-content: center; }
            #reservation .content-wrapper .reservation-list .table tbody tr td.use-start .use-start-date-wrapper .use-start-date {
              margin: auto;
              margin-top: 8px;
              margin-bottom: 4px; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.use-detail {
          grid-column: 2 / 3;
          font-weight: bold;
          font-size: 16px; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.name {
          grid-column: 2 / 4;
          margin-top: 8px; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.address {
          grid-column: 2 / 4; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.space {
          grid-column: 2 / 4; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.id {
          grid-column: 3 / 4;
          grid-row: 1 / 2; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.car {
          grid-column: 2 / 4;
          margin: 8px 0;
          font-weight: bold; }
          #reservation .content-wrapper .reservation-list .table tbody tr td.car span {
            display: block;
            color: #00B893; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.sales {
          grid-column: 2 / 4; }
          #reservation .content-wrapper .reservation-list .table tbody tr td.sales br {
            display: none; }
        #reservation .content-wrapper .reservation-list .table tbody tr td.reservation-time {
          grid-column: 2 / 4; }
        #reservation .content-wrapper .reservation-list .table tbody tr td .sp-td-head {
          display: inline-block; }
      #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .use-detail .canceled-time {
        position: absolute; }
      #reservation .content-wrapper .reservation-list .table tbody tr.canceled-reservation .name {
        margin-top: 24px; }
    #reservation .content-wrapper .reservation-list .table tbody hr {
      display: block;
      margin-left: calc((100vw - 100%) / 2 * -1);
      margin-right: calc((100vw - 100%) / 2 * -1); }
  #reservation .content-wrapper .reservation-list .pagination {
    margin-top: 24px; } }

#payment .section-head-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px 24px;
  flex-wrap: wrap; }
  #payment .section-head-wrapper .section-head {
    margin: 0; }
  #payment .section-head-wrapper .modal-btn {
    cursor: pointer;
    color: #00B893;
    text-decoration: underline; }

#payment .content-wrapper .controller {
  display: flex;
  justify-content: space-between; }
  #payment .content-wrapper .controller .filter #filter-pc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
  #payment .content-wrapper .controller .filter #filter-sp .month-filter-wrapper {
    display: flex;
    gap: 8px;
    align-items: center; }

#payment .content-wrapper .payment-list {
  margin-top: 16px; }
  #payment .content-wrapper .payment-list h4 {
    margin-top: 40px;
    font-size: 24px; }
  #payment .content-wrapper .payment-list .table tbody tr.head {
    border: none; }
    #payment .content-wrapper .payment-list .table tbody tr.head th {
      border-top: none;
      border-bottom: 1px;
      padding: 16px; }
  #payment .content-wrapper .payment-list .table tbody hr {
    display: none; }

#payment .table tbody tr .buttons {
  width: 32px;
  height: 100%;
  vertical-align: middle; }

@media screen and (max-width: 767px) {
  #payment .banner-top {
    margin-bottom: 56px; }
  #payment .table tbody {
    display: block;
    width: 100%; }
    #payment .table tbody tr {
      display: grid;
      grid-template-columns: 1fr auto;
      border-top: 1px solid #D7D7DC;
      margin-left: -20px;
      margin-right: -20px;
      padding: 0 20px; }
      #payment .table tbody tr.head {
        grid-column: 1 / 2;
        display: none; }
      #payment .table tbody tr .target {
        grid-column: 1 / 2;
        order: 0;
        padding: 16px 0 0 0;
        width: 100%;
        border: none; }
      #payment .table tbody tr .owner {
        grid-column: 1 / 2;
        order: 1;
        border: none;
        padding: 0;
        margin-bottom: 12px; }
      #payment .table tbody tr .payment {
        grid-column: 1 / 2;
        border: none;
        font-size: 16px;
        font-weight: 600;
        order: 2;
        padding: 0;
        width: 100%; }
      #payment .table tbody tr .carry-after {
        grid-column: 1 / 2;
        border: none;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1rem;
        order: 3;
        padding: 0;
        width: 100%; }
      #payment .table tbody tr .carry-bofore {
        grid-column: 1 / 2;
        border: none;
        order: 4;
        padding: 0;
        width: 100%; }
      #payment .table tbody tr .sales {
        grid-column: 1 / 2;
        border: none;
        order: 5;
        padding: 0;
        width: 100%; }
      #payment .table tbody tr .use {
        grid-column: 1 / 2;
        border: none;
        order: 6;
        padding: 0 0 16px;
        width: 100%; }
      #payment .table tbody tr .buttons {
        grid-column: 2 / 3;
        grid-row: 1 / 8;
        border: none;
        order: 7;
        padding: 1rem 0;
        width: 100%; } }

#modal_payment p.indent {
  padding-left: 1em;
  margin-bottom: 1em; }

#modal_payment .alert a {
  color: #00B893;
  text-decoration: underline;
  font-weight: bold; }

#user .section-head-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; }
  #user .section-head-wrapper h1 {
    margin: 0; }

#user table th.buttons,
#user table td.buttons {
  width: 32px; }

@media screen and (max-width: 767px) {
  #user table thead {
    display: none; }
  #user table tbody {
    width: 100%;
    display: block; }
    #user table tbody tr {
      display: grid;
      grid-template-columns: 1fr auto;
      border-top: 1px solid #D7D7DC;
      padding: 16px 20px;
      margin-left: calc((100vw - 100%) / 2 * -1);
      margin-right: calc((100vw - 100%) / 2 * -1); }
      #user table tbody tr td {
        padding: 0;
        border: none; }
        #user table tbody tr td.username {
          grid-column: 1 / 2;
          grid-row: 1 / 2;
          font-weight: bold;
          white-space: normal;
          margin-right: 16px; }
        #user table tbody tr td.owner {
          grid-column: 1 / 3;
          grid-row: 2 / 3;
          margin-bottom: 12px; }
        #user table tbody tr td.user-permission {
          grid-column: 1 / 3;
          grid-row: 3 / 4;
          margin-bottom: 12px; }
        #user table tbody tr td.email-address {
          grid-column: 1 / 3;
          grid-row: 4 / 5; }
        #user table tbody tr td.buttons {
          grid-column: 2 / 3;
          grid-row: 1 / 5; }
  #user table th.buttons,
  #user table td.buttons {
    width: 32px; } }

@media screen and (max-width: 374px) {
  #user .icon-text-button {
    width: 32px !important;
    padding: 0 !important; }
    #user .icon-text-button .text {
      display: none !important; } }

.edit #user-edit form .form-content-wrapper .input-items, .edit #user-registration form .form-content-wrapper .input-items {
  margin-top: 32px; }

#bank {
  max-width: 860px;
  margin: auto; }
  #bank .content-head {
    display: grid;
    grid-template-columns: 1fr auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px; }
    #bank .content-head h1 {
      margin: 0; }
  #bank .content-wrapper .bank-account h2 {
    font-size: 18px;
    margin-bottom: 24px; }
  #bank .content-wrapper .bank-account h3 {
    font-size: 14px;
    font-weight: initial;
    color: #888896;
    margin-bottom: 8px; }
  #bank .content-wrapper .bank-account .detailed-item-wrapper .detailed-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #D7D7DC; }

.edit #bank .input-items {
  margin-top: 32px; }

.edit #bank .checkbox {
  margin-top: 12px; }

#organization {
  max-width: 860px;
  margin: auto; }
  #organization .content-head {
    display: grid;
    grid-template-columns: 1fr auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px; }
    #organization .content-head h1 {
      margin: 0; }
  #organization .content-wrapper .bank-account h2 {
    font-size: 18px;
    margin-bottom: 24px; }
  #organization .content-wrapper .bank-account h3 {
    font-size: 14px;
    font-weight: initial;
    color: #888896;
    margin-bottom: 8px; }
  #organization .content-wrapper .bank-account .detailed-item-wrapper .detailed-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #D7D7DC; }

.edit #organization .input-items {
  margin-top: 32px; }

.edit #organization .checkbox {
  margin-top: 12px; }

.edit #organization label {
  display: flex;
  align-items: center; }

.edit #organization .info-block-head {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  gap: 2px;
  margin-bottom: 8px; }
  .edit #organization .info-block-head img {
    width: 16px;
    height: 16px; }

#change_password .container table th {
  width: 250px; }

#change_password .container button {
  max-width: 300px;
  width: 100%; }

.parking-under-review-message {
  margin-bottom: 28px; }

#dashboard .all-parking-link, #dashboard .all-reservation-link {
  text-decoration: underline; }

#dashboard .section-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 32px 40px; }
  #dashboard .section-wrapper .section-head {
    font-size: 22px; }
  #dashboard .section-wrapper .banner-top {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 56px; }
    #dashboard .section-wrapper .banner-top .ownermode-lp .ownermode-lp-pc {
      display: block;
      width: 672px; }
  #dashboard .section-wrapper .today-reservation {
    margin-bottom: 56px; }
    #dashboard .section-wrapper .today-reservation .today-reservation-content {
      display: grid;
      grid-template-columns: auto 1fr auto;
      grid-template-rows: auto auto;
      gap: 12px 0; }
      #dashboard .section-wrapper .today-reservation .today-reservation-content .all-reservation-link-wrapper {
        padding-right: 24px;
        display: flex;
        align-items: center;
        justify-content: right; }
      #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        grid-column: 1 / 4; }
        #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card {
          padding: 16px;
          border: 1px solid #D7D7DC;
          border-radius: 8px;
          display: grid;
          grid-template-columns: 1fr auto;
          grid-template-rows: repeat(6, auto); }
          #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .time {
            font-size: 20px;
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            margin-bottom: 12px; }
          #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .id {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            margin-left: auto;
            margin-top: 2px;
            margin-bottom: auto; }
          #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .car {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
            font-weight: bold; }
          #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .number {
            grid-column: 1 / 3;
            grid-row: 3 / 4;
            font-weight: bold;
            color: #00B893; }
          #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .comment {
            grid-row: 4 / 5; }
          #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .parking-info {
            grid-column: 1 / 3;
            grid-row: 5 / 6;
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto;
            gap: 0 8px;
            margin-top: 12px; }
            #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .parking-info .photo {
              grid-column: 1 / 2;
              grid-row: 1 / 4;
              width: 48px;
              height: 48px;
              border-radius: 24px;
              overflow: hidden;
              margin: 0; }
              #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .parking-info .photo img {
                object-fit: cover;
                height: 100%;
                width: 100%; }
            #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .parking-info .organization_name {
              grid-column: 2 / 3;
              grid-row: 1 / 2;
              font-weight: bold;
              font-size: 12px;
              line-height: 1; }
            #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .parking-info .name {
              grid-column: 2 / 3;
              grid-row: 2 / 3; }
            #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .reservation-card .parking-info .address {
              grid-column: 2 / 3;
              grid-row: 3 / 4;
              color: #606073;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
              font-size: 12px;
              line-height: 1; }
        #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper .no-reservation {
          width: 100%;
          height: 178px;
          border-radius: 8px;
          background: #F0F0F0;
          grid-column: 1 / 5;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center; }
  #dashboard .section-wrapper .aggregation {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
    #dashboard .section-wrapper .aggregation .section-head {
      margin-bottom: 0; }
    #dashboard .section-wrapper .aggregation .all-parking-link-wrapper .all-parking-link {
      font-size: 14px; }
    #dashboard .section-wrapper .aggregation .aggregation-content {
      grid-column: 1 / 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px; }
      #dashboard .section-wrapper .aggregation .aggregation-content > div {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto 1fr;
        gap: 20px 24px;
        border: 1px solid #D7D7DC;
        border-radius: 4px;
        padding: 20px 20px 16px; }
        #dashboard .section-wrapper .aggregation .aggregation-content > div .title {
          grid-row: 1 / 2;
          grid-column: 1 / 5; }
        #dashboard .section-wrapper .aggregation .aggregation-content > div .aggregation-head {
          font-size: 16px; }
        #dashboard .section-wrapper .aggregation .aggregation-content > div span {
          margin-left: 0; }
        #dashboard .section-wrapper .aggregation .aggregation-content > div .total, #dashboard .section-wrapper .aggregation .aggregation-content > div .active, #dashboard .section-wrapper .aggregation .aggregation-content > div .stop {
          border-right: 1px solid #D7D7DC;
          margin-right: -12px; }

@media screen and (max-width: 1440px) {
  #dashboard .section-wrapper {
    max-width: 752px; }
    #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto; }
    #dashboard .section-wrapper .aggregation .aggregation-content {
      grid-template-columns: 1fr; } }

@media screen and (max-width: 768px) {
  #dashboard .section-wrapper {
    max-width: 560px;
    padding: 32px 20px; }
    #dashboard .section-wrapper .banner-top {
      margin-top: 0px; }
      #dashboard .section-wrapper .banner-top .ownermode-lp .ownermode-lp-pc {
        display: none; }
    #dashboard .section-wrapper .today-reservation .today-reservation-content {
      grid-template-columns: 1fr;
      grid-template-rows: initial; }
      #dashboard .section-wrapper .today-reservation .today-reservation-content .parking-filtering .select-wrap {
        display: inline-block; }
      #dashboard .section-wrapper .today-reservation .today-reservation-content .all-reservation-link-wrapper {
        margin-top: 20px;
        padding-right: 0;
        justify-content: center; }
      #dashboard .section-wrapper .today-reservation .today-reservation-content .pagination {
        margin-top: 12px;
        grid-row: 3 / 4;
        justify-content: center; }
      #dashboard .section-wrapper .today-reservation .today-reservation-content .card-wrapper {
        grid-template-columns: 1fr;
        grid-column: initial;
        grid-row: 2 / 3; }
    #dashboard .section-wrapper .aggregation {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto; }
      #dashboard .section-wrapper .aggregation .all-parking-link-wrapper {
        grid-row: 3/4;
        width: 100%;
        text-align: center; }
      #dashboard .section-wrapper .aggregation .aggregation-content {
        grid-column: initial; }
        #dashboard .section-wrapper .aggregation .aggregation-content > div {
          grid-template-columns: 1fr;
          grid-template-rows: initial; }
          #dashboard .section-wrapper .aggregation .aggregation-content > div .title {
            grid-row: initial;
            grid-column: initial; }
          #dashboard .section-wrapper .aggregation .aggregation-content > div .total, #dashboard .section-wrapper .aggregation .aggregation-content > div .active, #dashboard .section-wrapper .aggregation .aggregation-content > div .stop {
            border-right: none;
            margin-right: 0;
            border-bottom: 1px solid #D7D7DC;
            padding-bottom: 12px; } }

#setting {
  max-width: 860px;
  margin: auto; }
  #setting .setting-item-wrapper .setting-item {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D7D7DC; }
    #setting .setting-item-wrapper .setting-item h2 {
      font-size: 18px; }

#opt_in_out .input-items .input-heading {
  margin-bottom: 16px; }

#opt_in_out .input-items .radio-wrapper {
  margin-bottom: 12px; }

#error .title {
  margin: 0 auto;
  max-width: 300px;
  width: 100%; }

#error .img {
  margin: 0 auto;
  width: 200px; }
  #error .img img {
    width: 100%; }

.badge, .parking-status, .space-status {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color .15s; }
  a.badge, a.parking-status, a.space-status {
    text-decoration: none; }
  .badge.badge-pill, .badge-pill.parking-status, .badge-pill.space-status {
    border-radius: 1rem; }
  .badge:empty, .parking-status:empty, .space-status:empty {
    display: none; }
  .badge.badge-default, .badge-default.parking-status, .badge-default.space-status {
    background: #FFF;
    color: #00B893; }
  .badge.badge-primary, .badge-primary.parking-status, .badge-primary.space-status {
    background: #00B893;
    color: #FFF; }
  .badge.badge-warning, .badge-warning.parking-status, .badge-warning.space-status {
    background: #F4E921;
    color: #383850; }
  .badge.badge-disabled, .badge-disabled.parking-status, .badge-disabled.space-status {
    background: #D7D7DC;
    color: #FFF; }
  .badge.badge-blue, .badge-blue.parking-status, .badge-blue.space-status {
    background: #6CD0D8;
    color: #FFF; }
  .badge.badge-orange, .badge-orange.parking-status, .badge-orange.space-status {
    background: #FF6A3E;
    color: #FFF; }
  .badge.badge-yellow, .badge-yellow.parking-status, .badge-yellow.space-status {
    background: #F4E921; }
  .badge.badge-pink, .badge-pink.parking-status, .badge-pink.space-status {
    background: #FF6366;
    color: #FFF; }

.parking-status.parking-status-active {
  background: none;
  border: 1px solid #00B893;
  color: #00B893; }

.parking-status.parking-status-active_ready {
  background: none;
  border: 1px solid #FF6A3E;
  color: #FF6A3E; }

.parking-status.parking-status-stop {
  background: none;
  border: 1px solid #D7D7DC;
  color: #D7D7DC; }

.parking-status.parking-status-waiting_upload {
  background: none;
  border: 1px solid #FF6366;
  color: #FF6366; }

.parking-status.parking-status-waiting_review {
  background: none;
  border: 1px solid #6CD0D8;
  color: #6CD0D8; }

.parking-status.parking-status-waiting_schedule {
  background: none;
  border: 1px solid #FF6366;
  color: #FF6366; }

.parking-status.parking-status-waiting_upload_suspended {
  background: none;
  border: 1px solid #FF6366;
  color: #FF6366; }

.parking-status.parking-status-waiting_review_suspended {
  background: none;
  border: 1px solid #6CD0D8;
  color: #6CD0D8; }

.parking-status.parking-status-waiting_schedule_suspended {
  background: none;
  border: 1px solid #FF6366;
  color: #FF6366; }

.parking-status.parking-status-registered_by_admin {
  background: none;
  border: 1px solid #6CD0D8;
  color: #6CD0D8; }

.parking-status.parking-status-disabled {
  background: none;
  border: 1px solid #D7D7DC;
  color: #D7D7DC; }

.space-status.space-status-active {
  background: none;
  border: 1px solid #00B893;
  color: #00B893; }

.space-status.space-status-active_ready {
  background: none;
  border: 1px solid #FF6A3E;
  color: #FF6A3E; }

.space-status.space-status-stop {
  background: none;
  border: 1px solid #D7D7DC;
  color: #D7D7DC; }

.space-status.space-status-waiting_upload {
  background: none;
  border: 1px solid #FF6366;
  color: #FF6366; }

.space-status.space-status-waiting_review {
  background: none;
  border: 1px solid #6CD0D8;
  color: #6CD0D8; }

.space-status.space-status-waiting_schedule {
  background: none;
  border: 1px solid #FF6366;
  color: #FF6366; }

.space-status.space-status-registered_by_admin {
  background: none;
  border: 1px solid #6CD0D8;
  color: #6CD0D8; }

.space-status.space-status-disabled {
  background: none;
  border: 1px solid #D7D7DC;
  color: #D7D7DC; }

.font-weight-bold {
  font-weight: 600 !important; }

.clickable.active {
  background: #D5FAF3 !important; }

.disabled {
  color: #D7D7DC !important; }

.aggregation {
  font-size: 16px; }
  .aggregation .title {
    font-weight: 600; }
  .aggregation .total span,
  .aggregation .subtotal span {
    font-size: 28px;
    margin-right: 4px; }

footer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px; }
  footer p {
    font-size: 12px;
    color: #999;
    text-align: center; }

@media screen and (max-width: 768px) {
  .layout-container {
    padding: 16px 20px; } }

/* レイアウト */
.layout-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 40px;
  flex-grow: 1; }

@media screen and (max-width: 768px) {
  .layout-container {
    padding: 32px 20px; } }

.edit {
  background: #FAFAFC; }
  .edit > .layout-container {
    max-width: 720px; }
    .edit > .layout-container .parking-edit {
      margin-bottom: 24px; }
      .edit > .layout-container .parking-edit .parking-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 8px;
        overflow: hidden; }
        .edit > .layout-container .parking-edit .parking-nav li {
          height: 44px;
          background: #FFF;
          border-right: 1px solid #D7D7DC; }
          .edit > .layout-container .parking-edit .parking-nav li:last-child {
            border: none; }
          .edit > .layout-container .parking-edit .parking-nav li:hover {
            background: #D5FAF3; }
          .edit > .layout-container .parking-edit .parking-nav li a {
            border: none;
            height: 100%;
            padding: 0 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #383850; }
    .edit > .layout-container .form-content-wrapper {
      background: #FFF;
      padding: 0 24px 24px;
      border: 1px solid #D7D7DC;
      border-radius: 8px;
      margin-bottom: 24px; }
      .edit > .layout-container .form-content-wrapper .form-heading {
        font-weight: bold;
        margin-top: 24px;
        margin-bottom: 16px; }
      .edit > .layout-container .form-content-wrapper .form-heading {
        margin-top: 48px; }
      .edit > .layout-container .form-content-wrapper > :first-child {
        margin-top: 24px !important; }
      .edit > .layout-container .form-content-wrapper .radio-wrapper .radio-button label {
        font-weight: initial;
        margin: 0; }
      .edit > .layout-container .form-content-wrapper .calendar {
        margin-top: 48px; }
        .edit > .layout-container .form-content-wrapper .calendar .calendar-content tbody tr td {
          padding-bottom: 64px; }
          .edit > .layout-container .form-content-wrapper .calendar .calendar-content tbody tr td.active::after {
            bottom: 16px; }
          .edit > .layout-container .form-content-wrapper .calendar .calendar-content tbody tr td.active:first-child::after {
            bottom: 28px; }
      .edit > .layout-container .form-content-wrapper .space-item-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px; }
        .edit > .layout-container .form-content-wrapper .space-item-wrapper .space-item {
          margin: 0;
          cursor: pointer; }
          .edit > .layout-container .form-content-wrapper .space-item-wrapper .space-item .space-head {
            margin-bottom: 12px; }
            .edit > .layout-container .form-content-wrapper .space-item-wrapper .space-item .space-head span {
              vertical-align: top; }
          .edit > .layout-container .form-content-wrapper .space-item-wrapper .space-item .space-body figure {
            overflow: hidden;
            border-radius: 4px;
            border: 1px solid #D7D7DC; }
      .edit > .layout-container .form-content-wrapper .input-items {
        display: flex;
        flex-direction: column;
        gap: 24px; }
      .edit > .layout-container .form-content-wrapper .radio-button-container > .form-heading {
        margin-top: 0;
        margin-bottom: 8px;
        font-weight: initial; }
      .edit > .layout-container .form-content-wrapper .radio-button-container .radio-button-background {
        padding: 20px;
        background: #FAFAFC;
        border-radius: 8px; }
        .edit > .layout-container .form-content-wrapper .radio-button-container .radio-button-background .form-heading {
          margin-top: 20px; }
          .edit > .layout-container .form-content-wrapper .radio-button-container .radio-button-background .form-heading:first-child {
            margin-top: 0; }
    .edit > .layout-container .form-button-wrapper {
      display: flex;
      justify-content: center; }
    .edit > .layout-container .daysTypeForm {
      display: none; }
  .edit .info-block {
    margin-bottom: 12px; }

body.edit-basic .edit-basic, body.edit-spaces .edit-spaces, body.edit-rend .edit-rend, body.edit-price .edit-price {
  background: #D5FAF3 !important; }
  body.edit-basic .edit-basic a, body.edit-spaces .edit-spaces a, body.edit-rend .edit-rend a, body.edit-price .edit-price a {
    color: #00B893 !important;
    font-weight: bold; }

body.edit-rend > .layout-container {
  padding-bottom: 64px; }
  body.edit-rend > .layout-container .form-content-wrapper {
    position: relative; }
    body.edit-rend > .layout-container .form-content-wrapper .form-button-wrapper button {
      position: absolute;
      bottom: -68px;
      left: 50%;
      transform: translateX(-50%); }
    body.edit-rend > .layout-container .form-content-wrapper .warning-reservation-exists {
      background-color: #FDFBD3;
      padding: 16px;
      margin: 16px 0;
      border-radius: 4px; }
      body.edit-rend > .layout-container .form-content-wrapper .warning-reservation-exists p {
        font-size: 14px; }
      body.edit-rend > .layout-container .form-content-wrapper .warning-reservation-exists .title {
        display: flex;
        align-items: center;
        font-weight: bold; }
        body.edit-rend > .layout-container .form-content-wrapper .warning-reservation-exists .title img {
          display: inline-block;
          width: 17px;
          height: 17px;
          margin-right: 4px; }
    body.edit-rend > .layout-container .form-content-wrapper .reserved-label {
      display: inline-block;
      justify-content: center;
      align-items: center;
      width: 65px;
      text-align: center;
      font-size: 10px;
      font-weight: bold;
      background-color: #FDFBD3;
      line-height: 14px; }
    body.edit-rend > .layout-container .form-content-wrapper .calendar {
      margin-top: 0; }
      body.edit-rend > .layout-container .form-content-wrapper .calendar .info-block {
        margin: 24px 0; }
        body.edit-rend > .layout-container .form-content-wrapper .calendar .info-block .modal-btn {
          color: #007bff;
          cursor: pointer;
          text-decoration: underline; }
      body.edit-rend > .layout-container .form-content-wrapper .calendar .footnote-block {
        margin: 24px 0; }
        body.edit-rend > .layout-container .form-content-wrapper .calendar .footnote-block .content-wrapper {
          display: flex;
          align-items: center; }
          body.edit-rend > .layout-container .form-content-wrapper .calendar .footnote-block .content-wrapper .label {
            white-space: nowrap;
            margin-right: 0.5em;
            flex-shrink: 0; }
            body.edit-rend > .layout-container .form-content-wrapper .calendar .footnote-block .content-wrapper .label .reserved-label {
              width: 60px; }
          body.edit-rend > .layout-container .form-content-wrapper .calendar .footnote-block .content-wrapper .value {
            word-break: break-word;
            overflow-wrap: anywhere;
            flex: 1; }
          body.edit-rend > .layout-container .form-content-wrapper .calendar .footnote-block .content-wrapper p {
            font-size: 12px; }
      body.edit-rend > .layout-container .form-content-wrapper .calendar .calendar-head-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        position: relative; }
        body.edit-rend > .layout-container .form-content-wrapper .calendar .calendar-head-wrapper .calendar-head {
          margin: 0; }
        body.edit-rend > .layout-container .form-content-wrapper .calendar .calendar-head-wrapper button {
          position: absolute;
          right: 0;
          text-decoration: underline;
          color: #383850; }

body.edit-rend #modal_help_calendar .img01 {
  max-width: 288px;
  margin: auto;
  margin-top: 12px;
  margin-bottom: 32px; }

body.edit-rend .dailyRendCalendar table tbody {
  table-layout: fixed; }
  body.edit-rend .dailyRendCalendar table tbody td {
    vertical-align: top;
    height: 90px;
    margin-top: 8px;
    padding-top: 6px;
    padding-bottom: 20px !important; }
    body.edit-rend .dailyRendCalendar table tbody td input[type="checkbox"] {
      width: 18px;
      height: 18px; }
      body.edit-rend .dailyRendCalendar table tbody td input[type="checkbox"]:checked::before {
        top: 4px;
        left: 2px; }
    body.edit-rend .dailyRendCalendar table tbody td .reserved-label {
      justify-content: center;
      align-items: center;
      width: 80%;
      right: 0;
      left: 0; }
    body.edit-rend .dailyRendCalendar table tbody td .date {
      margin: 4px 0 6px;
      font-size: 18px; }
    body.edit-rend .dailyRendCalendar table tbody td.blank {
      background: #FAFAFC; }
      body.edit-rend .dailyRendCalendar table tbody td.blank span {
        color: #D7D7DC; }
      body.edit-rend .dailyRendCalendar table tbody td.blank .checkbox-placeholder {
        margin-bottom: 24px;
        display: block; }
    body.edit-rend .dailyRendCalendar table tbody td:not(.reserved) .reserved-label {
      display: none; }
    body.edit-rend .dailyRendCalendar table tbody td.reserved {
      position: relative; }
      body.edit-rend .dailyRendCalendar table tbody td.reserved .reserved-label {
        display: flex;
        margin: 0 auto;
        width: 80%;
        max-width: 65px; }
      body.edit-rend .dailyRendCalendar table tbody td.reserved .date {
        font-weight: 900; }

body.edit-rend .dailyRendCalendar table .col-select-week {
  width: 20px; }

body.edit-rend .dailyRendCalendar table .col-select-date {
  width: 14.285%; }

body.edit-price > .layout-container .form-content-wrapper .input-text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 16px; }

body.edit-price > .layout-container .form-content-wrapper .radio-wrapper {
  margin-top: 16px; }

body.edit-spaces > .layout-container .form-content-wrapper table tbody tr td.active {
  position: relative; }
  body.edit-spaces > .layout-container .form-content-wrapper table tbody tr td.active::after {
    content: "";
    background: url(images/icon/checkmark-green.svg);
    position: absolute;
    bottom: 24px;
    left: calc(50% - 16px);
    width: 32px;
    height: 32px;
    background-size: cover; }

@media screen and (max-width: 767px) {
  .edit > .layout-container .parking-edit .parking-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    overflow: hidden; }
    .edit > .layout-container .parking-edit .parking-nav li:nth-child(1) {
      border-right: 1px solid #D7D7DC;
      border-bottom: 1px solid #D7D7DC; }
    .edit > .layout-container .parking-edit .parking-nav li:nth-child(2) {
      border-right: none;
      border-bottom: 1px solid #D7D7DC; }
    .edit > .layout-container .parking-edit .parking-nav li:nth-child(3) {
      border-right: 1px solid #D7D7DC;
      border-bottom: none; }
    .edit > .layout-container .parking-edit .parking-nav li:nth-child(4) {
      border-right: none;
      border-bottom: none; }
  .edit > .layout-container .calendar-content {
    width: 100%;
    margin-left: initial;
    margin-right: initial; }
    .edit > .layout-container .calendar-content tbody tr:first-child td:first-child {
      border-radius: 8px 0 0 0 !important;
      border-left: 1px solid #D7D7DC; }
    .edit > .layout-container .calendar-content tbody tr:first-child td:last-child {
      border-radius: 0 8px 0 0 !important;
      border-right: 1px solid #D7D7DC; }
    .edit > .layout-container .calendar-content tbody tr:last-child td {
      border-bottom: 1px solid #D7D7DC; }
    .edit > .layout-container .calendar-content tbody tr:last-child td:first-child {
      border-radius: 0 0 0 8px !important; }
    .edit > .layout-container .calendar-content tbody tr:last-child td:last-child {
      border-radius: 0 0 8px 0 !important; }
  body.edit-rend > .layout-container .form-content-wrapper .calendar-head-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; }
    body.edit-rend > .layout-container .form-content-wrapper .calendar-head-wrapper .calendar-head {
      margin: 0; }
    body.edit-rend > .layout-container .form-content-wrapper .calendar-head-wrapper button {
      position: initial !important;
      margin-top: 8px;
      margin-left: auto;
      padding: 0;
      text-align: right; }
  body.edit-rend #modal_help_calendar .img02 {
    max-width: 375px;
    margin: auto; } }

@media screen and (max-width: 560px) {
  .edit {
    background: #FFF; }
    .edit > .layout-container {
      padding: 0 0 32px; }
      .edit > .layout-container .parking-edit {
        margin-top: 24px;
        margin-bottom: 8px;
        padding: 0 20px; }
      .edit > .layout-container .form-content-wrapper {
        border-radius: 0;
        border: none;
        margin-bottom: 0; }
        .edit > .layout-container .form-content-wrapper .form-heading {
          margin-top: 32px; }
        .edit > .layout-container .form-content-wrapper .calendar-content {
          width: 100vw;
          margin-left: -24px;
          margin-right: -24px; }
          .edit > .layout-container .form-content-wrapper .calendar-content tbody tr:first-child td:first-child {
            border-radius: 0 !important; }
          .edit > .layout-container .form-content-wrapper .calendar-content tbody tr:first-child td:last-child {
            border-radius: 0 !important; }
          .edit > .layout-container .form-content-wrapper .calendar-content tbody tr:last-child td:first-child {
            border-radius: 0 !important; }
          .edit > .layout-container .form-content-wrapper .calendar-content tbody tr:last-child td:last-child {
            border-radius: 0 !important; }
      .edit > .layout-container .space-item-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px; }
  body.edit-price > .layout-container .form-content-wrapper .input-text-wrapper {
    grid-template-columns: 1fr; } }

@media screen and (max-width: 374px) {
  .edit > .layout-container .space-item-wrapper {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px; } }

.radio-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px; }
  .radio-wrapper .radio-button input {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0; }
    .radio-wrapper .radio-button input:focus-visible + label::before {
      outline: 2px solid #000;
      outline-offset: 2px; }
  .radio-wrapper .radio-button label {
    position: relative;
    cursor: pointer;
    padding-left: 28px; }
  .radio-wrapper .radio-button label::before,
  .radio-wrapper .radio-button label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%; }
  .radio-wrapper .radio-button label::before {
    background-color: #FFF;
    border: 1px solid #D7D7DC;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 0; }
  .radio-wrapper .radio-button label::after {
    background-color: #00B893;
    border-radius: 50%;
    opacity: 0;
    width: 12px;
    height: 12px;
    left: 4px; }
  .radio-wrapper .radio-button input:checked + label::before {
    border: 2px solid #00B893; }
  .radio-wrapper .radio-button input:checked + label::after {
    opacity: 1; }

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  position: relative;
  border: 1px solid #D7D7DC;
  border-radius: 4px;
  width: 20px;
  height: 20px; }

input[type="checkbox"]:checked {
  background: #00B893;
  border-color: #00B893; }

input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  display: inline-block;
  width: 12px;
  height: 6px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-45deg); }

.checkbox-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px; }

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px; }
  .checkbox input[type=checkbox] {
    background: #FFF; }
  .checkbox input[type=checkbox]:checked {
    background: #00B893; }
  .checkbox label {
    font-weight: initial;
    cursor: pointer;
    margin: 0; }

.input-text-wrapper .input-text {
  display: flex;
  flex-direction: column;
  position: relative; }
  .input-text-wrapper .input-text input {
    height: 44px;
    border-radius: 4px;
    border: 1px solid #D7D7DC;
    padding: 0 16px; }
    .input-text-wrapper .input-text input.input-text-price {
      padding-right: 40px; }
  .input-text-wrapper .input-text .input-text-unit {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 44px;
    display: flex;
    align-items: center;
    margin-right: 16px; }

#help li.list-group-item:first-child {
  background: #f7f7f7; }

#help li.list-group-item a {
  text-decoration: underline;
  font-weight: bold; }

#reward-up-campaign-modal {
  display: none; }

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@media screen and (max-width: 768px) {
  #reward-up-campaign-modal {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 50;
    display: none; }
    #reward-up-campaign-modal.close {
      display: none; }
    #reward-up-campaign-modal.open {
      display: block;
      animation-name: fadeIn;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      opacity: 0; }
    #reward-up-campaign-modal > .campaign-modal-background {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center; }
      #reward-up-campaign-modal > .campaign-modal-background > .campaign-modal-content {
        max-height: 600px;
        max-width: 400px;
        width: 85%;
        background-color: white;
        box-sizing: border-box;
        border-radius: 8px; }
        #reward-up-campaign-modal > .campaign-modal-background > .campaign-modal-content > .campaign-image {
          display: block;
          border-radius: 8px 8px 0 0; }
        #reward-up-campaign-modal > .campaign-modal-background > .campaign-modal-content > .btn-box {
          width: 100%;
          padding: 12px 0px;
          display: flex;
          justify-content: center;
          font-size: 16px;
          font-weight: bold; }
          #reward-up-campaign-modal > .campaign-modal-background > .campaign-modal-content > .btn-box > .campaign-modal-cancel {
            cursor: pointer;
            color: #00B893;
            background-color: #FFF;
            text-align: center;
            padding: 10px 0px;
            border: 2px solid #00B893;
            border-radius: 4px;
            min-width: 130px;
            margin-right: 12px; }
          #reward-up-campaign-modal > .campaign-modal-background > .campaign-modal-content > .btn-box > .campaign-modal-open {
            text-decoration: none;
            display: block;
            color: #FFF;
            text-align: center;
            background-color: #00B893;
            border-radius: 4px;
            min-width: 130px;
            padding: 10px 0px; } }

.banner-content .ownermode-banner-sp {
  display: none; }

@media screen and (max-width: 768px) {
  .banner-content .ownermode-banner-sp {
    display: block; } }
