@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-image: url(/img/background.jpg);
  background-repeat: repeat;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  color: #4f4f4f;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
  color: #4f4f4f;
}

a, a:hover, a:visited {
  color: #4f4f4f;
}

a {
  text-decoration: none;
}

input[type=text], input[type=number], input[type=tel], input[type=email], input[type=password], input[type=date], textarea {
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  border: none;
  border: #dfdfdf solid 1px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3490196078);
  color: #464646;
  font-size: 14px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input[type=file] {
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 0;
  color: #464646;
  font-size: 14px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input[type=text].old {
  width: 100px;
}

input[type=text].hasDatepicker {
  width: 200px;
}

select {
  box-sizing: border-box;
  padding: 12px 50px 12px 12px;
  border: none;
  border: #e0e0e0 solid 1px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3490196078);
  background-image: url(../images/common/arrow_down.svg);
  background-position: top 50% right 10px;
  background-repeat: no-repeat;
  color: #464646;
  font-size: 14px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
select.times {
  display: none;
}
select.times.show {
  display: inline-block;
}
select.times_sat {
  display: none;
}
select.times_sat.show {
  display: inline-block;
}

input[type=submit] {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 260px;
  height: 60px;
  outline: 0;
  border: none;
  border-radius: 0;
  background-color: #363636;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.add, .submit {
  background-color: #313131;
  color: #f3f3f3;
}

.button.edit {
  background-color: #2287b8;
  color: #f3f3f3;
}

.back, .logout {
  background-color: #666666;
  color: #ffffff;
}

.send {
  background-color: #ff9800;
  color: #ffffff;
}

.delete {
  border: #dfdfdf solid 1px !important;
  background-color: transparent;
}

.enable {
  border: 1px solid #c3e6cb;
  background-color: #d4edda;
}

.disable {
  border: #dfdfdf solid 1px;
  background-color: rgba(217, 213, 213, 0.3411764706);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 40px;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
}

.display-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 34px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .display-status {
    height: 26px;
  }
}

.flash-wrap {
  width: 100%;
}
.flash-wrap .message {
  margin: 0 0 10px;
  padding: 12px;
  border-radius: 0;
  text-align: left;
  font-size: 13px;
}
.flash-wrap .message.success {
  position: fixed;
  top: 40px;
  right: -400px;
  padding: 12px 40px;
  border: 1px solid #c3e6cb;
  background-color: #d4edda;
  text-align: center;
  transition: 0.5s cubic-bezier(0.84, 0.39, 0.33, 1);
}
@media screen and (max-width: 767px) {
  .flash-wrap .message.success {
    top: 10px;
  }
}
.flash-wrap .message.success.on {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .flash-wrap .message.success.on {
    right: 10px;
  }
}
.flash-wrap .message.error {
  border: #dfdfdf solid 1px;
  background-color: rgba(217, 213, 213, 0.3411764706);
}
.flash-wrap .message.hidden {
  display: none;
}

.body-wrap {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  width: 100%;
  height: 100svh;
}
#login .login_wrapper {
  position: relative;
  padding: 70px 40px 50px;
  max-width: 406px;
  width: 100%;
  border: #dfdfdf solid 1px;
}
@media screen and (max-width: 767px) {
  #login .login_wrapper {
    padding: 0;
    border: none;
  }
}
#login .login_wrapper .login_title {
  position: absolute;
  top: -17px;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #login .login_wrapper .login_title {
    position: static;
    margin: 0 0 20px;
  }
}
#login .login_wrapper .login_title .login_logo {
  padding: 0 20px;
  background-image: url(/img/background.jpg);
  background-repeat: repeat;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  #login .login_wrapper .login_title .login_logo {
    padding: 0 0 20px;
    padding: 0;
  }
}
#login .login_wrapper .login_title h1 {
  padding: 0 20px;
  background-image: url(/img/background.jpg);
  background-repeat: repeat;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #login .login_wrapper .login_title h1 {
    margin: 0 0 0 20px;
    padding: 0;
    font-weight: 700;
    font-size: 12px;
  }
}
#login .login_wrapper .form-warp {
  margin: 0 auto;
}
#login .login_wrapper .form-warp dl {
  margin: 0 0 14px;
  line-height: 1.8em;
}
#login .login_wrapper .form-warp dl dt {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 12px;
}
#login .login_wrapper .form-warp dl dd {
  margin: 0;
  padding: 0;
}
#login .login_wrapper .form-warp .login-form-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 0;
}
#login .login_wrapper .form-warp .login-form-control p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8em;
}
#login .login_wrapper .form-warp .login-form-control button:nth-child(n+2) {
  margin-left: 10px;
}

