@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select, button, textarea {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  color: #404044;
  background: transparent;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0;
  }
}

a {
  color: #404044;
  text-decoration: none;
  overflow-wrap: break-word;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

a:visited {
  color: #404044;
}

a:hover {
  color: #404044;
}

a:active {
  color: #404044;
}

a[href*="tel:"] {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 959px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img:not(.no-fit) {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .view-xl {
    display: none !important;
  }
}

@media screen and (max-width: 1279px) {
  .none-xl {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .view-l {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .none-l {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .view-m {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .none-m {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .view-s {
    display: none !important;
  }
}

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

@media screen and (min-width: 520px) {
  .view-xs {
    display: none !important;
  }
}

@media screen and (max-width: 519px) {
  .none-xs {
    display: none !important;
  }
}

.wrap {
  width: 100%;
  max-width: 1280;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 959px) {
  .wrap {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 959px) {
  .inner {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.mb-sect {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 959px) {
  .mb-sect {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.mr-x1 {
  margin-right: 8px;
}

@media screen and (max-width: 959px) {
  .mr-x1 {
    margin-right: 6px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x1 {
    margin-right: 4px;
  }
}

.mb-x1 {
  margin-bottom: 8px;
}

@media screen and (max-width: 959px) {
  .mb-x1 {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x1 {
    margin-bottom: 4px;
  }
}

.ml-x1 {
  margin-left: 8px;
}

@media screen and (max-width: 959px) {
  .ml-x1 {
    margin-left: 6px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x1 {
    margin-left: 4px;
  }
}

.pt-x1 {
  padding-top: 8px;
}

@media screen and (max-width: 959px) {
  .pt-x1 {
    padding-top: 6px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x1 {
    padding-top: 4px;
  }
}

.pr-x1 {
  padding-right: 8px;
}

@media screen and (max-width: 959px) {
  .pr-x1 {
    padding-right: 6px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x1 {
    padding-right: 4px;
  }
}

.pb-x1 {
  padding-bottom: 8px;
}

@media screen and (max-width: 959px) {
  .pb-x1 {
    padding-bottom: 6px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x1 {
    padding-bottom: 4px;
  }
}

.pl-x1 {
  padding-left: 8px;
}

@media screen and (max-width: 959px) {
  .pl-x1 {
    padding-left: 6px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x1 {
    padding-left: 4px;
  }
}

.mr-x2 {
  margin-right: 16px;
}

@media screen and (max-width: 959px) {
  .mr-x2 {
    margin-right: 12px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x2 {
    margin-right: 8px;
  }
}

.mb-x2 {
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .mb-x2 {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x2 {
    margin-bottom: 8px;
  }
}

.ml-x2 {
  margin-left: 16px;
}

@media screen and (max-width: 959px) {
  .ml-x2 {
    margin-left: 12px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x2 {
    margin-left: 8px;
  }
}

.pt-x2 {
  padding-top: 16px;
}

@media screen and (max-width: 959px) {
  .pt-x2 {
    padding-top: 12px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x2 {
    padding-top: 8px;
  }
}

.pr-x2 {
  padding-right: 16px;
}

@media screen and (max-width: 959px) {
  .pr-x2 {
    padding-right: 12px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x2 {
    padding-right: 8px;
  }
}

.pb-x2 {
  padding-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .pb-x2 {
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x2 {
    padding-bottom: 8px;
  }
}

.pl-x2 {
  padding-left: 16px;
}

@media screen and (max-width: 959px) {
  .pl-x2 {
    padding-left: 12px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x2 {
    padding-left: 8px;
  }
}

.mr-x3 {
  margin-right: 24px;
}

@media screen and (max-width: 959px) {
  .mr-x3 {
    margin-right: 18px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x3 {
    margin-right: 12px;
  }
}

.mb-x3 {
  margin-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .mb-x3 {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x3 {
    margin-bottom: 12px;
  }
}

.ml-x3 {
  margin-left: 24px;
}

@media screen and (max-width: 959px) {
  .ml-x3 {
    margin-left: 18px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x3 {
    margin-left: 12px;
  }
}

.pt-x3 {
  padding-top: 24px;
}

@media screen and (max-width: 959px) {
  .pt-x3 {
    padding-top: 18px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x3 {
    padding-top: 12px;
  }
}

.pr-x3 {
  padding-right: 24px;
}

@media screen and (max-width: 959px) {
  .pr-x3 {
    padding-right: 18px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x3 {
    padding-right: 12px;
  }
}

.pb-x3 {
  padding-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .pb-x3 {
    padding-bottom: 18px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x3 {
    padding-bottom: 12px;
  }
}

.pl-x3 {
  padding-left: 24px;
}

@media screen and (max-width: 959px) {
  .pl-x3 {
    padding-left: 18px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x3 {
    padding-left: 12px;
  }
}

.mr-x4 {
  margin-right: 32px;
}

@media screen and (max-width: 959px) {
  .mr-x4 {
    margin-right: 24px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x4 {
    margin-right: 16px;
  }
}

.mb-x4 {
  margin-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .mb-x4 {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x4 {
    margin-bottom: 16px;
  }
}

.ml-x4 {
  margin-left: 32px;
}

@media screen and (max-width: 959px) {
  .ml-x4 {
    margin-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x4 {
    margin-left: 16px;
  }
}

.pt-x4 {
  padding-top: 32px;
}

@media screen and (max-width: 959px) {
  .pt-x4 {
    padding-top: 24px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x4 {
    padding-top: 16px;
  }
}

.pr-x4 {
  padding-right: 32px;
}

@media screen and (max-width: 959px) {
  .pr-x4 {
    padding-right: 24px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x4 {
    padding-right: 16px;
  }
}

.pb-x4 {
  padding-bottom: 32px;
}

@media screen and (max-width: 959px) {
  .pb-x4 {
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x4 {
    padding-bottom: 16px;
  }
}

.pl-x4 {
  padding-left: 32px;
}

@media screen and (max-width: 959px) {
  .pl-x4 {
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x4 {
    padding-left: 16px;
  }
}

.mr-x5 {
  margin-right: 40px;
}

@media screen and (max-width: 959px) {
  .mr-x5 {
    margin-right: 30px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x5 {
    margin-right: 20px;
  }
}

.mb-x5 {
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .mb-x5 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x5 {
    margin-bottom: 20px;
  }
}

.ml-x5 {
  margin-left: 40px;
}

@media screen and (max-width: 959px) {
  .ml-x5 {
    margin-left: 30px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x5 {
    margin-left: 20px;
  }
}

.pt-x5 {
  padding-top: 40px;
}

@media screen and (max-width: 959px) {
  .pt-x5 {
    padding-top: 30px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x5 {
    padding-top: 20px;
  }
}

.pr-x5 {
  padding-right: 40px;
}

@media screen and (max-width: 959px) {
  .pr-x5 {
    padding-right: 30px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x5 {
    padding-right: 20px;
  }
}

.pb-x5 {
  padding-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .pb-x5 {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x5 {
    padding-bottom: 20px;
  }
}

.pl-x5 {
  padding-left: 40px;
}

@media screen and (max-width: 959px) {
  .pl-x5 {
    padding-left: 30px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x5 {
    padding-left: 20px;
  }
}

.mr-x6 {
  margin-right: 48px;
}

@media screen and (max-width: 959px) {
  .mr-x6 {
    margin-right: 36px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x6 {
    margin-right: 24px;
  }
}

.mb-x6 {
  margin-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .mb-x6 {
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x6 {
    margin-bottom: 24px;
  }
}

.ml-x6 {
  margin-left: 48px;
}

@media screen and (max-width: 959px) {
  .ml-x6 {
    margin-left: 36px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x6 {
    margin-left: 24px;
  }
}

.pt-x6 {
  padding-top: 48px;
}

@media screen and (max-width: 959px) {
  .pt-x6 {
    padding-top: 36px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x6 {
    padding-top: 24px;
  }
}

.pr-x6 {
  padding-right: 48px;
}

@media screen and (max-width: 959px) {
  .pr-x6 {
    padding-right: 36px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x6 {
    padding-right: 24px;
  }
}

.pb-x6 {
  padding-bottom: 48px;
}

@media screen and (max-width: 959px) {
  .pb-x6 {
    padding-bottom: 36px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x6 {
    padding-bottom: 24px;
  }
}

.pl-x6 {
  padding-left: 48px;
}

@media screen and (max-width: 959px) {
  .pl-x6 {
    padding-left: 36px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x6 {
    padding-left: 24px;
  }
}

.mr-x7 {
  margin-right: 56px;
}

@media screen and (max-width: 959px) {
  .mr-x7 {
    margin-right: 42px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x7 {
    margin-right: 28px;
  }
}

.mb-x7 {
  margin-bottom: 56px;
}

@media screen and (max-width: 959px) {
  .mb-x7 {
    margin-bottom: 42px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x7 {
    margin-bottom: 28px;
  }
}

.ml-x7 {
  margin-left: 56px;
}

@media screen and (max-width: 959px) {
  .ml-x7 {
    margin-left: 42px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x7 {
    margin-left: 28px;
  }
}

.pt-x7 {
  padding-top: 56px;
}

@media screen and (max-width: 959px) {
  .pt-x7 {
    padding-top: 42px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x7 {
    padding-top: 28px;
  }
}

.pr-x7 {
  padding-right: 56px;
}

@media screen and (max-width: 959px) {
  .pr-x7 {
    padding-right: 42px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x7 {
    padding-right: 28px;
  }
}

.pb-x7 {
  padding-bottom: 56px;
}

@media screen and (max-width: 959px) {
  .pb-x7 {
    padding-bottom: 42px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x7 {
    padding-bottom: 28px;
  }
}

.pl-x7 {
  padding-left: 56px;
}

@media screen and (max-width: 959px) {
  .pl-x7 {
    padding-left: 42px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x7 {
    padding-left: 28px;
  }
}

.mr-x8 {
  margin-right: 64px;
}

@media screen and (max-width: 959px) {
  .mr-x8 {
    margin-right: 48px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x8 {
    margin-right: 32px;
  }
}

.mb-x8 {
  margin-bottom: 64px;
}

@media screen and (max-width: 959px) {
  .mb-x8 {
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x8 {
    margin-bottom: 32px;
  }
}

.ml-x8 {
  margin-left: 64px;
}

@media screen and (max-width: 959px) {
  .ml-x8 {
    margin-left: 48px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x8 {
    margin-left: 32px;
  }
}

.pt-x8 {
  padding-top: 64px;
}

@media screen and (max-width: 959px) {
  .pt-x8 {
    padding-top: 48px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x8 {
    padding-top: 32px;
  }
}

.pr-x8 {
  padding-right: 64px;
}

@media screen and (max-width: 959px) {
  .pr-x8 {
    padding-right: 48px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x8 {
    padding-right: 32px;
  }
}

.pb-x8 {
  padding-bottom: 64px;
}

@media screen and (max-width: 959px) {
  .pb-x8 {
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x8 {
    padding-bottom: 32px;
  }
}

.pl-x8 {
  padding-left: 64px;
}

@media screen and (max-width: 959px) {
  .pl-x8 {
    padding-left: 48px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x8 {
    padding-left: 32px;
  }
}

.mr-x9 {
  margin-right: 72px;
}

@media screen and (max-width: 959px) {
  .mr-x9 {
    margin-right: 54px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x9 {
    margin-right: 36px;
  }
}

.mb-x9 {
  margin-bottom: 72px;
}

@media screen and (max-width: 959px) {
  .mb-x9 {
    margin-bottom: 54px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x9 {
    margin-bottom: 36px;
  }
}

.ml-x9 {
  margin-left: 72px;
}

@media screen and (max-width: 959px) {
  .ml-x9 {
    margin-left: 54px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x9 {
    margin-left: 36px;
  }
}

.pt-x9 {
  padding-top: 72px;
}

@media screen and (max-width: 959px) {
  .pt-x9 {
    padding-top: 54px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x9 {
    padding-top: 36px;
  }
}

.pr-x9 {
  padding-right: 72px;
}

@media screen and (max-width: 959px) {
  .pr-x9 {
    padding-right: 54px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x9 {
    padding-right: 36px;
  }
}

.pb-x9 {
  padding-bottom: 72px;
}

@media screen and (max-width: 959px) {
  .pb-x9 {
    padding-bottom: 54px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x9 {
    padding-bottom: 36px;
  }
}

.pl-x9 {
  padding-left: 72px;
}

@media screen and (max-width: 959px) {
  .pl-x9 {
    padding-left: 54px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x9 {
    padding-left: 36px;
  }
}

.mr-x10 {
  margin-right: 80px;
}

@media screen and (max-width: 959px) {
  .mr-x10 {
    margin-right: 60px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x10 {
    margin-right: 40px;
  }
}

.mb-x10 {
  margin-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .mb-x10 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x10 {
    margin-bottom: 40px;
  }
}

.ml-x10 {
  margin-left: 80px;
}

@media screen and (max-width: 959px) {
  .ml-x10 {
    margin-left: 60px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x10 {
    margin-left: 40px;
  }
}

.pt-x10 {
  padding-top: 80px;
}

@media screen and (max-width: 959px) {
  .pt-x10 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x10 {
    padding-top: 40px;
  }
}

.pr-x10 {
  padding-right: 80px;
}

@media screen and (max-width: 959px) {
  .pr-x10 {
    padding-right: 60px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x10 {
    padding-right: 40px;
  }
}

.pb-x10 {
  padding-bottom: 80px;
}

@media screen and (max-width: 959px) {
  .pb-x10 {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x10 {
    padding-bottom: 40px;
  }
}

.pl-x10 {
  padding-left: 80px;
}

@media screen and (max-width: 959px) {
  .pl-x10 {
    padding-left: 60px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x10 {
    padding-left: 40px;
  }
}

.mr-x11 {
  margin-right: 88px;
}

@media screen and (max-width: 959px) {
  .mr-x11 {
    margin-right: 66px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x11 {
    margin-right: 44px;
  }
}

.mb-x11 {
  margin-bottom: 88px;
}

@media screen and (max-width: 959px) {
  .mb-x11 {
    margin-bottom: 66px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x11 {
    margin-bottom: 44px;
  }
}

.ml-x11 {
  margin-left: 88px;
}

@media screen and (max-width: 959px) {
  .ml-x11 {
    margin-left: 66px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x11 {
    margin-left: 44px;
  }
}

.pt-x11 {
  padding-top: 88px;
}

@media screen and (max-width: 959px) {
  .pt-x11 {
    padding-top: 66px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x11 {
    padding-top: 44px;
  }
}

.pr-x11 {
  padding-right: 88px;
}

@media screen and (max-width: 959px) {
  .pr-x11 {
    padding-right: 66px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x11 {
    padding-right: 44px;
  }
}

.pb-x11 {
  padding-bottom: 88px;
}

@media screen and (max-width: 959px) {
  .pb-x11 {
    padding-bottom: 66px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x11 {
    padding-bottom: 44px;
  }
}

.pl-x11 {
  padding-left: 88px;
}

@media screen and (max-width: 959px) {
  .pl-x11 {
    padding-left: 66px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x11 {
    padding-left: 44px;
  }
}

.mr-x12 {
  margin-right: 96px;
}

@media screen and (max-width: 959px) {
  .mr-x12 {
    margin-right: 72px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x12 {
    margin-right: 48px;
  }
}

.mb-x12 {
  margin-bottom: 96px;
}

@media screen and (max-width: 959px) {
  .mb-x12 {
    margin-bottom: 72px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x12 {
    margin-bottom: 48px;
  }
}

.ml-x12 {
  margin-left: 96px;
}

@media screen and (max-width: 959px) {
  .ml-x12 {
    margin-left: 72px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x12 {
    margin-left: 48px;
  }
}

.pt-x12 {
  padding-top: 96px;
}

@media screen and (max-width: 959px) {
  .pt-x12 {
    padding-top: 72px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x12 {
    padding-top: 48px;
  }
}

.pr-x12 {
  padding-right: 96px;
}

@media screen and (max-width: 959px) {
  .pr-x12 {
    padding-right: 72px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x12 {
    padding-right: 48px;
  }
}

.pb-x12 {
  padding-bottom: 96px;
}

@media screen and (max-width: 959px) {
  .pb-x12 {
    padding-bottom: 72px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x12 {
    padding-bottom: 48px;
  }
}

.pl-x12 {
  padding-left: 96px;
}

@media screen and (max-width: 959px) {
  .pl-x12 {
    padding-left: 72px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x12 {
    padding-left: 48px;
  }
}

.mr-x13 {
  margin-right: 104px;
}

@media screen and (max-width: 959px) {
  .mr-x13 {
    margin-right: 78px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x13 {
    margin-right: 52px;
  }
}

.mb-x13 {
  margin-bottom: 104px;
}

@media screen and (max-width: 959px) {
  .mb-x13 {
    margin-bottom: 78px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x13 {
    margin-bottom: 52px;
  }
}

.ml-x13 {
  margin-left: 104px;
}

@media screen and (max-width: 959px) {
  .ml-x13 {
    margin-left: 78px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x13 {
    margin-left: 52px;
  }
}

.pt-x13 {
  padding-top: 104px;
}

@media screen and (max-width: 959px) {
  .pt-x13 {
    padding-top: 78px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x13 {
    padding-top: 52px;
  }
}

.pr-x13 {
  padding-right: 104px;
}

@media screen and (max-width: 959px) {
  .pr-x13 {
    padding-right: 78px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x13 {
    padding-right: 52px;
  }
}

.pb-x13 {
  padding-bottom: 104px;
}

@media screen and (max-width: 959px) {
  .pb-x13 {
    padding-bottom: 78px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x13 {
    padding-bottom: 52px;
  }
}

.pl-x13 {
  padding-left: 104px;
}

@media screen and (max-width: 959px) {
  .pl-x13 {
    padding-left: 78px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x13 {
    padding-left: 52px;
  }
}

.mr-x14 {
  margin-right: 112px;
}

@media screen and (max-width: 959px) {
  .mr-x14 {
    margin-right: 84px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x14 {
    margin-right: 56px;
  }
}

.mb-x14 {
  margin-bottom: 112px;
}

@media screen and (max-width: 959px) {
  .mb-x14 {
    margin-bottom: 84px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x14 {
    margin-bottom: 56px;
  }
}

.ml-x14 {
  margin-left: 112px;
}

@media screen and (max-width: 959px) {
  .ml-x14 {
    margin-left: 84px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x14 {
    margin-left: 56px;
  }
}

.pt-x14 {
  padding-top: 112px;
}

@media screen and (max-width: 959px) {
  .pt-x14 {
    padding-top: 84px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x14 {
    padding-top: 56px;
  }
}

.pr-x14 {
  padding-right: 112px;
}

@media screen and (max-width: 959px) {
  .pr-x14 {
    padding-right: 84px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x14 {
    padding-right: 56px;
  }
}

.pb-x14 {
  padding-bottom: 112px;
}

@media screen and (max-width: 959px) {
  .pb-x14 {
    padding-bottom: 84px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x14 {
    padding-bottom: 56px;
  }
}

.pl-x14 {
  padding-left: 112px;
}

@media screen and (max-width: 959px) {
  .pl-x14 {
    padding-left: 84px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x14 {
    padding-left: 56px;
  }
}

.mr-x15 {
  margin-right: 120px;
}

@media screen and (max-width: 959px) {
  .mr-x15 {
    margin-right: 90px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x15 {
    margin-right: 60px;
  }
}

.mb-x15 {
  margin-bottom: 120px;
}

@media screen and (max-width: 959px) {
  .mb-x15 {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x15 {
    margin-bottom: 60px;
  }
}

.ml-x15 {
  margin-left: 120px;
}

@media screen and (max-width: 959px) {
  .ml-x15 {
    margin-left: 90px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x15 {
    margin-left: 60px;
  }
}

.pt-x15 {
  padding-top: 120px;
}

@media screen and (max-width: 959px) {
  .pt-x15 {
    padding-top: 90px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x15 {
    padding-top: 60px;
  }
}

.pr-x15 {
  padding-right: 120px;
}

@media screen and (max-width: 959px) {
  .pr-x15 {
    padding-right: 90px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x15 {
    padding-right: 60px;
  }
}

.pb-x15 {
  padding-bottom: 120px;
}

@media screen and (max-width: 959px) {
  .pb-x15 {
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x15 {
    padding-bottom: 60px;
  }
}

.pl-x15 {
  padding-left: 120px;
}

@media screen and (max-width: 959px) {
  .pl-x15 {
    padding-left: 90px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x15 {
    padding-left: 60px;
  }
}

.mr-x16 {
  margin-right: 128px;
}

@media screen and (max-width: 959px) {
  .mr-x16 {
    margin-right: 96px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x16 {
    margin-right: 64px;
  }
}

.mb-x16 {
  margin-bottom: 128px;
}

@media screen and (max-width: 959px) {
  .mb-x16 {
    margin-bottom: 96px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x16 {
    margin-bottom: 64px;
  }
}

.ml-x16 {
  margin-left: 128px;
}

@media screen and (max-width: 959px) {
  .ml-x16 {
    margin-left: 96px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x16 {
    margin-left: 64px;
  }
}

.pt-x16 {
  padding-top: 128px;
}

@media screen and (max-width: 959px) {
  .pt-x16 {
    padding-top: 96px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x16 {
    padding-top: 64px;
  }
}

.pr-x16 {
  padding-right: 128px;
}

@media screen and (max-width: 959px) {
  .pr-x16 {
    padding-right: 96px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x16 {
    padding-right: 64px;
  }
}

.pb-x16 {
  padding-bottom: 128px;
}

@media screen and (max-width: 959px) {
  .pb-x16 {
    padding-bottom: 96px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x16 {
    padding-bottom: 64px;
  }
}

.pl-x16 {
  padding-left: 128px;
}

@media screen and (max-width: 959px) {
  .pl-x16 {
    padding-left: 96px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x16 {
    padding-left: 64px;
  }
}

.mr-x17 {
  margin-right: 136px;
}

@media screen and (max-width: 959px) {
  .mr-x17 {
    margin-right: 102px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x17 {
    margin-right: 68px;
  }
}

.mb-x17 {
  margin-bottom: 136px;
}

@media screen and (max-width: 959px) {
  .mb-x17 {
    margin-bottom: 102px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x17 {
    margin-bottom: 68px;
  }
}

.ml-x17 {
  margin-left: 136px;
}

@media screen and (max-width: 959px) {
  .ml-x17 {
    margin-left: 102px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x17 {
    margin-left: 68px;
  }
}

.pt-x17 {
  padding-top: 136px;
}

@media screen and (max-width: 959px) {
  .pt-x17 {
    padding-top: 102px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x17 {
    padding-top: 68px;
  }
}

.pr-x17 {
  padding-right: 136px;
}

@media screen and (max-width: 959px) {
  .pr-x17 {
    padding-right: 102px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x17 {
    padding-right: 68px;
  }
}

.pb-x17 {
  padding-bottom: 136px;
}

@media screen and (max-width: 959px) {
  .pb-x17 {
    padding-bottom: 102px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x17 {
    padding-bottom: 68px;
  }
}

.pl-x17 {
  padding-left: 136px;
}

@media screen and (max-width: 959px) {
  .pl-x17 {
    padding-left: 102px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x17 {
    padding-left: 68px;
  }
}

.mr-x18 {
  margin-right: 144px;
}

@media screen and (max-width: 959px) {
  .mr-x18 {
    margin-right: 108px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x18 {
    margin-right: 72px;
  }
}

.mb-x18 {
  margin-bottom: 144px;
}

@media screen and (max-width: 959px) {
  .mb-x18 {
    margin-bottom: 108px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x18 {
    margin-bottom: 72px;
  }
}

.ml-x18 {
  margin-left: 144px;
}

@media screen and (max-width: 959px) {
  .ml-x18 {
    margin-left: 108px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x18 {
    margin-left: 72px;
  }
}

.pt-x18 {
  padding-top: 144px;
}

@media screen and (max-width: 959px) {
  .pt-x18 {
    padding-top: 108px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x18 {
    padding-top: 72px;
  }
}

.pr-x18 {
  padding-right: 144px;
}

@media screen and (max-width: 959px) {
  .pr-x18 {
    padding-right: 108px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x18 {
    padding-right: 72px;
  }
}

.pb-x18 {
  padding-bottom: 144px;
}

@media screen and (max-width: 959px) {
  .pb-x18 {
    padding-bottom: 108px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x18 {
    padding-bottom: 72px;
  }
}

.pl-x18 {
  padding-left: 144px;
}

@media screen and (max-width: 959px) {
  .pl-x18 {
    padding-left: 108px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x18 {
    padding-left: 72px;
  }
}

.mr-x19 {
  margin-right: 152px;
}

@media screen and (max-width: 959px) {
  .mr-x19 {
    margin-right: 114px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x19 {
    margin-right: 76px;
  }
}

.mb-x19 {
  margin-bottom: 152px;
}

@media screen and (max-width: 959px) {
  .mb-x19 {
    margin-bottom: 114px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x19 {
    margin-bottom: 76px;
  }
}

.ml-x19 {
  margin-left: 152px;
}

@media screen and (max-width: 959px) {
  .ml-x19 {
    margin-left: 114px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x19 {
    margin-left: 76px;
  }
}

.pt-x19 {
  padding-top: 152px;
}

@media screen and (max-width: 959px) {
  .pt-x19 {
    padding-top: 114px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x19 {
    padding-top: 76px;
  }
}

.pr-x19 {
  padding-right: 152px;
}

@media screen and (max-width: 959px) {
  .pr-x19 {
    padding-right: 114px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x19 {
    padding-right: 76px;
  }
}

.pb-x19 {
  padding-bottom: 152px;
}

@media screen and (max-width: 959px) {
  .pb-x19 {
    padding-bottom: 114px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x19 {
    padding-bottom: 76px;
  }
}

.pl-x19 {
  padding-left: 152px;
}

@media screen and (max-width: 959px) {
  .pl-x19 {
    padding-left: 114px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x19 {
    padding-left: 76px;
  }
}

.mr-x20 {
  margin-right: 160px;
}

@media screen and (max-width: 959px) {
  .mr-x20 {
    margin-right: 120px;
  }
}

@media screen and (max-width: 519px) {
  .mr-x20 {
    margin-right: 80px;
  }
}

.mb-x20 {
  margin-bottom: 160px;
}

@media screen and (max-width: 959px) {
  .mb-x20 {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 519px) {
  .mb-x20 {
    margin-bottom: 80px;
  }
}

.ml-x20 {
  margin-left: 160px;
}

@media screen and (max-width: 959px) {
  .ml-x20 {
    margin-left: 120px;
  }
}

@media screen and (max-width: 519px) {
  .ml-x20 {
    margin-left: 80px;
  }
}

.pt-x20 {
  padding-top: 160px;
}

@media screen and (max-width: 959px) {
  .pt-x20 {
    padding-top: 120px;
  }
}

@media screen and (max-width: 519px) {
  .pt-x20 {
    padding-top: 80px;
  }
}

.pr-x20 {
  padding-right: 160px;
}

@media screen and (max-width: 959px) {
  .pr-x20 {
    padding-right: 120px;
  }
}

@media screen and (max-width: 519px) {
  .pr-x20 {
    padding-right: 80px;
  }
}

.pb-x20 {
  padding-bottom: 160px;
}

@media screen and (max-width: 959px) {
  .pb-x20 {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 519px) {
  .pb-x20 {
    padding-bottom: 80px;
  }
}

.pl-x20 {
  padding-left: 160px;
}

@media screen and (max-width: 959px) {
  .pl-x20 {
    padding-left: 120px;
  }
}

@media screen and (max-width: 519px) {
  .pl-x20 {
    padding-left: 80px;
  }
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  display: block;
  position: relative;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}

.slick-track:before, .slick-track:after {
  content: '';
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 86px;
  padding: 0 40px;
  background: #ffffff;
  border-bottom: solid 1px #f1efec;
}

@media screen and (max-width: 959px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 64px;
    padding: 0 24px;
  }
}

@media screen and (max-width: 519px) {
  .header {
    padding: 0 16px;
  }
}

.header .header-logo {
  max-width: 200px;
}

@media screen and (max-width: 767px) {
  .header .header-logo {
    max-width: 160px;
  }
}

.content-side {
  overflow-y: auto;
  overflow-x: clip;
  background: linear-gradient(to bottom, transparent 100px, #ffffff 100px);
}

.content-side__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 56px 48px;
  background: #ffffff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #f1efec;
  border-radius: 0 40px 0 0;
}

@media screen and (max-width: 1279px) {
  .content-side__inner {
    padding: 48px 40px;
  }
}

@media screen and (max-width: 959px) {
  .content-side__inner {
    min-height: 500px;
    padding: 32px;
    border-radius: 0 32px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .content-side__inner {
    padding: 24px;
    border-radius: 0 24px 0 0;
  }
}

.content-side .side-logo {
  width: 200px;
  margin: 0 auto 48px;
}

@media screen and (max-width: 959px) {
  .content-side .side-logo {
    display: none;
  }
}

.content-side .side-menu {
  margin-bottom: 24px;
  border-top: solid 1px #f1efec;
}

.content-side .side-menu__item {
  overflow-y: clip;
  border-bottom: solid 1px #f1efec;
}

.content-side .side-menu__item .pull-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 32px 0 8px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.content-side .side-menu__item .pull-btn::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 8px;
  width: 13px;
  height: 8px;
  background: -webkit-gradient(linear, left top, right bottom, from(#F4BE09), to(#CC0A10));
  background: linear-gradient(to bottom right, #F4BE09, #CC0A10);
  -webkit-mask-image: url("/img/backend/icon/arrow-acc.svg");
  mask-image: url("/img/backend/icon/arrow-acc.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.content-side .side-menu__item .pull-btn span[class^="ico-"] {
  width: 20px;
  height: 20px;
  background: -webkit-gradient(linear, left top, right bottom, from(#F4BE09), to(#CC0A10));
  background: linear-gradient(to bottom right, #F4BE09, #CC0A10);
}

.content-side .side-menu__item .pull-btn .ico-user {
  -webkit-mask-image: url("/img/backend/icon/user.svg");
  mask-image: url("/img/backend/icon/user.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-btn .ico-agency {
  -webkit-mask-image: url("/img/backend/icon/agency.svg");
  mask-image: url("/img/backend/icon/agency.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-btn .ico-customer {
  -webkit-mask-image: url("/img/backend/icon/customer.svg");
  mask-image: url("/img/backend/icon/customer.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-btn .ico-topic {
  -webkit-mask-image: url("/img/backend/icon/topic.svg");
  mask-image: url("/img/backend/icon/topic.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-btn .ico-project {
  -webkit-mask-image: url("/img/backend/icon/project.svg");
  mask-image: url("/img/backend/icon/project.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-btn .ico-phase {
  -webkit-mask-image: url("/img/backend/icon/phase.svg");
  mask-image: url("/img/backend/icon/phase.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-menu {
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.content-side .side-menu__item .pull-menu__item {
  position: relative;
  z-index: 1;
}

.content-side .side-menu__item .pull-menu__item:not(:nth-last-child()) {
  border-bottom: solid 1px #f1efec;
}

.content-side .side-menu__item .pull-menu__item::after {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(100% + 50px);
  height: 100%;
  background: #FAF8F5;
  border: solid 1px #f1efec;
  border-right: none;
  border-radius: 22px 0 0 22px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 1279px) {
  .content-side .side-menu__item .pull-menu__item::after {
    width: calc(100% + 41px);
  }
}

@media screen and (max-width: 959px) {
  .content-side .side-menu__item .pull-menu__item::after {
    width: calc(100% + 33px);
  }
}

@media screen and (max-width: 959px) {
  .content-side .side-menu__item .pull-menu__item::after {
    width: calc(100% + 33px);
  }
}

@media screen and (max-width: 767px) {
  .content-side .side-menu__item .pull-menu__item::after {
    width: calc(100% + 25px);
  }
}

.content-side .side-menu__item .pull-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 12px 8px;
  padding-left: 40px;
  font-size: 1.4rem;
  font-weight: bold;
}

.content-side .side-menu__item .pull-menu__item a::before, .content-side .side-menu__item .pull-menu__item a::after {
  display: none;
  content: '';
  position: absolute;
  left: calc(100% + 33px);
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 1279px) {
  .content-side .side-menu__item .pull-menu__item a::before, .content-side .side-menu__item .pull-menu__item a::after {
    left: calc(100% + 25px);
  }
}

@media screen and (max-width: 959px) {
  .content-side .side-menu__item .pull-menu__item a::before, .content-side .side-menu__item .pull-menu__item a::after {
    left: calc(100% + 17px);
  }
}

@media screen and (max-width: 767px) {
  .content-side .side-menu__item .pull-menu__item a::before, .content-side .side-menu__item .pull-menu__item a::after {
    left: calc(100% + 9px);
  }
}

.content-side .side-menu__item .pull-menu__item a::before {
  bottom: calc(100% - 1px);
  background-image: radial-gradient(circle at 0 0, #ffffff 15px, #f1efec 15px, #f1efec 16px, #FAF8F5 16px);
}

.content-side .side-menu__item .pull-menu__item a::after {
  top: calc(100% - 1px);
  background-image: radial-gradient(circle at 0 100%, #ffffff 15px, #f1efec 15px, #f1efec 16px, #FAF8F5 16px);
}

.content-side .side-menu__item .pull-menu__item a .ico-menu {
  width: 17px;
  height: 13px;
  background: -webkit-gradient(linear, left top, right bottom, from(#F4BE09), to(#CC0A10));
  background: linear-gradient(to bottom right, #F4BE09, #CC0A10);
  -webkit-mask-image: url("/img/backend/icon/menu.svg");
  mask-image: url("/img/backend/icon/menu.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-menu__item a .ico-add {
  width: 12px;
  height: 12px;
  background: -webkit-gradient(linear, left top, right bottom, from(#F4BE09), to(#CC0A10));
  background: linear-gradient(to bottom right, #F4BE09, #CC0A10);
  -webkit-mask-image: url("/img/backend/icon/add.svg");
  mask-image: url("/img/backend/icon/add.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.content-side .side-menu__item .pull-menu__item:hover a {
  color: #E3161B;
}

.content-side .side-menu__item .pull-menu__item:hover a .ico-menu,
.content-side .side-menu__item .pull-menu__item:hover a .ico-add {
  background: #E3161B;
}

.content-side .side-menu__item .pull-menu__item.is-current::before, .content-side .side-menu__item .pull-menu__item.is-current::after {
  display: block;
}

.content-side .side-menu__item .pull-menu__item.is-current a .ico-menu,
.content-side .side-menu__item .pull-menu__item.is-current a .ico-add {
  background: #E3161B;
}

.content-side .side-menu__item .pull-menu__item.is-current a::before, .content-side .side-menu__item .pull-menu__item.is-current a::after {
  display: block;
}

.content-side .side-menu__item.is-active .pull-btn::after {
  background: #E3161B;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.content-side .side-menu__item.is-active .pull-btn span[class^="ico-"] {
  background: #E3161B;
}

.content-side .side-menu__item.is-active .pull-menu {
  opacity: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 12px;
}

.content-side .side-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  position: relative;
  padding-top: 10px;
  cursor: pointer;
}

.content-side .side-account__mark {
  width: 38px;
  aspect-ratio: 1/1;
}

.content-side .side-account__name {
  width: calc(100% - 48px);
  padding-bottom: 4px;
  font-weight: bold;
  line-height: 1.4;
}

.content-side .side-account__name span {
  font-size: 1.2rem;
}

.content-side .side-account__name .side-account-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  z-index: 99;
  width: 180px;
  padding: 0 14px;
  background: #ffffff;
  border: solid 1px #e0e0e0;
  border-radius: 4px;
}

@media screen and (max-width: 959px) {
  .content-side .side-account__name .side-account-menu {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .content-side .side-account__name .side-account-menu {
    border-radius: calc(4px * 0.5);
  }
}

.content-side .side-account__name .side-account-menu__item:not(:last-child) {
  border-bottom: solid 1px #e0e0e0;
}

.content-side .side-account__name .side-account-menu__item a {
  display: block;
  width: 100%;
  padding: 14px 8px;
  font-size: 1.3rem;
  font-weight: bold;
}

.content-side .side-account:hover .side-account-menu {
  display: block;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 24px;
}

@media screen and (max-width: 959px) {
  .form-field {
    gap: 32px 16px;
  }
}

@media screen and (max-width: 767px) {
  .form-field {
    gap: 16px;
  }
}

.form-field__item {
  width: 100%;
}

.form-field__item > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .form-field__item > dt {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .form-field__item > dt {
    margin-bottom: 6px;
  }
}

.form-field__item > dd {
  width: 100%;
}

.form-field__item.--divide2 {
  width: calc((100% / 2) - (24px * 1 / 2));
}

@media screen and (max-width: 767px) {
  .form-field__item.--divide2 {
    width: 100%;
  }
}

.form-field__item.--divide3 {
  width: calc((100% / 3) - (24px * 2 / 3));
}

@media screen and (max-width: 767px) {
  .form-field__item.--divide3 {
    width: 100%;
  }
}

.form-field.--confirm {
  gap: 0;
}

.form-field.--confirm .form-field__item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: dashed 1px #e0e0e0;
}

@media screen and (max-width: 959px) {
  .form-field.--confirm .form-field__item > dt {
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 767px) {
  .form-field.--confirm .form-field__item > dt {
    margin-bottom: 2px;
  }
}

.form-field.--confirm .form-field__item.--divide2, .form-field.--confirm .form-field__item.--divide3 {
  width: 100%;
}

.form-field.--phase {
  gap: 0 24px;
}

@media screen and (max-width: 959px) {
  .form-field.--phase {
    gap: 0 16px;
  }
}

.form-field.--phase .form-field__item:not(:nth-of-type(1)) {
  margin-top: 32px;
}

@media screen and (max-width: 959px) {
  .form-field.--phase .form-field__item:not(:nth-of-type(1)) {
    margin-top: 16px;
  }
}

.form-field.--phase .form-field__item:not(:nth-of-type(1)).--checkbox {
  margin-top: 12px;
}

.post-form {
  margin-bottom: 32px;
  padding: 48px 0;
  border-style: solid;
  border-width: 1px 0;
  border-color: #f1efec;
}

@media screen and (max-width: 1279px) {
  .post-form {
    padding: 40px 0;
  }
}

@media screen and (max-width: 959px) {
  .post-form {
    padding: 32px 0;
  }
}

@media screen and (max-width: 519px) {
  .post-form {
    margin-bottom: 24px;
    padding: 24px 0;
  }
}

.post-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-form__item:not(:last-child) {
  margin-bottom: 32px;
}

.post-form__item dt {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .post-form__item dt {
    width: 100%;
  }
}

.post-form__item dd {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .post-form__item dd {
    width: 100%;
  }
}

.form-required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 24px;
  background: #E3161B;
  border-radius: 3px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
}

input,
select,
textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: #ffffff;
  border: solid 1px #f1efec;
  border-radius: 4px;
  font-size: 1.5rem;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 959px) {
  input,
  select,
  textarea {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  input,
  select,
  textarea {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  input,
  select,
  textarea {
    height: 40px;
    padding: 0 12px;
    font-size: 1.3rem;
  }
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

input {
  width: 100%;
}

select {
  min-width: 120px;
  padding-right: 40px;
  background: url("/img/backend/common/select.svg") center right 16px/13px 8px no-repeat #ffffff;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  select {
    min-width: 104px;
  }
}

.select2-container {
  width: 100% !important;
  max-width: 100% !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 48px !important;
  padding: 0 40px 0 14px !important;
  background: url("/img/backend/common/select.svg") center right 16px/13px 8px no-repeat #ffffff;
  border: solid 1px #f1efec !important;
}

@media screen and (max-width: 767px) {
  .select2-container .select2-selection--single {
    height: 40px !important;
  }
}

.select2-container .select2-selection__arrow {
  display: none !important;
}

textarea {
  overflow: auto;
  width: 100%;
  height: 80px;
  padding: 12px;
  line-height: 1.6;
  resize: initial !important;
}

.form-date {
  padding-left: 48px;
  background: url("/img/backend/common/date.svg") center left 14px/24px 24px no-repeat #ffffff;
}

@media screen and (max-width: 767px) {
  .form-date {
    padding-left: 36px;
    background-position: center left 8px;
  }
}

.form-date:disabled {
  background-color: #e0e0e0;
  color: #999999;
  cursor: default;
}

.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.form-checkbox label {
  display: block;
  position: relative;
  cursor: pointer;
}

.form-checkbox label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.form-checkbox label .form-checkbox-label {
  display: block;
  position: relative;
  padding-left: 32px;
}

@media screen and (max-width: 959px) {
  .form-checkbox label .form-checkbox-label {
    padding: 2px 0 2px 32px;
    font-size: 1.3rem;
  }
}

.form-checkbox label .form-checkbox-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: solid 1px #999999;
  border-radius: 3px;
}

.form-checkbox label .form-checkbox-label::after {
  content: '';
  display: none;
  position: absolute;
  top: 7px;
  left: 6px;
  z-index: 1;
  width: 13px;
  height: 10px;
  background: #1FBCFF;
  -webkit-mask-image: url("/img/backend/icon/check.svg");
  mask-image: url("/img/backend/icon/check.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.form-checkbox label input:checked + .form-checkbox-label::before {
  background: #e9f8ff;
  border-color: #1FBCFF;
}

.form-checkbox label input:checked + .form-checkbox-label::after {
  display: block;
}

.form-checkbox label input:disabled + .form-checkbox-label {
  color: #999999;
}

.form-checkbox label input:disabled + .form-checkbox-label::before {
  background: #e0e0e0;
  border-color: #999999;
}

.form-checkbox label input:disabled + .form-checkbox-label::after {
  background: #999999;
}

.form-checkbox label:has(input:disabled) {
  cursor: default;
}

.form-checkbox.--stack {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.form-file__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  width: 180px;
  height: 44px;
  background: #988484;
  border: solid 1px #988484;
  border-radius: 4px;
  color: #ffffff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .form-file__btn {
    width: 160px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  .form-file__btn {
    width: 144px;
    font-size: 1.3rem;
  }
}

.form-file__btn:hover {
  background: #ffffff;
  color: #988484;
}

.form-file__btn > input {
  visibility: hidden;
  position: absolute;
  top: 0;
  height: 0;
}

.form-file .form-file-dtl__filename {
  margin-right: 12px;
}

.form-file .form-file-dtl__delete {
  display: inline-block;
  height: 26px;
  padding: 0 8px;
  border-radius: 4px;
  background: #E3161B;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 26px;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-file .form-file-dtl__delete {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-file .form-file-dtl__delete {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 519px) {
  .form-file .form-file-dtl__delete {
    height: 24px;
    font-size: 1.0rem;
    line-height: 24px;
  }
}

.form-file .js-file_dtl_list .form-file-dtl:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.form-phase .form-checkbox:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.form-btn__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 56px;
  background: #E3161B;
  border: solid 1px #E3161B;
  border-radius: 4px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-btn__item {
    height: 48px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .form-btn__item {
    height: 40px;
  }
}

.form-btn__item > input {
  visibility: hidden;
  position: absolute;
  top: 0;
  height: 0;
}

.form-btn__item span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item .ico-pen {
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("/img/backend/icon/pen.svg");
  mask-image: url("/img/backend/icon/pen.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 519px) {
  .form-btn__item .ico-pen {
    width: 10px;
    height: 10px;
  }
}

.form-btn__item .ico-back {
  width: 14px;
  height: 12px;
  -webkit-mask-image: url("/img/backend/icon/back.svg");
  mask-image: url("/img/backend/icon/back.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 519px) {
  .form-btn__item .ico-back {
    width: 11px;
    height: 10px;
  }
}

.form-btn__item .ico-delete {
  width: 12px;
  height: 15px;
  -webkit-mask-image: url("/img/backend/icon/delete.svg");
  mask-image: url("/img/backend/icon/delete.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 519px) {
  .form-btn__item .ico-delete {
    width: 9px;
    height: 12px;
  }
}

.form-btn__item:hover {
  background: #ffffff;
  color: #E3161B;
}

.form-btn__item:hover span[class^="ico-"] {
  background: #E3161B;
}

.form-btn__item.bc-red {
  background: #E3161B;
  border-color: #E3161B;
}

.form-btn__item.bc-red span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-red:hover {
  background: #ffffff;
  color: #E3161B;
}

.form-btn__item.bc-red:hover span[class^="ico-"] {
  background: #E3161B;
}

.form-btn__item.bc-aqu {
  background: #1FBCFF;
  border-color: #1FBCFF;
}

.form-btn__item.bc-aqu span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-aqu:hover {
  background: #ffffff;
  color: #1FBCFF;
}

.form-btn__item.bc-aqu:hover span[class^="ico-"] {
  background: #1FBCFF;
}

.form-btn__item.bc-grn {
  background: #19743D;
  border-color: #19743D;
}

.form-btn__item.bc-grn span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-grn:hover {
  background: #ffffff;
  color: #19743D;
}

.form-btn__item.bc-grn:hover span[class^="ico-"] {
  background: #19743D;
}

.form-btn__item.bc-yel {
  background: #ffff00;
  border-color: #ffff00;
}

.form-btn__item.bc-yel span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-yel:hover {
  background: #ffffff;
  color: #ffff00;
}

.form-btn__item.bc-yel:hover span[class^="ico-"] {
  background: #ffff00;
}

.form-btn__item.bc-orn {
  background: #EA910C;
  border-color: #EA910C;
}

.form-btn__item.bc-orn span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-orn:hover {
  background: #ffffff;
  color: #EA910C;
}

.form-btn__item.bc-orn:hover span[class^="ico-"] {
  background: #EA910C;
}

.form-btn__item.bc-l-orn {
  background: #F4BE09;
  border-color: #F4BE09;
}

.form-btn__item.bc-l-orn span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-l-orn:hover {
  background: #ffffff;
  color: #F4BE09;
}

.form-btn__item.bc-l-orn:hover span[class^="ico-"] {
  background: #F4BE09;
}

.form-btn__item.bc-d-orn {
  background: #CC0A10;
  border-color: #CC0A10;
}

.form-btn__item.bc-d-orn span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-d-orn:hover {
  background: #ffffff;
  color: #CC0A10;
}

.form-btn__item.bc-d-orn:hover span[class^="ico-"] {
  background: #CC0A10;
}

.form-btn__item.bc-beg {
  background: #FAF8F5;
  border-color: #FAF8F5;
}

.form-btn__item.bc-beg span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-beg:hover {
  background: #ffffff;
  color: #FAF8F5;
}

.form-btn__item.bc-beg:hover span[class^="ico-"] {
  background: #FAF8F5;
}

.form-btn__item.bc-blk {
  background: #404044;
  border-color: #404044;
}

.form-btn__item.bc-blk span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-blk:hover {
  background: #ffffff;
  color: #404044;
}

.form-btn__item.bc-blk:hover span[class^="ico-"] {
  background: #404044;
}

.form-btn__item.bc-wht {
  background: #ffffff;
  border-color: #ffffff;
}

.form-btn__item.bc-wht span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-wht:hover {
  background: #ffffff;
  color: #ffffff;
}

.form-btn__item.bc-wht:hover span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-gry {
  background: #cccccc;
  border-color: #cccccc;
}

.form-btn__item.bc-gry span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-gry:hover {
  background: #ffffff;
  color: #cccccc;
}

.form-btn__item.bc-gry:hover span[class^="ico-"] {
  background: #cccccc;
}

.form-btn__item.bc-l-gry {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

.form-btn__item.bc-l-gry span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-l-gry:hover {
  background: #ffffff;
  color: #e0e0e0;
}

.form-btn__item.bc-l-gry:hover span[class^="ico-"] {
  background: #e0e0e0;
}

.form-btn__item.bc-d-gry {
  background: #999999;
  border-color: #999999;
}

.form-btn__item.bc-d-gry span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.bc-d-gry:hover {
  background: #ffffff;
  color: #999999;
}

.form-btn__item.bc-d-gry:hover span[class^="ico-"] {
  background: #999999;
}

.form-btn__item.bc-wht {
  background: #ffffff;
  border-color: #E3161B;
  color: #E3161B;
}

.form-btn__item.bc-wht span[class^="ico-"] {
  background: #E3161B;
}

.form-btn__item.bc-wht:hover {
  background: #E3161B;
  color: #ffffff;
}

.form-btn__item.bc-wht:hover span[class^="ico-"] {
  background: #ffffff;
}

.form-btn__item.is-inactive {
  background: #e0e0e0;
  border-color: #cccccc;
  color: #cccccc;
  pointer-events: none;
}

.form-btn__item.is-inactive span[class^="ico-"] {
  background: #cccccc;
}

.form-btn.--small .form-btn__item {
  max-width: 180px;
  height: 44px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .form-btn.--small .form-btn__item {
    max-width: 120px;
    height: 40px;
  }
}

.alert,
.validate {
  margin-bottom: 24px;
  padding: 16px;
  background: #999999;
  border-radius: 8px;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .alert,
  .validate {
    border-radius: calc(8px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .alert,
  .validate {
    border-radius: calc(8px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .alert,
  .validate {
    margin-bottom: 16px;
  }
}

.alert.--success,
.validate.--success {
  background: #1FBCFF;
}

.alert.--danger,
.validate.--danger {
  background: #EA910C;
}

.alert.--failed,
.validate.--failed {
  background: #E3161B;
}

.invalid-txt {
  padding-top: 8px;
  color: #E3161B;
  font-size: 1.4rem;
  font-weight: bold;
}

.notfound-txt {
  margin-bottom: calc(8px * 3);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .notfound-txt {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.notfound-message {
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
  padding: calc(8px * 4);
  border: solid 1px #cccccc;
}

@media screen and (max-width: 959px) {
  .notfound-message {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .notfound-message {
    padding: calc((8px * 4) * 0.5);
  }
}

#app {
  overflow-x: clip;
}

.drawer-switch {
  display: none;
}

.drawer-hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  width: 80px;
  height: 86px;
  background: -webkit-gradient(linear, left top, right bottom, from(#F4BE09), to(#CC0A10));
  background: linear-gradient(to bottom right, #F4BE09, #CC0A10);
  border-radius: 0 0 0 8px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .drawer-hamburger {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .drawer-hamburger {
    width: 64px;
    height: 64px;
  }
}

.drawer-hamburger::after {
  content: 'MENU';
  position: absolute;
  bottom: 20px;
  width: 100%;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .drawer-hamburger::after {
    bottom: 14px;
    font-size: 1.0rem;
  }
}

.drawer-hamburger span {
  display: block;
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  width: 36px;
  height: 2px;
  margin: 0 auto;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .drawer-hamburger span {
    top: 22px;
    width: 28px;
    height: 1px;
  }
}

.drawer-hamburger span::before, .drawer-hamburger span::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .drawer-hamburger span::before, .drawer-hamburger span::after {
    height: 1px;
  }
}

.drawer-hamburger span::before {
  top: -8px;
}

@media screen and (max-width: 767px) {
  .drawer-hamburger span::before {
    top: -6px;
  }
}

.drawer-hamburger span::after {
  top: 8px;
}

@media screen and (max-width: 767px) {
  .drawer-hamburger span::after {
    top: 6px;
  }
}

.drawer-switch:checked ~ .drawer-hamburger {
  background: #E3161B;
}

.drawer-switch:checked ~ .drawer-hamburger::after {
  content: 'CLOSE';
}

.drawer-switch:checked ~ .drawer-hamburger span {
  background: none;
}

.drawer-switch:checked ~ .drawer-hamburger span::before {
  top: 0;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.drawer-switch:checked ~ .drawer-hamburger span::after {
  top: 0;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #FAF8F5;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  .content {
    overflow: clip;
    padding-top: 110px;
    width: calc(100% + 296px);
    -webkit-transform: translateX(-296px);
    transform: translateX(-296px);
  }
}

@media screen and (max-width: 767px) {
  .content {
    width: calc(100% + 280px);
    padding-top: 80px;
    -webkit-transform: translateX(-280px);
    transform: translateX(-280px);
  }
}

.content .content-side {
  position: sticky;
  top: 0;
  width: 326px;
  height: 100vh;
}

@media screen and (max-width: 959px) {
  .content .content-side {
    top: 110px;
    width: 296px;
    height: calc(100dvh - 110px);
  }
}

@media screen and (max-width: 767px) {
  .content .content-side {
    top: 80px;
    width: 280px;
    height: calc(100dvh - 80px);
  }
}

.content .content-main {
  width: calc(100% - 326px);
  padding: 48px 56px 56px;
}

@media screen and (max-width: 1279px) {
  .content .content-main {
    padding: 48px;
  }
}

@media screen and (max-width: 1023px) {
  .content .content-main {
    padding: 40px;
  }
}

@media screen and (max-width: 959px) {
  .content .content-main {
    padding: 32px 24px 48px;
    width: calc(100% - 296px);
  }
}

@media screen and (max-width: 767px) {
  .content .content-main {
    width: calc(100% - 280px);
    padding: 20px 16px 48px;
  }
}

@media screen and (max-width: 959px) {
  .drawer-switch:checked ~ .content {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .drawer-switch:checked ~ .content {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.content.--login {
  width: 100%;
  padding-top: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .page-head {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .page-head {
    margin-bottom: 16px;
  }
}

.page-head__ttl {
  position: relative;
  padding-left: 32px;
  font-size: 2.2rem;
  font-weight: bold;
  word-break: break-all;
}

@media screen and (max-width: 959px) {
  .page-head__ttl {
    padding-left: 26px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page-head__ttl {
    font-size: 1.5rem;
  }
}

.page-head__ttl span[class^="ico-"] {
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  background: -webkit-gradient(linear, left top, right bottom, from(#F4BE09), to(#CC0A10));
  background: linear-gradient(to bottom right, #F4BE09, #CC0A10);
}

@media screen and (max-width: 959px) {
  .page-head__ttl span[class^="ico-"] {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .page-head__ttl span[class^="ico-"] {
    top: 1px;
  }
}

.page-head__ttl .ico-user {
  -webkit-mask-image: url("/img/backend/icon/user.svg");
  mask-image: url("/img/backend/icon/user.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__ttl .ico-agency {
  -webkit-mask-image: url("/img/backend/icon/agency.svg");
  mask-image: url("/img/backend/icon/agency.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__ttl .ico-customer {
  -webkit-mask-image: url("/img/backend/icon/customer.svg");
  mask-image: url("/img/backend/icon/customer.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__ttl .ico-topic {
  -webkit-mask-image: url("/img/backend/icon/topic.svg");
  mask-image: url("/img/backend/icon/topic.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__ttl .ico-project {
  -webkit-mask-image: url("/img/backend/icon/project.svg");
  mask-image: url("/img/backend/icon/project.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__ttl .ico-phase {
  -webkit-mask-image: url("/img/backend/icon/phase.svg");
  mask-image: url("/img/backend/icon/phase.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__add a, .page-head__back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 16px 0 12px;
  background: #ffffff;
  border: solid 1px #E3161B;
  border-radius: 4px;
  color: #E3161B;
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .page-head__add a, .page-head__back a {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .page-head__add a, .page-head__back a {
    border-radius: calc(4px * 0.5);
  }
}

.page-head__add a::before, .page-head__back a::before {
  content: '';
  background: #E3161B;
}

.page-head__add a::before {
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("/img/backend/icon/pen.svg");
  mask-image: url("/img/backend/icon/pen.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.page-head__back a::before {
  width: 14px;
  height: 12px;
  -webkit-mask-image: url("/img/backend/icon/back.svg");
  mask-image: url("/img/backend/icon/back.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .headline {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .headline {
    margin-bottom: 12px;
  }
}

.headline__main {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .headline__main {
    font-size: 1.5rem;
  }
}

.headline__main:not(:only-child) {
  width: calc(100% - 80px);
}

.headline__main.--project {
  color: #999999;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .headline__main.--project {
    font-size: 1.3rem;
  }
}

.headline .delete-btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  width: 64px;
  height: 28px;
  border-radius: 4px;
  background: #E3161B;
  border: solid 1px #E3161B;
  color: #ffffff;
  font-size: 1.2rem;
}

.headline .delete-btn label::before {
  content: '';
  width: 10px;
  height: 12px;
  background: #ffffff;
  -webkit-mask-image: url("/img/backend/icon/delete.svg");
  mask-image: url("/img/backend/icon/delete.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.headline .delete-btn label input {
  display: none;
}

.headline .delete-btn label:hover {
  background: #ffffff;
  color: #E3161B;
}

.headline .delete-btn label:hover::before {
  background: #E3161B;
}

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

.txt.--right {
  text-align: right;
}

.lead-txt {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .lead-txt {
    font-size: 1.5rem;
  }
}

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

.lead-txt.--right {
  text-align: right;
}

.link-txt {
  text-decoration: underline;
}

.link-txt:hover {
  text-decoration: none;
}

.note-txt {
  margin-left: 1em;
  font-size: 1.4rem;
  text-indent: -1em;
}

.note-txt::before {
  content: '※';
}

.fc-red {
  color: #E3161B;
}

.fc-aqu {
  color: #1FBCFF;
}

.fc-grn {
  color: #19743D;
}

.fc-yel {
  color: #ffff00;
}

.fc-orn {
  color: #EA910C;
}

.fc-l-orn {
  color: #F4BE09;
}

.fc-d-orn {
  color: #CC0A10;
}

.fc-beg {
  color: #FAF8F5;
}

.fc-blk {
  color: #404044;
}

.fc-wht {
  color: #ffffff;
}

.fc-gry {
  color: #cccccc;
}

.fc-l-gry {
  color: #e0e0e0;
}

.fc-d-gry {
  color: #999999;
}

.list__item {
  position: relative;
  padding-left: 16px;
}

.list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.list__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #404044;
  border-radius: 50%;
}

.num-list {
  counter-reset: list-num;
}

.num-list__item {
  margin-left: 1em;
  text-indent: -1em;
}

.num-list__item::before {
  counter-increment: list-num;
  content: counter(list-num) ".";
}

.note-list__item {
  margin-left: 1em;
  font-size: 1.3rem;
  text-indent: -1em;
}

.note-list__item::before {
  content: '※';
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.btn.--left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn.--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  min-height: 64px;
  padding: 6px 16px;
  background: #404044;
  border: solid 1px #404044;
  border-radius: 4px;
  color: #ffffff;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .btn a {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .btn a {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .btn a {
    min-height: 56px;
  }
}

.btn a:hover {
  background: #ffffff;
  color: #404044;
}

.btn a.bc-red {
  background: #E3161B;
}

.btn a.bc-red:hover {
  background: #ffffff;
  color: #E3161B;
}

.btn a.bc-aqu {
  background: #1FBCFF;
}

.btn a.bc-aqu:hover {
  background: #ffffff;
  color: #1FBCFF;
}

.btn a.bc-grn {
  background: #19743D;
}

.btn a.bc-grn:hover {
  background: #ffffff;
  color: #19743D;
}

.btn a.bc-yel {
  background: #ffff00;
}

.btn a.bc-yel:hover {
  background: #ffffff;
  color: #ffff00;
}

.btn a.bc-orn {
  background: #EA910C;
}

.btn a.bc-orn:hover {
  background: #ffffff;
  color: #EA910C;
}

.btn a.bc-l-orn {
  background: #F4BE09;
}

.btn a.bc-l-orn:hover {
  background: #ffffff;
  color: #F4BE09;
}

.btn a.bc-d-orn {
  background: #CC0A10;
}

.btn a.bc-d-orn:hover {
  background: #ffffff;
  color: #CC0A10;
}

.btn a.bc-beg {
  background: #FAF8F5;
}

.btn a.bc-beg:hover {
  background: #ffffff;
  color: #FAF8F5;
}

.btn a.bc-blk {
  background: #404044;
}

.btn a.bc-blk:hover {
  background: #ffffff;
  color: #404044;
}

.btn a.bc-wht {
  background: #ffffff;
}

.btn a.bc-wht:hover {
  background: #ffffff;
  color: #ffffff;
}

.btn a.bc-gry {
  background: #cccccc;
}

.btn a.bc-gry:hover {
  background: #ffffff;
  color: #cccccc;
}

.btn a.bc-l-gry {
  background: #e0e0e0;
}

.btn a.bc-l-gry:hover {
  background: #ffffff;
  color: #e0e0e0;
}

.btn a.bc-d-gry {
  background: #999999;
}

.btn a.bc-d-gry:hover {
  background: #ffffff;
  color: #999999;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: solid 1px #f1efec;
}

.pagination__item:not(:first-child) {
  border-left: none;
}

.pagination__item a,
.pagination__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.pagination__item.--prev a,
.pagination__item.--prev span, .pagination__item.--next a,
.pagination__item.--next span {
  color: #dedcda;
  font-size: 2rem;
}

.pagination__item:hover a,
.pagination__item:hover span, .pagination__item.is-active a,
.pagination__item.is-active span {
  color: #E3161B;
}

.pagination__item.is-disabled span {
  background: #fafafa;
  color: #cccccc;
  pointer-events: none;
}

.result-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .result-menu {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .result-menu {
    margin-bottom: 16px;
  }
}

.result-menu .result-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .result-menu .result-sort {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .result-menu .result-sort {
    gap: 12px 20px;
  }
}

.result-menu .result-sort__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

@media screen and (max-width: 959px) {
  .result-menu .result-sort__item {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .result-menu .result-sort__item {
    gap: 8px;
  }
}

.result-tbl {
  overflow: auto;
}

.result-tbl table {
  width: 100%;
}

.result-tbl table thead tr th {
  padding: 20px 16px;
  background: #FAF8F5;
  color: #988484;
  text-align: left;
  white-space: nowrap;
}

.result-tbl table thead tr th:first-child {
  border-radius: 4px 0 0 4px;
}

.result-tbl table thead tr th:last-child {
  border-radius: 0 4px 4px 0;
}

.result-tbl table tbody tr th,
.result-tbl table tbody tr td {
  padding: 16px;
  border-bottom: solid 1px #e0e0e0;
  vertical-align: middle;
}

.result-tbl table tbody tr:last-child th,
.result-tbl table tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: none;
}

[class^="result-"].--edit {
  position: relative;
  padding-left: 20px;
}

[class^="result-"].--edit::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #404044;
  -webkit-mask-image: url("/img/backend/icon/pen.svg");
  mask-image: url("/img/backend/icon/pen.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.result-project {
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  .result-project {
    margin-bottom: 0;
  }
}

.result-project a {
  width: 200px;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.result-name {
  white-space: nowrap;
}

@media screen and (max-width: 959px) {
  .result-name {
    white-space: wrap;
  }
}

.result-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 6px;
  background: #eeeeee;
  color: #999999;
}

@media screen and (max-width: 959px) {
  .result-progress {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .result-progress {
    width: 160px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 519px) {
  .result-progress {
    width: 120px;
    font-size: 1.2rem;
  }
}

.result-progress__txt {
  white-space: nowrap;
}

.result-progress__specifics {
  opacity: 0.5;
  font-size: 1.3rem;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .result-progress__specifics {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 519px) {
  .result-progress__specifics {
    font-size: 1.1rem;
  }
}

.result-progress.--red {
  background: #FFEFF4;
  color: #C90441;
}

.result-progress.--grn {
  background: #ECFFE2;
  color: #19743D;
}

.result-progress.--orn {
  background: #FFF1E0;
  color: #B75C00;
}

.result-progress.--yel {
  background: #FDFFD0;
  color: #866C01;
}

.result-topic {
  max-width: 400px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.result-topic-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 6px;
  background: #eeeeee;
  color: #999999;
  white-space: nowrap;
}

@media screen and (max-width: 959px) {
  .result-topic-status {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .result-topic-status {
    width: 160px;
  }
}

@media screen and (max-width: 519px) {
  .result-topic-status {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .result-topic-status__txt {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 519px) {
  .result-topic-status__txt {
    font-size: 1.2rem;
  }
}

.result-topic-status__specifics {
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .result-topic-status__specifics {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 519px) {
  .result-topic-status__specifics {
    font-size: 1.1rem;
  }
}

.result-topic-status.--red {
  background: #FFEFF4;
  color: #C90441;
}

.result-topic-status.--grn {
  background: #ECFFE2;
  color: #19743D;
}

.result-topic-status.--orn {
  background: #FFF1E0;
  color: #B75C00;
}

.result-topic-status.--yel {
  background: #FDFFD0;
  color: #866C01;
}

.result-specifics {
  color: #999999;
  font-size: 1.3rem;
  line-height: 1.2;
}

@media screen and (max-width: 959px) {
  .result-meta:not(:only-child) {
    width: calc(100% - 212px);
  }
}

@media screen and (max-width: 767px) {
  .result-meta:not(:only-child) {
    width: calc(100% - 172px);
  }
}

@media screen and (max-width: 519px) {
  .result-meta:not(:only-child) {
    width: calc(100% - 132px);
  }
}

@media screen and (max-width: 959px) {
  .result-meta__txt {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 519px) {
  .result-meta__txt {
    font-size: 1.2rem;
  }
}

.result-delete-th {
  width: 72px;
}

.result-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 959px) {
  .result-btn {
    gap: 6px;
    margin-left: auto;
  }
}

.result-btn__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 70px;
  height: 32px;
  padding: 0 12px;
  background: #E3161B;
  border: solid 1px #E3161B;
  border-radius: 60px;
  color: #ffffff;
  font-size: 1.3rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .result-btn__item {
    min-width: 60px;
    height: 28px;
    font-size: 1.2rem;
  }
}

.result-btn__item input {
  display: none;
}

.result-btn__item:hover {
  background: #ffffff;
  color: #E3161B;
}

.result-btn .result-btn-edit,
.result-btn .result-btn-delete,
.result-btn .result-btn-topic,
.result-btn .result-btn-project,
.result-btn .result-btn-phase,
.result-btn .result-btn-user {
  display: block;
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-edit,
  .result-btn .result-btn-delete,
  .result-btn .result-btn-topic,
  .result-btn .result-btn-project,
  .result-btn .result-btn-phase,
  .result-btn .result-btn-user {
    width: 32px;
    height: 32px;
  }
}

.result-btn .result-btn-edit::before,
.result-btn .result-btn-delete::before,
.result-btn .result-btn-topic::before,
.result-btn .result-btn-project::before,
.result-btn .result-btn-phase::before,
.result-btn .result-btn-user::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #cccccc;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.result-btn .result-btn-edit::before {
  width: 20px;
  height: 20px;
  background: #cccccc;
  -webkit-mask-image: url("/img/backend/icon/pen.svg");
  mask-image: url("/img/backend/icon/pen.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center,center;
  mask-position: center,center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-edit::before {
    width: 18px;
    height: 18px;
  }
}

.result-btn .result-btn-edit:hover::before {
  background: #19743D;
}

.result-btn .result-btn-delete::before {
  width: 15px;
  height: 19px;
  -webkit-mask-image: url("/img/backend/icon/delete.svg");
  mask-image: url("/img/backend/icon/delete.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center,center;
  mask-position: center,center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-delete::before {
    width: 13px;
    height: 17px;
  }
}

.result-btn .result-btn-delete input {
  display: none;
}

.result-btn .result-btn-delete:hover::before {
  background: #E3161B;
}

.result-btn .result-btn-topic::before {
  width: 20px;
  height: 20px;
  background: #cccccc;
  -webkit-mask-image: url("/img/backend/icon/topic.svg");
  mask-image: url("/img/backend/icon/topic.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center,center;
  mask-position: center,center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-topic::before {
    width: 18px;
    height: 18px;
  }
}

.result-btn .result-btn-topic:hover::before {
  background: #19743D;
}

.result-btn .result-btn-project::before {
  width: 20px;
  height: 20px;
  background: #cccccc;
  -webkit-mask-image: url("/img/backend/icon/project.svg");
  mask-image: url("/img/backend/icon/project.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center,center;
  mask-position: center,center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-project::before {
    width: 18px;
    height: 18px;
  }
}

.result-btn .result-btn-project:hover::before {
  background: #19743D;
}

.result-btn .result-btn-phase::before {
  width: 20px;
  height: 20px;
  background: #cccccc;
  -webkit-mask-image: url("/img/backend/icon/phase.svg");
  mask-image: url("/img/backend/icon/phase.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center,center;
  mask-position: center,center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-phase::before {
    width: 18px;
    height: 18px;
  }
}

.result-btn .result-btn-phase:hover::before {
  background: #19743D;
}

.result-btn .result-btn-user::before {
  width: 20px;
  height: 20px;
  background: #cccccc;
  -webkit-mask-image: url("/img/backend/icon/user.svg");
  mask-image: url("/img/backend/icon/user.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center,center;
  mask-position: center,center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .result-btn .result-btn-user::before {
    width: 18px;
    height: 18px;
  }
}

.result-btn .result-btn-user:hover::before {
  background: #19743D;
}

.result-list__item {
  position: relative;
  padding: 16px;
  background: #ffffff;
  border: solid 1px #f1efec;
  border-radius: 4px;
}

.result-list__item:not(:last-child) {
  margin-bottom: 4px;
}

.result-list .result-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 6px 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px #e0e0e0;
}

.result-list .result-list-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.panel {
  padding: 28px;
  background: #ffffff;
  border: solid 1px #f1efec;
  border-radius: 8px;
}

@media screen and (max-width: 959px) {
  .panel {
    border-radius: calc(8px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .panel {
    border-radius: calc(8px * 0.5);
  }
}

@media screen and (max-width: 767px) {
  .panel {
    padding: 16px;
  }
}

.panel.--search {
  padding: 0;
}

.frame {
  padding: 16px;
  border: solid 1px #cccccc;
}

.modal .modal-switch {
  display: none;
}

.modal-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100vw;
  height: 100vh;
  background: #404044;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.modal-switch:checked ~ .modal-overlay {
  opacity: 0.3;
  visibility: visible;
}

.modal-content {
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9998;
  width: calc(100% - 80px);
  max-width: 900px;
  max-height: calc(100% - 80px);
  padding: 56px 24px 24px;
  background: #ffffff;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}

@media screen and (max-width: 1279px) {
  .modal-content {
    width: calc(100% - 64px);
  }
}

@media screen and (max-width: 959px) {
  .modal-content {
    width: calc(100% - 48px);
    padding: 48px 20px 20px;
  }
}

@media screen and (max-width: 519px) {
  .modal-content {
    width: calc(100% - 32px);
    padding: 40px 16px 16px;
  }
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.modal-content img {
  width: auto;
  max-height: 100%;
  margin: 0 auto;
}

.modal-switch:checked ~ .modal-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: opacity .3s,  visibility .3s, -webkit-transform 0s;
  transition: opacity .3s,  visibility .3s, -webkit-transform 0s;
  transition: opacity .3s,  visibility .3s, transform 0s;
  transition: opacity .3s,  visibility .3s, transform 0s,  -webkit-transform 0s;
}

.modal .modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 9999;
  font-size: 3.2rem;
  line-height: 32px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .modal .modal-close {
    right: 20px;
    font-size: 2.4rem;
    line-height: 24px;
  }
}

@media screen and (max-width: 519px) {
  .modal .modal-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
    line-height: 20px;
  }
}

.modal .modal-close:hover {
  opacity: 0.8;
}

.search-acc-switch {
  display: none;
}

.search-acc-content {
  padding: 28px;
}

@media screen and (max-width: 959px) {
  .search-acc-content {
    display: none;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .search-acc-content {
    padding: 16px;
  }
}

@media screen and (max-width: 959px) {
  .search-acc-switch:checked ~ .search-acc-content {
    display: block;
  }
}

.search-acc-btn {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .search-acc-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .search-acc-btn {
    padding: 16px;
  }
}

.search-acc-btn::before {
  content: '';
  width: 10px;
  height: 12px;
  background: #E3161B;
  -webkit-mask-image: url("/img/backend/icon/change.svg");
  mask-image: url("/img/backend/icon/change.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.search-acc-btn::after {
  content: '検索条件変更';
  color: #E3161B;
  font-size: 1.3rem;
  font-weight: bold;
}

.search-acc-switch:checked ~ .search-acc-btn {
  padding-top: 0;
}

.search-acc-switch:checked ~ .search-acc-btn::before {
  display: none;
}

.search-acc-switch:checked ~ .search-acc-btn::after {
  content: '検索を閉じる';
}

/*# sourceMappingURL=../../../maps/backend/common/main.css.map */
