@import url(https://fonts.googleapis.com/css?family=Nunito);
@charset "UTF-8";
/**
    共通スタイル.
 */
html, body {
  font-size: 16px;
  background: white !important;
}

ul, ul > li {
  list-style: none;
}

pre {
  white-space: pre-wrap;
}

/**
    jQuery UI カスタマイズ.
 */
.ui-sortable-helper {
  display: table;
}

/**
    Bootstrapカスタマイズ.
 */
.form-control-lg {
  border-width: 1px;
}

/**
    DatePickerをカスタマイズ.
 */
.dp__input {
  line-height: 2em !important;
}

/**
    ユーティリティ.
 */
.c-mt-200 {
  margin-top: 200px !important;
}

.c-ml-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-mw-800 {
  max-width: 800px !important;
}

.c-w-100p {
  width: 100% !important;
}

.c-pointer {
  cursor: pointer;
}

.c-lh-160 {
  line-height: 1.6 !important;
}

.c-lh-200 {
  line-height: 2 !important;
}

.c-fs-12 {
  font-size: 12px !important;
}

.c-fs-14 {
  font-size: 14px !important;
}

.c-fs-16 {
  font-size: 16px !important;
}

.c-text {
  font-size: 14px;
  line-height: 1.6;
}

.c-fc-black {
  color: #000000;
}

.c-fc-gray {
  color: #a1a1a1;
}

.c-underline {
  text-decoration: underline;
}

.c-elb {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
    ヘッダー.
 */
.c-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 16px 24px;
}

.c-header-title {
  flex: 1;
}

.c-header.is-admin {
  background: #00bb00;
  color: #ffffff;
}

.c-header.is-user {
  text-align: center;
  background: #333333;
  color: #ffffff;
}

@media screen and (max-width: 640px) {
  .c-header {
    height: 32px;
  }

  .c-header-title {
    font-size: 12px;
  }

  .c-header-user {
    display: none;
  }
}
/**
    メインエリア.
 */
.c-main {
  display: flex;
  min-height: calc(100vh - 60px);
}

/**
    サイドバー
 */
.c-sidebar {
  flex: 0 0 200px;
  width: 200px;
  padding: 24px;
  border-right: 1px solid #cccccc;
}
@media screen and (max-width: 640px) {
  .c-sidebar {
    display: none;
  }
}

.c-sidebar-links > div {
  margin-bottom: 20px;
}

.c-sidebar-close {
  display: none;
}

.c-content {
  flex: 1 1 auto;
  padding: 16px;
}

/**
    サムネイル表示.
 */
.c-thumbnail {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

/**
    ラジオボタンでの一覧表示.
 */
.c-radio-item-list input[type=radio] {
  display: none;
}

.c-radio-item-list .c-radio-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.c-radio-item-list .c-radio-item.is-selected {
  border-color: #28a745;
  background: #eefff2;
}

.c-radio-item-list .c-radio-item-image {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 8px;
}