.page_wrapper {
  margin: 0 auto;
  padding: 50px;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_wrapper {
    padding: 0 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .page_wrapper.admin {
    padding: 0 30px 80px;
  }
}

header.header_menu {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  header.header_menu {
    align-items: center;
    justify-content: space-between;
    margin: 0 -30px 30px;
    padding: 0 20px;
    height: 60px;
  }
}
header.header_menu .logo {
  margin: 0 80px 0 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  header.header_menu .logo {
    margin: 0;
  }
  header.header_menu .logo img {
    width: auto;
    height: 28px;
  }
}
header.header_menu .menu-wrap {
  margin: 0;
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap.admin {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 50px;
    border-top: #d8d8d8 solid 1px;
    background-color: #e5e5e5;
    background-image: url(/img/background.jpg);
    background-repeat: repeat;
  }
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap.admin .menu-content {
    background-color: #e5e5e5;
    gap: 0;
    mix-blend-mode: multiply;
  }
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap.admin .menu-content li {
    width: 50%;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap.admin .menu-content li:first-child {
    border-right: #d8d8d8 solid 1px;
  }
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap.admin .menu-content li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
  }
}
header.header_menu .menu-wrap .menu-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  gap: 30px;
}
header.header_menu .menu-wrap .menu-content li {
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  header.header_menu .menu-wrap .menu-content li {
    font-size: 13px;
  }
}
header.header_menu .user-control {
  margin: 0 0 0 auto;
  text-align: right;
  font-weight: 500;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  header.header_menu .user-control {
    /*display:flex;
    align-items:center;
    justify-content:space-between;*/
    margin: 0;
  }
}
header.header_menu .user-control .user-name {
  margin: 0 0 5px;
}
@media screen and (max-width: 767px) {
  header.header_menu .user-control .user-name {
    overflow: hidden;
    /*margin:0 10px 0 0;*/
    width: calc(100vw - 256px);
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

footer {
  padding: 50px 0 0;
}
footer p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 11px;
}

main .content-wrap {
  position: relative;
}

.page_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 60px;
  padding: 0;
  border-bottom: #dfdfdf solid 1px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .page_title {
    margin: 0 0 40px;
  }
}
.page_title .page-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 -1px;
  width: 200px;
  height: 70px;
  border-top: #dfdfdf solid 1px;
  border-right: #dfdfdf solid 1px;
  border-left: #dfdfdf solid 1px;
  background-image: url(/img/background.jpg);
  background-repeat: repeat;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .page_title .page-header {
    width: 160px;
    height: 60px;
    font-weight: 700;
  }
}
.page_title a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 50px;
  border: none;
  border-radius: 3px;
  background-color: #0687ba;
  color: #f8faf7;
  font-size: 13px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_title a {
    width: 110px;
  }
}

.block-header {
  font-size: 1.15em;
}

