/* -------------------------------------------------------
   mixin
------------------------------------------------------- */
#field_prefecture_id {
  width: 50%;
  margin: 0 50% 1rem 0;
}

#title {
  width: 15%;
}


.post-type-city .editor-styles-wrapper {
  padding: 10px;
}
.post-type-city input:not([type=checkbox], [type=button]) {
  width: 40%;
  height: 20px;
  margin-bottom: 10px;
}
.post-type-city textarea {
  width: 90%;
  margin-bottom: 10px;
}
.post-type-city .mediaWrap .media {
  margin-bottom: 10px;
  width: 100%;
}
.post-type-city .mediaWrap .media input {
  width: 80px;
  height: 30px;
}
.post-type-city .mediaWrap .media .media_img {
  width: 200px;
  height: auto;
}
.post-type-city .mediaWrap .media .media_img img {
  object-fit: cover;
}
.post-type-city .link_elem {
  margin-bottom: 5px;
}
.post-type-city .js-click-delete-button {
  margin-bottom: 10px;
}

.c-checkboxWrap {
  display: inline-block;
}

/* -------------------------------------------------------
   margin
------------------------------------------------------- */
.mb-150 {
  margin-bottom: 150px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

/* -------------------------------------------------------
   position
------------------------------------------------------- */
.u-absCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.u-absTop {
  top: 35%;
}

.u-left--78 {
  left: -78px;
}

.u-right--70 {
  right: -70px;
}

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

/*# sourceMappingURL=mycssadmin.css.map */

.accordionTitle {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}

.accordionTitle::after {
    content: '▼';
    position: absolute;
    left: 10px;
    transition: transform 0.3s ease;
}

.accordionTitle.active::after {
    transform: rotate(180deg);
}

.accordionContent {
    display: none;
}