.user-search-block {
  margin: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .user-search-block {
    overflow: hidden;
    padding: 0 20px 20px;
    height: 60px;
    border: #dfdfdf solid 1px;
    transition: height 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .user-search-block.js-active {
    height: 440px; /* 必要に応じて調整してください */
  }
  .user-search-block.js-active h2::before {
    transform: rotate(90deg);
    transform-origin: 50% 50%;
  }
  .user-search-block.js-active h2::after {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
  }
}
.user-search-block h2 {
  position: relative;
  margin: 0 0 10px;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .user-search-block h2 {
    padding: 20px 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .user-search-block h2::before {
    position: absolute;
    top: 50%;
    right: 6px;
    margin-top: -6px;
    width: 2px;
    height: 14px;
    background-color: #000000;
    content: "";
    transition: 0.4s ease;
  }
}
@media screen and (max-width: 767px) {
  .user-search-block h2::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 2px;
    background-color: #000000;
    content: "";
    transition: 0.4s ease;
  }
}
.user-search-block .search-form-warp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
.user-search-block .search-form-warp dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: calc(50% - 5px);
}
@media screen and (max-width: 1023px) {
  .user-search-block .search-form-warp dl {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .user-search-block .search-form-warp dl {
    align-items: flex-start;
    flex-direction: column;
  }
}
.user-search-block .search-form-warp dl dt {
  margin: 0;
  padding: 0;
  width: 110px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .user-search-block .search-form-warp dl dt {
    margin: 0 0 5px;
    font-weight: 700;
    font-size: 11px;
  }
}
.user-search-block .search-form-warp dl dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 110px);
}
@media screen and (max-width: 767px) {
  .user-search-block .search-form-warp dl dd {
    width: 100%;
  }
}
.user-search-block .search-form-warp dl dd .radio-select {
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  height: 43px;
  border: #dfdfdf solid 1px;
  background-color: rgba(255, 255, 255, 0.3490196078);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .user-search-block .search-form-warp dl dd .radio-select {
    padding: 12px 0;
    border: none;
    background-color: transparent;
    font-size: 13px;
  }
}
.user-search-block .search-form-warp dl dd .radio-select label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 10px 0 0;
}
.user-search-block .search-form-warp dl dd .radio-select label input[type=radio] {
  margin: 0 5px 0 0;
}
.user-search-block .search-form-warp .search-form-control {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .user-search-block .search-form-warp .search-form-control {
    justify-content: center;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .user-search-block .search-form-warp .search-form-control .button {
    width: 100px;
  }
}

.search-block {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 50px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .search-block {
    overflow: hidden;
    padding: 0 20px 20px;
    height: 60px;
    border: #dfdfdf solid 1px;
    transition: height 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .search-block.js-active {
    height: 402px; /* 必要に応じて調整してください */
  }
  .search-block.js-active h2::before {
    transform: rotate(90deg);
    transform-origin: 50% 50%;
  }
  .search-block.js-active h2::after {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
  }
}
.search-block h2 {
  position: relative;
  margin: 0;
  padding: 0;
  width: 70px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .search-block h2 {
    padding: 20px 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .search-block h2::before {
    position: absolute;
    top: 50%;
    right: 6px;
    margin-top: -6px;
    width: 2px;
    height: 14px;
    background-color: #000000;
    content: "";
    transition: 0.4s ease;
  }
}
@media screen and (max-width: 767px) {
  .search-block h2::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 2px;
    background-color: #000000;
    content: "";
    transition: 0.4s ease;
  }
}
.search-block input[type=text], .search-block input[type=date] {
  padding: 0 10px;
  height: 34px;
}
@media screen and (max-width: 767px) {
  .search-block input[type=text], .search-block input[type=date] {
    height: 44px;
  }
}
.search-block .form01 {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .search-block .form01 {
    width: 100%;
  }
}
.search-block .form02 {
  width: calc(100% - 210px);
}
@media screen and (max-width: 767px) {
  .search-block .form02 {
    width: 100%;
  }
}
.search-block .form03 {
  width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .search-block .form03 {
    width: 100%;
  }
}
.search-block .form03 dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .search-block .form03 dl {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .search-block .form03 dl {
    align-items: flex-start;
    flex-direction: column;
  }
}
.search-block .form03 dl dt {
  width: 60px;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .search-block .form03 dl dt {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .search-block .form03 dl dt {
    font-weight: 700;
    font-size: 12px;
  }
}
.search-block .form03 dl dd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  width: calc(100% - 60px);
  height: 34px;
  border: #dfdfdf solid 1px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3490196078);
  font-size: 13px;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .search-block .form03 dl dd {
    width: calc(100% - 70px);
  }
}
@media screen and (max-width: 767px) {
  .search-block .form03 dl dd {
    width: 100%;
  }
}
.search-block .form03 dl dd label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.search-block .form03 dl dd label input {
  margin: 0 5px 0 0;
}
.search-block .form04 {
  width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .search-block .form04 {
    width: 100%;
  }
}
.search-block .form04 dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .search-block .form04 dl {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .search-block .form04 dl {
    align-items: flex-start;
    flex-direction: column;
  }
}
.search-block .form04 dl dt {
  width: 60px;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .search-block .form04 dl dt {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .search-block .form04 dl dt {
    font-weight: 700;
    font-size: 12px;
  }
}
.search-block .form04 dl dd {
  width: calc(100% - 60px);
}
@media screen and (max-width: 1023px) {
  .search-block .form04 dl dd {
    width: calc(100% - 70px);
  }
}
@media screen and (max-width: 767px) {
  .search-block .form04 dl dd {
    width: 100%;
  }
}
.search-block .search-form-control {
  width: 70px;
}
@media screen and (max-width: 1023px) {
  .search-block .search-form-control {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .search-block .search-form-control {
    justify-content: center;
    margin-top: 10px;
  }
}
.search-block .search-form-control .button {
  width: 70px;
  height: 34px;
}
@media screen and (max-width: 1023px) {
  .search-block .search-form-control .button {
    width: 130px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .search-block .search-form-control .button {
    width: 100px;
  }
}

.list-block .article_list {
  font-size: 14px;
}
.list-block .article_list .title {
  overflow: hidden;
  width: calc(100% - 370px);
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .list-block .article_list .title {
    width: calc(100% - 160px);
  }
}
.list-block .article_list .post-author {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .list-block .article_list .post-author {
    display: none;
  }
}
.list-block .article_list .status {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list-block .article_list .status {
    width: 60px;
  }
}
.list-block .article_list .created {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list-block .article_list .created {
    width: 80px;
  }
}
.list-block .article_list .control {
  width: 70px;
  text-align: center;
}
.list-block .article_list .control .button {
  width: 70px;
  height: 34px;
}
.list-block .article_list .list-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 10px 20px;
  font-weight: 700;
  font-size: 12px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .list-block .article_list .list-header {
    padding: 0 10px 10px 20px;
    font-size: 11px;
  }
}
.list-block .article_list .list .list_line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 -1px;
  padding: 20px 0 20px 20px;
  border: #dfdfdf solid 1px;
  font-size: 13px;
  cursor: pointer;
  gap: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .list-block .article_list .list .list_line:hover {
    background-color: rgba(235, 235, 235, 0.35);
  }
}
@media screen and (max-width: 767px) {
  .list-block .article_list .list .list_line {
    padding: 10px 10px 10px 20px;
  }
}
.list-block .article_list .list .list_line:nth-child(2n) {
  background-color: rgba(221, 221, 221, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .list-block .article_list .list .list_line:nth-child(2n):hover {
    background-color: rgba(197, 197, 197, 0.35);
  }
}
.list-block .ueser_list {
  font-size: 14px;
}
.list-block .ueser_list .id {
  width: 20px;
}
.list-block .ueser_list .name {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .name {
    padding: 0 110px 0 0;
    width: calc(100% - 30px);
  }
}
.list-block .ueser_list .store-name {
  overflow: hidden;
  width: calc(100% - 535px);
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .store-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 0;
    width: 100%;
    border-top: #dfdfdf solid 1px;
  }
  .list-block .ueser_list .store-name::before {
    content: "■ 店舗名";
    font-weight: 700;
    font-size: 11px;
  }
}
.list-block .ueser_list .user-type {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .user-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 0;
    width: 100%;
    border-top: #dfdfdf solid 1px;
  }
  .list-block .ueser_list .user-type::before {
    content: "■ 種別";
    font-weight: 700;
    font-size: 11px;
  }
}
.list-block .ueser_list .status {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .status {
    position: absolute;
    top: 14px;
    right: 20px;
    width: auto;
  }
}
.list-block .ueser_list .control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  text-align: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .control {
    justify-content: flex-end;
    padding: 15px 0 0;
    width: 100%;
    border-top: #dfdfdf solid 1px;
  }
}
.list-block .ueser_list .control .button {
  width: 70px;
  height: 34px;
}
.list-block .ueser_list .list-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px 10px 20px;
  font-weight: 700;
  font-size: 12px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .list-header {
    display: none;
  }
}
.list-block .ueser_list .list .list_line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 -1px;
  padding: 20px;
  border: #dfdfdf solid 1px;
  font-size: 13px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .list-block .ueser_list .list .list_line {
    flex-wrap: wrap;
    gap: 5px;
  }
}
.list-block .ueser_list .list .list_line:nth-child(2n) {
  background-color: rgba(221, 221, 221, 0.35);
}
.list-block .list-paginate {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0;
  width: 100%;
  gap: 10px;
}
.list-block .list-paginate ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}
.list-block .list-paginate ul li a {
  display: block;
  margin: 0;
  width: 26px;
  height: 50px;
  border: #dcdada solid 1px;
  color: #363030;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 50px;
}
.list-block .list-paginate ul li.active a {
  border: #dcdada solid 1px;
  background: #f1f1f1;
  pointer-events: none;
}

.edit-form-warp {
  margin: 0 auto;
  max-width: 580px;
}
.edit-form-warp .detail_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp .detail_title {
    margin: 0 0 20px;
  }
}
.edit-form-warp .detail_title h2 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 17px;
}
.edit-form-warp p.read {
  margin: 0 0 40px;
  text-align: justify;
  font-size: 14px;
  line-height: 2em;
}
.edit-form-warp h3 {
  position: relative;
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 13px;
}
.edit-form-warp h3 span {
  font-size: 11px;
}
.edit-form-warp h3 span.req {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  width: 40px;
  height: 22px;
  border-radius: 3px;
  background: #000000;
  color: #ffffff;
  line-height: 1;
}
.edit-form-warp p.caution {
  margin: 0 0 10px;
  text-align: justify;
  font-size: 13px;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .edit-form-warp p.caution {
    font-size: 12px;
  }
}
.edit-form-warp #image_upload {
  margin: 0 0 20px;
}
.edit-form-warp #image_upload .uploaded-images {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 20px;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp #image_upload .uploaded-images {
    flex-wrap: wrap;
  }
}
.edit-form-warp #image_upload .uploaded-images .image-item {
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  width: calc((100% - 20px) / 5);
  border: #dfdfdf solid 1px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .edit-form-warp #image_upload .uploaded-images .image-item {
    width: calc((100% - 10px) / 3);
  }
}
.edit-form-warp #image_upload .uploaded-images .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.edit-form-warp #image_upload dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  margin: 0 0 -1px;
  padding: 5px 20px;
  width: 100%;
  border: #dfdfdf solid 1px;
  background-color: rgba(255, 255, 255, 0.3490196078);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp #image_upload dl {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 20px;
  }
}
.edit-form-warp #image_upload dl dt {
  margin: 0;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp #image_upload dl dt {
    width: 100%;
    font-weight: 700;
    font-size: 11px;
  }
}
.edit-form-warp #image_upload dl dd {
  width: calc(100% - 110px);
}
@media screen and (max-width: 767px) {
  .edit-form-warp #image_upload dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .edit-form-warp #image_upload dl dd input[type=file] {
    padding: 12px 0;
  }
}
.edit-form-warp .form-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 50px;
}
.edit-form-warp .form-control .button {
  margin: 0 5px;
}
.edit-form-warp dl {
  margin: 0 0 20px;
  padding: 0;
}
.edit-form-warp dl dt {
  position: relative;
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp dl dt {
    font-weight: 700;
    font-size: 12px;
  }
}
.edit-form-warp dl dt span {
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp dl dt span {
    font-size: 10px;
  }
}
.edit-form-warp dl dt span.req {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  width: 40px;
  height: 22px;
  border-radius: 3px;
  background: #000000;
  color: #ffffff;
  line-height: 1;
}
.edit-form-warp dl dd {
  position: relative;
  margin: 0;
  padding: 0;
}
.edit-form-warp dl dd p.note {
  margin: 5px 0 0;
  font-size: 11px;
}
.edit-form-warp dl dd p.counter {
  margin: 0 0 -20px;
  text-align: right;
  font-size: 13px;
}
.edit-form-warp dl dd .error {
  /* margin: -10px 0 0 auto; */
  position: absolute;
  right: -10px;
  bottom: -20px;
  z-index: 2;
  display: block;
  margin: 0 0 5px;
  padding: 0 10px;
  height: 22px;
  border-radius: 30px;
  background: #ff5d5d;
  color: #ffffff;
  font-size: 11px;
  line-height: 24px;
}
.edit-form-warp dl dd .radio-select {
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  height: 43px;
  border: #dfdfdf solid 1px;
  background-color: rgba(255, 255, 255, 0.3490196078);
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .edit-form-warp dl dd .radio-select {
    padding: 12px 0;
    border: none;
    background-color: transparent;
    font-size: 13px;
  }
}
.edit-form-warp dl dd .radio-select label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 10px 0 0;
}
.edit-form-warp dl dd .radio-select label input[type=radio] {
  margin: 0 5px 0 0;
}

.detail-warp {
  margin: 0 auto;
  max-width: 580px;
}
.detail-warp .detail_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px;
}
.detail-warp .detail_title h2 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 17px;
}
.detail-warp .detail_title .status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 40px;
  font-size: 13px;
}
.detail-warp .detail_title .status.sent {
  border: 1px solid #c3e6cb;
  background-color: #d4edda;
}
.detail-warp .detail_title .status.draft {
  border: #dfdfdf solid 1px;
  background-color: rgba(217, 213, 213, 0.3411764706);
}
.detail-warp p {
  margin: 0 0 40px;
  text-align: justify;
  font-size: 14px;
  line-height: 2em;
}
.detail-warp dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px;
  padding: 10px 20px;
  min-height: 62px;
  border: #dfdfdf solid 1px;
  font-size: 13px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .detail-warp dl {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 16px;
    gap: 5px;
  }
}
.detail-warp dl dt {
  width: 120px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .detail-warp dl dt {
    font-weight: 700;
    font-size: 11px;
  }
}
.detail-warp dl dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 120px);
}
@media screen and (max-width: 767px) {
  .detail-warp dl dd {
    width: 100%;
  }
}
.detail-warp dl dd p.note {
  margin: 0;
  padding: 0 0 0 10px;
  text-align: right;
  font-size: 11px;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .detail-warp dl dd p.note {
    font-size: 10px;
  }
}
.detail-warp .uploaded-images {
  margin: 0 0 20px;
}
.detail-warp .uploaded-images h3 {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 13px;
}
.detail-warp .uploaded-images .image_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .detail-warp .uploaded-images .image_list {
    flex-wrap: wrap;
  }
}
.detail-warp .uploaded-images .image_list .image-item {
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  width: calc((100% - 20px) / 5);
  border: #dfdfdf solid 1px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .detail-warp .uploaded-images .image_list .image-item {
    width: calc((100% - 10px) / 3);
  }
}
.detail-warp .uploaded-images .image_list .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail-warp .detail-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  /*
  &.article-detail {
  	justify-content:space-between;


  	button:nth-child(2) {
  		margin-right:unset;
  		margin-left:unset;
  	}
  }*/
}
@media screen and (max-width: 767px) {
  .detail-warp .detail-control.flex {
    gap: 10px;
  }
  .detail-warp .detail-control.flex .button {
    max-width: 130px;
    width: calc((100% - 20px) / 3) !important;
  }
}
.detail-warp .detail-control button:nth-child(2) {
  margin-right: 10px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .detail-warp .detail-control button:nth-child(2) {
    margin-right: 0;
    margin-left: 0;
  }
}
.detail-warp .delete-control {
  padding: 20px 0 0;
}
.detail-warp .delete-control .button {
  margin: 0 0 0 auto;
  max-width: 130px;
  width: calc((100% - 20px) / 3) !important;
}
@media screen and (max-width: 767px) {
  .detail-warp .delete-control .button {
    margin: 0 auto;
  }
}
/*# sourceMappingURL=develop.css.map */