@charset "UTF-8";

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

@media screen and (min-width:768px) {
  html {
    font-size: 75%;
  }
}

@media screen and (max-width:767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

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

ol,ul {
  list-style: none;
}

blockquote,q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

abbr[title],dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,select {
  vertical-align: middle;
}

img {
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: auto;
  font-style: italic;
  shape-margin: 0.75rem;
  background-repeat: no-repeat;
  background-size: cover;
}

button,img {
  line-height: 1;
}

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

:focus,button {
  outline: 0;
}

* {
  box-sizing: border-box;
}

* {
  min-height: 0;
  min-width: 0;
}

body {
  line-height: 1.8;
  color: #767676;
  font-size: 1.6rem;
  font-family: "Noto Sans JP",sans-serif;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

.display_sp {
  display: none !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt50 {
  margin-top: 50px !important;
}

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

  .display_pc {
    display: none !important;
  }
}

a {
  transition: ease .3s;
}

.layout {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
}

.sidebar {
  position: sticky;
  top: 0;
  width: 320px;
  height: 100vh;
  height: 100svh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 2;
  padding: 40px 0 40px 0;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .sidebar {
    box-shadow: 6px 0 6px -4px rgba(0,0,0,0.16);
  }
}

.sidebar .logo a {
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.sidebar .logo a img {
  width: min(100%,290px);
}

.sidebar .mode_title {
  width: calc(100% - 100px);
  margin: 20px auto 0 auto;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  background: #3661E2;
  border-radius: 5px;
}

@media (max-width: 1200px){
  .sidebar .mode_title {
    width: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  .sidebar .mode_title {
    margin: 20px;
  }
}

.gnav {
  margin-top: 30px;
}

.gnav li a {
  height: 84px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  align-items: center;
  font-size: 2rem;
  padding: 0 50px;
}

@media (max-height: 600px) {
  .sidebar {
    padding: 20px 0;
  }
  .gnav {
    margin-top: 20px;
  }
  .gnav li a {
    height: 64px;
  }
}

.gnav li a::before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url(../img/icon_kizuki.svg);
  mask-size: contain;
  transition: ease .3s;
}

@media (max-width: 1200px) {
  .sidebar {
    width: 260px;
  }
  .sidebar .logo a {
    padding: 0 20px;
  }
  .sidebar .logo a img {
    width: min(100%,200px);
  }
  .gnav li a {
    height: auto;
    font-size: 1.8rem;
    padding: 12px 20px;
    grid-template-columns: 40px 1fr;
  }
  .gnav li a::before {
    width: 40px;
    height: 40px;
  }
}

.gnav li a.icon_kizuki::before {
  mask-image: url(../img/icon_kizuki.svg);
}

.gnav li a.icon_condition::before {
  mask-image: url(../img/icon_condition.svg);
}

.gnav li a.icon_theme::before {
  mask-image: url(../img/icon_theme.svg);
}

.gnav li a.icon_reference::before {
  mask-image: url(../img/icon_reference.svg);
}

.gnav li a.icon_search::before {
  mask-image: url(../img/icon_search.svg);
}

.gnav li a.icon_dashboard::before {
  mask-image: url(../img/icon_dashboard.svg);
}

.gnav li a.icon_setting::before {
  mask-image: url(../img/icon_setting.svg);
}

.gnav li a.current::before,
.gnav li a:hover::before {
  background: #3661E2;
}

.gnav li a.current,
.gnav li a:hover {
  color: #3661E2;
  background: #F0F6FE;
  border-right: 4px solid #3661E2;
}

.sidebar_user_card {
  width: calc(100% - 84px);
  min-height: 64px;
  margin: auto auto 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #d9dde3;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: ease .3s;
}

.sidebar_user_card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sidebar_user_icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef1f6 url(../img/icon_login_user.svg) no-repeat center / cover;
}

.sidebar_user_body {
  min-width: 0;
}

.sidebar_user_name {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.sidebar_user_dept {
  margin-top: 2px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #555;
}

.profile_modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: ease .3s;
}

.profile_modal.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.profile_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.profile_modal_dialog {
  position: relative;
  width: calc(100% - 32px);
  max-width: 690px;
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.profile_modal_inner {
  padding: 34px 38px 40px;
}

.profile_modal_title {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
}

.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  z-index: 2;
}

.modal_close::before,
.modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #9ca3af;
  border-radius: 999px;
}

.modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.profile_modal_body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  margin-top: 24px;
}

.profile_modal_side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile_modal_avatar {
  width: 150px;
  height: 150px;
  padding: 10px;
  border-radius: 50%;
  position: relative;
  background: #f8fafc;
}

.profile_modal_avatar span {
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: url(../img/icon_login_user.svg) no-repeat center / contain;
}

.profile_modal_image_btn {
  min-width: 118px;
  height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  color: #4b5563;
}

.profile_modal_main {
  min-width: 0;
}

.profile_modal_sub_title {
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #374151;
}

.profile_history {
  width: 100%;
}

.profile_history_head,
.profile_history_row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
}

.profile_history_head {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  background: #f3f4f6;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  color: #6b7280;
}

.profile_history_row {
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  color: #4b5563;
}

.profile_history_row.is_current {
  color: #2563eb;
  font-weight: 700;
}

body.is_profile_modal_open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .profile_modal_dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 16px;
  }
  .profile_modal_inner {
    padding: 24px 18px 24px;
  }
  .profile_modal_title {
    font-size: 2.2rem;
  }
  .profile_modal_body {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 18px;
  }
  .profile_modal_avatar {
    width: 120px;
    height: 120px;
  }
  .profile_history_head,
  .profile_history_row {
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 0 12px;
    font-size: 1.4rem;
  }
}

.main {
  overflow: hidden;
}

.main_inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

    .report_loading {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      margin: 0 auto 16px auto;
    }

    .report_loading_svg {
      display: block;
      width: 32px;
      height: 32px;
      max-width: none;
    }
    
.report_ui {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  background: #F8FAFC;
}

.report_message_row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.report_message_row + .report_message_row {
  margin-top: 20px;
}

.report_messages {
  height: 100%;
  overflow-y: auto;
  padding: 32px 16px 150px;
}

.report_messages.is_initial {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 150px;
}

.report_messages.is_initial .report_message_row_initial {
  width: 100%;
  max-width: calc(100% - 70px);
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .report_messages.is_initial .report_message_row_initial {
    max-width: none;
  }
}

.report_messages.is_initial .report_avatar {
  width: 74px;
  height: 74px;
}

.report_messages.is_initial .report_card {
  max-width: 100%;
  width: 100%;
  padding: 28px 32px;
}

.report_messages.is_initial .report_card p {
  line-height: 1.9;
}

.report_messages.is_initial .report_card p:first-child {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 10px;
}

@media (max-width: 767px){
  .report_message_row_initial {
    max-width: none;
  }
  .report_messages.is_initial .report_card p:first-child {
    font-size: 2rem;
  }
}

.report_messages.is_initial .report_card p + p {
  margin-top: 4px;
}

.report_message_row_left {
  justify-content: flex-start;
}

.report_message_row_right {
  justify-content: flex-end;
}

.report_message_row_right .report_card {
  order: 1;
}

.report_message_row_right .report_avatar {
  order: 2;
}

.icon_applause {
  width: 60px;
}

.report_avatar {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

@media (max-width: 767px) {
  .report_avatar {
    width: 40px;
    height: 40px;
  }
}

.report_avatar_kizukina {
  background: #ffffff url(../img/logo_circle.webp) no-repeat center / cover;
}

.report_avatar_user {
  background: #ffffff url(../img/icon_login_user.svg) no-repeat center / cover;
}

.report_card {
  max-width: calc(100% - 56px);
  padding: 20px 20px 24px;
}

@media (max-width: 767px) {
  .report_card {
    max-width: 100%;
  }
}

.report_message_row_left .report_card {
  border-top-left-radius: 4px;
}

.report_message_row_right .report_card {
  border-top-right-radius: 4px;
}

.report_card p + p {
  margin-top: 8px;
}

.report_card_user {
  background: #ffffff;
}

.report_card_kizukina {
  background: #ffffff;
}

.report_actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.report_btn {
  flex: 1;
  height: 52px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: ease .3s;
}

.report_btn_primary {
  color: #fff;
  background: #3661E2;
  border: 1px solid #3661E2;
}

.report_btn_primary:hover {
  color: #3661E2;
  background: #f1f5f9;
}

.report_btn_secondary {
  color: #3661E2;
  background: #fff;
  border: 1px solid #3661E2;
}

.report_btn_secondary:hover {
  color: #fff;
  background: #3661E2;
}

.report_form {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.report_form_inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px 10px 16px;
  background: #fff;
  border: 2px solid #3661E2;
  border-radius: 10px;
}

.report_form_inner.is_disabled {
  background: #f3f4f6;
  border-color: #cbd5e1;
}

.report_textarea {
  flex: 1;
  min-width: 0;
  height: 24px;
  min-height: 24px;
  max-height: 120px;
  padding: 0;
  resize: none;
  overflow-y: auto;
  border: 0;
  outline: 0;
  background: transparent;
  color: #767676;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP",sans-serif;
  display: block;
}

.report_textarea:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

.report_textarea:disabled::placeholder {
  color: #9ca3af;
}

.report_textarea::placeholder {
  color: #B3B3B3;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 8px;
}

.report_submit {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #3661E2;
  position: relative;
}

.report_submit:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  pointer-events: none;
}

.report_submit::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background: #fff;
  mask-image: url(../img/icon_send.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.report_form_icon {
  width: 40px;
  aspect-ratio: 46.592 / 38.855;
  flex-shrink: 0;
  display: block;
  background: #9A9A9A;
  mask-image: url(../img/icon_baloon.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.report_form_note {
  margin-top: 10px;
  text-align: center;
  font-size: 1.2rem;
  color: #9A9A9A;
  line-height: 1.4;
}

.menu_toggle {
  display: none;
}

.menu_overlay {
  display: none;
}

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

  .menu_toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    padding: 0 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  }

  .menu_toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: ease .3s;
  }

  .menu_toggle.is_open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu_toggle.is_open span:nth-child(2) {
    opacity: 0;
  }

  .menu_toggle.is_open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu_overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: ease .3s;
    z-index: 999;
  }

  .menu_overlay.is_open {
    opacity: 1;
    visibility: visible;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    padding: 30px 0 10px 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: ease .3s;
  }

  .sidebar.is_open {
    transform: translateX(0);
  }

  .main {
    min-height: 100vh;
  }

  .main_inner {
    max-width: none;
    width: 100%;
    height: 100vh;
  }

  .report_ui {
    height: 100vh;
  }

  .report_messages {
    padding: 72px 16px 150px;
  }

  .report_form {
    left: 16px;
    right: 16px;
    bottom: 12px;
  }

  body.menu_open {
    overflow: hidden;
  }
}

.main {
  flex: 1;
  min-width: 0;
  background: #f5f6f8;
}

.report_detail {
  max-width: 1080px;
  padding: 44px 38px 60px;
}

.report_detail_head {
  margin-bottom: 26px;
}

.report_detail_body {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.report_card {
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.report_content_card {
  flex: 1;
  min-width: 0;
  padding: 28px 26px 30px;
}

.report_score_card {
  width: 320px;
  padding: 28px 24px 26px;
}

.report_card_title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
}

.report_card_title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.report_post {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.report_post_user {
  flex: 0 0 54px;
}

.report_post_user_icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f3f6;
}

.report_post_user_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report_post_body {
  flex: 1;
  min-width: 0;
}

.report_post_text {
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid #d9dde3;
  border-radius: 14px;
  background: #fbfbfc;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #444;
}

.report_post_text p{
  margin-top: 0!important;
}

.report_post_text p.tt{
  font-weight: bold;
  font-size: 1.8rem;
  color: #000;
}

.report_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.report_tag_item {
  min-width: 112px;
  padding: 8px 16px;
  border: 1px solid #bfc5cf;
  border-radius: 999px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #555;
  text-align: center;
}

.report_post_action {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.report_share_status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #5a7cff;
  border-radius: 8px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #5a7cff;
}

.report_share_status_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.report_like_count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #ef8f8f;
  border-radius: 8px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #e26b6b;
}

.report_like_count_icon {
  font-size: 2rem;
  line-height: 1;
}

.report_feedback {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
}

.report_feedback_icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

.report_feedback_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.report_feedback_body {
  flex: 1;
  min-width: 0;
}

.report_feedback_text {
  padding: 18px 22px;
  border: 1px solid #d9dde3;
  border-radius: 14px;
  background: #fbfbfc;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #444;
}

.report_score_reason_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
  padding-left: 72px;
}

.report_score_reason_item {
  min-height: 156px;
  padding: 18px 18px 16px;
  border: 1px solid #d9dde3;
  border-radius: 14px;
  background: #fbfbfc;
}

.report_score_reason_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.report_score_reason_title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}

.report_score_reason_score {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #5a7cff;
}

.report_score_reason_text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
}

.report_score_card_title {
  margin-bottom: 18px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  text-align: center;
}

.report_radar {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.report_radar_svg {
  display: block;
  width: 240px;
  height: 240px;
}

.report_radar_grid_outer,
.report_radar_grid_middle,
.report_radar_grid_inner {
  fill: none;
  stroke: #c7ccd6;
  stroke-width: 1.5;
}

.report_radar_axis {
  stroke: #c7ccd6;
  stroke-width: 1.5;
}

.report_radar_value {
  fill: rgba(90, 124, 255, 0.16);
  stroke: #5a7cff;
  stroke-width: 2.5;
}

.report_radar_point {
  fill: #5a7cff;
}

.report_radar_scale_text {
  font-size: 1.2rem;
  fill: #777;
  text-anchor: middle;
}

.report_radar_label {
  position: absolute;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #444;
  text-align: center;
}

.report_radar_label_top {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.report_radar_label_right {
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
}

.report_radar_label_bottom {
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.report_radar_label_left {
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
}

.report_total_score {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-top: 26px;
}

.report_total_score_label {
  font-size: 2rem;
  line-height: 1.5;
  color: #333;
}

.report_total_score_num {
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
  color: #5a7cff;
}

.report_total_score_unit {
  font-size: 2rem;
  line-height: 1.5;
  color: #333;
}

@media screen and (max-width: 1200px) {
  .report_detail_body {
    flex-direction: column;
  }

  .report_score_card {
    width: 100%;
  }

  .report_radar {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .report_detail {
    padding: 28px 20px 40px;
  }
  .report_content_card,
  .report_score_card {
    max-width: none;
    padding: 22px 18px;
  }
  .report_post,
  .report_feedback {
    gap: 14px;
  }
  .report_post_user,
  .report_feedback_icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }
  .report_score_reason_list {
    grid-template-columns: 1fr;
    padding-left: 58px;
  }
  .report_post_action {
    flex-direction: column;
    align-items: flex-start;
  }
  .report_radar {
    transform: scale(0.92);
    transform-origin: center top;
  }
}

.report_chip {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 5px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
}

.report_chip_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.report_chip_icon img {
  width: 14px;
}

.report_chip_like {
  min-width: 72px;
  margin-top: 12px;
  padding: 0 12px;
  border: 1px solid #ef8f8f;
  color: #e26b6b;
  background: #FCF2F2;
  border-radius: 999px;
}

.report_chip_action {
  min-width: 74px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid #d9dde3;
  color: #555;
}

@media screen and (max-width: 767px) {
  .report_chart_column {
    border-radius: 14px;
  }
}

.theme_rank_metric_num span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #666;
}

.theme_expert_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #dbe4f2;
  position: relative;
}

.theme_expert_link a:hover {
  background: #edf4fb;
}

.theme_expert_link a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #65758c;
  border-right: 2px solid #65758c;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .expert_card_grid,
  .theme_button_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.report_chart_bar_area {
  position: relative;
}

.report_chart_bar_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.report_chart_icon_btn {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -8px;
  border: 1px solid #d9dde3;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.report_chart_icon_btn img {
  width: 14px;
}

.report_modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: ease .3s;
}

.report_modal.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.report_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.report_modal_dialog {
  position: relative;
  width: calc(100% - 32px);
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 20px;
}

.report_modal_inner {
  padding: 0 0 30px 0;
}

.report_modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: ease .3s;
}

.report_modal.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.report_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.report_modal_dialog {
  position: relative;
  width: calc(100% - 60px);
  max-width: 930px;
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.report_modal_inner {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.report_modal_inner h2 {
  padding: 14px 70px;
  background: #efe5b8;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #b15d14;
}

.report_modal_body {
  padding: 28px 46px 40px;
}

.report_modal_section + .report_modal_section {
  margin-top: 26px;
}

.report_modal_inner h3 {
  position: relative;
  margin: 0 0 18px 0;
  padding-left: 16px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #1f2937;
}

.report_modal_inner h3::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 5px;
  height: 1.1em;
  border-radius: 2px;
}

.report_modal_inner h3.houkoku::before {
  background: #3b82f6;
}

.report_modal_inner h3.ai_review::before {
  background: #22c55e;
}

.report_modal_inner h3.ai_teian::before {
  background: #f59e0b;
}

.report_modal_text {
  color: #6b7280;
}

.report_modal_text p {
  font-size: 1.6rem;
  line-height: 1.9;
}

.report_modal_text p + p {
  margin-top: 8px;
}

.report_modal_lead {
  font-weight: 700;
  color: #374151;
}

.report_modal_todo_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
}

.report_modal_todo_list {
  margin-top: 1em;
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 12px;
}

.report_modal_todo_list li {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
  color: #6b7280;
}

.report_modal_todo_list li label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.report_modal_todo_list li label input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  margin-top: 0.35em;
  accent-color: #2563eb;
}

.report_modal_todo_list li label span {
  flex: 1;
  min-width: 0;
}

.report_modal_todo_btn {
  flex-shrink: 0;
  min-width: 106px;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #2563eb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .report_modal_dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 16px;
  }
  .report_modal_inner {
    max-height: calc(100vh - 20px);
  }
  .report_modal_inner h2 {
    padding: 14px 54px 14px 20px;
    text-align: left;
    font-size: 1.8rem;
  }
  .report_modal_body {
    padding: 20px 20px 28px;
  }
  .report_modal_inner h3 {
    font-size: 1.8rem;
  }
  .report_modal_text p,
  .report_modal_todo_list li {
    font-size: 1.5rem;
  }
  .report_modal_todo_wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .report_modal_todo_btn {
    width: 100%;
  }
}

.report_catalog_card_emphasis {
  border-radius: 0 5px 5px 0;
}

.report_catalog_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.report_catalog_icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .report_panel_head,
  .report_panel_head_wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .report_legend {
    justify-content: flex-start;
  }

  .report_catalog_expert {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .report_catalog_card,
  .report_catalog_card_emphasis,
  .report_catalog_card_subtle {
    display: block;
  }
}

.report_page {
  padding-bottom: 70px;
}

.report_page_meta {
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
}

.report_panel {
  padding: 24px;
}

.report_panel + .report_panel {
  margin-top: 28px;
}

.report_panel_notice {
  padding: 12px 18px;
  border-radius: 16px;
}

.report_notice {
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.report_notice_icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.report_notice_text {
  padding: 14px 20px;
}

.report_panel_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.report_panel_head_line {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #d9dde3;
}

.report_panel_title {
  margin-bottom: 0;
}

.report_panel_title_icon {
  width: 42px;
}

.report_panel_head_wide {
  align-items: flex-start;
}

.report_link_more {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #3661E2;
}

.report_legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.report_legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #767676;
}

.report_legend li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.report_legend .is_company::before,
.report_chart_bar.is_company {
  background: #2563eb;
}

.report_legend .is_department::before,
.report_chart_bar.is_department {
  background: #60a5fa;
}

.report_legend .is_self::before {
  background: #93c5fd;
}

.report_legend .is_almost::before,
.report_chart_bar.is_almost {
  background: #cbd5e1;
}

.report_legend .is_try::before,
.report_chart_bar.is_try {
  background: #94a3b8;
}

.report_legend .is_none::before,
.report_chart_bar.is_none {
  background: #f1f5f9;
}

.report_chart {
  --report_chart_top: 8px;
  --report_chart_bottom: 20px;
  --report_chart_height: 240px;
  --report_chart_rows: 6;
  display: flex;
  align-items: stretch;
  gap: 26px;
}

.report_chart_axis {
  flex: 0 0 48px;
  display: grid;
  grid-template-rows: repeat(var(--report_chart_rows), 1fr);
  height: var(--report_chart_height);
  margin-top: var(--report_chart_top);
  margin-bottom: var(--report_chart_bottom);
}

.report_chart_axis span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #767676;
}

.report_chart_columns {
  position: relative;
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
  padding-top: var(--report_chart_top);
  padding-bottom: var(--report_chart_bottom);
}

.report_chart_columns::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--report_chart_top);
  height: var(--report_chart_height);
  z-index: 0;
  background-image: linear-gradient(#9ca3af, #9ca3af),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(16.6667% - 1px),
      #d9dde3 calc(16.6667% - 1px),
      #d9dde3 16.6667%
    );
  background-repeat: no-repeat, no-repeat;
  background-size: 2px 100%, 100% 100%;
  background-position: left top, left top;
  pointer-events: none;
}

.report_chart_columns::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--report_chart_top) + var(--report_chart_height));
  z-index: 0;
  border-bottom: 2px solid #9ca3af;
  pointer-events: none;
}

.report_chart_column {
  position: relative;
  z-index: 1;
  text-align: center;
}

.report_chart_bar_area {
  height: var(--report_chart_height);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.report_chart_bar {
  display: block;
  width: 38px;
  max-width: 100%;
  border-radius: 6px 6px 0 0;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
}

.report_chart_date {
  margin-top: 8px;
  min-height: 1.4em;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  color: #222;
}

.report_catalog {
  display: grid;
  gap: 12px;
}

.report_catalog_expert {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1.28fr) repeat(3, minmax(0, 1fr));
}

.report_catalog_card {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  background: #fff;
}

.report_catalog_card_emphasis {
  background: #efe3af;
  border-color: #e1c972;
  box-shadow: inset 5px 0 0 #d28d2f;
}

.report_catalog_card_subtle {
  background: #eef1f6;
}

.report_catalog_badge {
  position: absolute;
  top: 12px;
  left: 96px;
}

.report_catalog_badge span,
.report_status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}

.report_catalog_badge span {
  background: #d28d2f;
  color: #fff;
}

.report_status_badge {
  margin-bottom: 8px;
  background: #67748d;
  color: #fff;
}

.report_catalog_icon {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f6ead0;
}

.report_catalog_icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  mask-image: url(../img/icon_setting.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.report_catalog_icon.is_gold {
  background: #f6ead0;
  color: #d28d2f;
}

.report_catalog_icon.is_silver {
  background: #eef1f6;
  color: #8b96ab;
}

.report_catalog_icon.is_gray {
  background: #f0f2f6;
  color: #7c879c;
}

.report_catalog_body {
  min-width: 0;
}

.report_catalog_card_emphasis .report_catalog_body,
.report_catalog_card_subtle .report_catalog_body {
  padding-top: 18px;
}

.report_catalog_name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
}

.report_catalog_name_small {
  font-size: 1.6rem;
}

.report_catalog_meta {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #666;
}

.report_catalog_card_emphasis .report_catalog_meta {
  padding: 2px 6px;
  color: #CC7C2F;
  background: #fff;
  border-radius: 5px;
}

.report_catalog_expert .report_catalog_card:not(.report_catalog_card_emphasis):not(.report_catalog_card_subtle) {
  display: block;
  padding: 14px 14px 16px;
}

@media (max-width: 1300px) {
  .report_catalog_expert .report_catalog_card:not(.report_catalog_card_emphasis):not(.report_catalog_card_subtle) {
    display: flex;
    align-items: center;
  }
}

.report_catalog_expert .report_catalog_card:not(.report_catalog_card_emphasis):not(.report_catalog_card_subtle) .report_catalog_icon {
  margin-bottom: 10px;
}

.report_catalog_expert .report_catalog_card:not(.report_catalog_card_emphasis):not(.report_catalog_card_subtle) .report_catalog_body {
  min-width: 0;
}

.report_catalog_expert .report_catalog_card:not(.report_catalog_card_emphasis):not(.report_catalog_card_subtle) .report_catalog_name {
  font-size: 1.6rem;
  line-height: 1.45;
}

.report_catalog_expert .report_catalog_card:not(.report_catalog_card_emphasis):not(.report_catalog_card_subtle) .report_catalog_meta {
  margin-top: 4px;
}

@media screen and (max-width: 1300px) {
  .report_panel_head,
  .report_panel_head_wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .report_legend {
    justify-content: flex-start;
  }

  .report_catalog_expert {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 900px) {
  .report_chart {
    gap: 14px;
  }

  .report_chart_axis {
    flex-basis: 72px;
  }

  .report_chart_columns {
    gap: 10px;
  }

  .report_chart_bar {
    width: 34px;
  }

  .report_chart_date {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .report_chart {
    --report_chart_top: 0px;
    --report_chart_bottom: 0px;
    --report_chart_height: 140px;
    transform: scale(0.6);
    transform-origin: top left;
    width: calc(100% / 0.6);
    margin-bottom: -65px;
  }

  .report_page {
    padding-bottom: 44px;
  }

  .report_page_meta {
    font-size: 1.6rem;
  }

  .report_panel,
  .report_panel_notice {
    padding: 20px 16px;
  }

  .report_notice {
    gap: 12px;
  }

  .report_notice_icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .report_notice_text {
    padding: 14px 16px;
    font-size: 1.5rem;
  }

  .report_chart {
    display: flex;
  }

  .report_chart_axis {
    display: grid;
  }

  .report_chart_columns {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    padding-top: var(--report_chart_top);
    gap: 10px;
  }

  .report_chart_columns::before,
  .report_chart_columns::after {
    display: block;
  }

  .report_chart_column {
    padding: 0;
    border: none;
    background: none;
  }

  .report_chart_bar_area {
    height: 140px;
  }

  .report_chart_bar {
    width: 36px;
  }

  .report_chart_date {
    margin-top: 10px;
    font-size: 1.6rem;
  }

  .report_chip {
    min-width: 68px;
    height: 32px;
    font-size: 1.3rem;
  }

  .report_catalog_expert {
    grid-template-columns: 1fr;
  }

  .report_catalog_card {
    min-height: auto;
  }

  .report_catalog_badge {
    position: static;
    margin-bottom: 10px;
  }

  .report_catalog_icon {
    margin-bottom: 12px;
  }
}

.theme_page {
  max-width: 1080px;
  padding: 38px 36px 56px;
}

.theme_page_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.page_title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

@media (max-width: 767px){
  .page_title {
    font-size: 2.6rem;
  }
}

.page_meta {
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
}

.theme_trend_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 1150px){
  .theme_trend_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px){
  .theme_trend_grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.theme_trend_card {
  min-height: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 14px;
  border: 1px solid #d7dbe2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.theme_trend_icon {
  width: 45px;
  height: 45px;
}

.theme_trend_icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.theme_trend_body {
  min-width: 0;
}

.theme_trend_status {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.theme_trend_value {
  margin-top: 2px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.theme_trend_title {
  min-width: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
  text-align: right;
  word-break: break-word;
}


.theme_rank_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.theme_rank_col {
  display: grid;
  gap: 16px;
}

.theme_rank_card {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 50px 50px;
  gap: 10px;
  align-items: center;
  padding: 16px 14px 16px 18px;
  border: 1px solid #e2e5ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.theme_rank_main {
  min-width: 0;
  display: grid;
  grid-template-columns: 2em minmax(0, 1fr) 142px;
  align-items: center;
  column-gap: 10px;
}

.theme_rank_no {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #777;
  text-align: center;
}

.theme_rank_title {
  min-width: 0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
  word-break: break-word;
}

.theme_rank_metric {
  min-width: 0;
}

.theme_rank_metric_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.theme_rank_metric_label {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #666;
}

.theme_rank_metric_num {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #3661E2;
}

.theme_rank_bar {
  height: 14px;
  border-radius: 999px;
  background: #eceff5;
  overflow: hidden;
}

.theme_rank_bar_value {
  height: 100%;
  border-radius: 999px;
  background: #3d66e3;
}

.theme_rank_badge a{
  aspect-ratio: 1 / 1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fcf6ea;
  border: 1px solid #f2e3c5;
}

.theme_rank_badge a:hover{
  background: #f4e7cf;
}

.theme_rank_badge img {
  display: block;
}

@media screen and (max-width: 1200px) {
  .theme_page_head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1200px) {
  .theme_rank_grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .theme_page {
    padding: 28px 20px 40px;
  }
  .theme_rank_main {
    grid-template-columns: 34px 1fr;
    row-gap: 12px;
  }
  .theme_rank_metric {
    grid-column: 1 / -1;
  }
}

.reference_list {
  display: grid;
  gap: 40px;
}

.reference_card {
  padding: 14px 18px 18px;
}

.reference_card_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.reference_person {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.reference_avatar {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #ccd5df;
}

.reference_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference_person_body {
  min-width: 0;
}

.reference_person_body .name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.reference_person_body .position{
  margin-top: 0;
}

.reference_card_meta .date{
  font-size: 1.4rem;
  line-height: 1.5;
  color: #8f8f8f;
  margin-bottom: 6px;
  text-align: right;
}

.reference_card_meta ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.reference_card_meta ul li{
  min-width: 100px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #a7a7a7;
  border-radius: 999px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #444;
  text-align: center;
}

.reference_text {
  margin-top: 16px;
  padding: 18px 20px;
}

@media screen and (max-width: 900px) {
  .reference_card_head {
    flex-direction: column;
    align-items: stretch;
  }

  .reference_card_meta,
  .reference_tag_list {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .reference_list {
    gap: 24px;
  }

  .reference_card {
    padding: 16px;
  }

  .reference_person {
    gap: 12px;
  }

  .reference_avatar {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .reference_person_name {
    font-size: 1.8rem;
  }

  .reference_card_meta {
    gap: 10px;
  }

  .reference_tag_list {
    gap: 8px;
  }

  .reference_tag_item {
    min-width: 0;
    padding: 0 14px;
    font-size: 1.3rem;
  }

  .reference_text {
    margin-top: 14px;
    padding: 16px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.report_expert_page {
  max-width: 1080px;
  padding-top: 42px;
  padding-bottom: 60px;
}

.expert_section + .expert_section {
  margin-top: 38px;
}

.expert_section_title {
  position: relative;
  margin-bottom: 18px;
  padding-left: 10px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.expert_section_title::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 4px;
  height: 0.92em;
  background: #3661E2;
  border-radius: 2px;
}

.expert_card_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expert_person_card {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 18px 20px 16px;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  background: #fff;
}

.expert_person_icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fcf3cc;
}

.expert_person_card_silver .expert_person_icon {
  background: #eef1f6;
}

.expert_person_card_copper .expert_person_icon {
  background: #f7efe7;
}

.expert_person_icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.expert_person_body {
  min-width: 0;
}

.expert_person_name {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.expert_person_dept,
.expert_person_date {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #9a9a9a;
}

.theme_button_grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.theme_button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid #d9dde3;
  border-radius: 6px;
  background: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  text-align: center;
}

.theme_button.is_current {
  border-color: #3661E2;
  background: #3661E2;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .expert_card_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme_button_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .report_expert_page {
    padding: 28px 20px 40px;
  }

  .expert_section_title {
    font-size: 2.6rem;
  }

  .expert_card_grid {
    gap: 8px;
  }

  .theme_button_grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .expert_person_card {
    min-height: auto;
    gap: 10px;
    padding: 10px;
  }

  .expert_person_icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }

  .expert_person_name {
    font-size: 1.6rem;
  }

  .theme_button {
    min-height: 52px;
    font-size: 1.6rem;
  }
}

.admin_user_page {
  max-width: 1150px;
}

.admin_user_page_head {
  margin-bottom: 24px;
}

.admin_user_panel {
  display: grid;
  gap: 18px;
}

.admin_user_filter_card,
.admin_user_table_card {
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.admin_user_filter_card {
  padding: 14px;
}

.admin_user_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin_user_filter_primary,
.admin_user_filter_secondary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin_user_filter_primary {
  flex: 1;
  min-width: 0;
}

.admin_user_filter_secondary {
  flex-shrink: 0;
}

.admin_user_select_wrap {
  position: relative;
  flex: 0 0 150px;
}

.admin_user_select_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.admin_user_select,
.admin_user_keyword {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: 1px solid #d9dde3;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP",sans-serif;
}

.admin_user_select {
  padding-right: 38px;
  appearance: none;
}

.admin_user_keyword {
  min-width: 0;
}

.admin_user_keyword::placeholder {
  color: #b3b3b3;
}

.admin_user_search_btn,
.admin_user_export_btn {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 1.4;
}

.admin_user_search_btn {
  flex-shrink: 0;
  color: #fff;
  background: #3661E2;
}

.admin_user_search_btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  mask-image: url(../img/icon_search.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.admin_user_note {
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #cad6ff;
  border-radius: 6px;
  background: #f7f9ff;
  color: #3f69e8;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.admin_user_note::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #3f69e8;
  mask-image: url(../img/icon_hourglass.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.admin_user_export_btn {
  flex-shrink: 0;
  border: 1px solid #3f69e8;
  color: #3f69e8;
  background: #fff;
}

.admin_user_export_btn::before {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  mask-image: url(../img/icon_down.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.admin_user_table_card {
  overflow: visible;
}

.admin_user_table_wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.admin_user_table {
  width: 100%;
  min-width: 1080px;
}

.admin_user_table thead th {
  padding: 16px 20px;
  border-bottom: 1px solid #dfe4eb;
  background: #f9fafc;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #666;
  text-align: left;
  white-space: nowrap;
}

.admin_user_table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #e7ebf0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #444;
  vertical-align: middle;
}

.admin_user_table tbody tr:last-child td {
  border-bottom: 0;
}

.admin_user_id {
  width: 78px;
  max-width: 78px;
  overflow: hidden;
  font-size: 1.5rem;
  color: #9a9a9a;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin_user_name {
  min-width: 104px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  white-space: nowrap;
}

.admin_user_department {
  white-space: nowrap;
}

.admin_user_count {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  white-space: nowrap;
}

.admin_user_metric {
  width: 104px;
}

.admin_user_metric_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #666;
}

.admin_user_metric_head span:first-child {
  font-weight: 700;
  color: #333;
}

.admin_user_metric_bar {
  height: 10px;
  border-radius: 999px;
  background: #e9edf3;
  overflow: hidden;
}

.admin_user_metric_bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #4678e7;
}

.admin_user_metric_complete .admin_user_metric_bar span {
  background: #51b37b;
}

.admin_user_metric_warn .admin_user_metric_bar span {
  background: #e7a23a;
}

.admin_user_point {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  white-space: nowrap;
}

.admin_user_chip_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin_user_chip_list li {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid #d8dde6;
  border-radius: 6px;
  background: #f7f9fc;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #667085;
}

.admin_user_chip_list li::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: #9aa5b8;
  mask-image: url(../img/icon_setting.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.admin_user_table_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.admin_user_table_result {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #666;
}

.admin_user_pager {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin_user_pager_prev,
.admin_user_pager_next,
.admin_user_pager_num,
.admin_user_pager_dots {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1.5rem;
  line-height: 1;
  color: #777;
}

.admin_user_pager_num.is_current {
  color: #fff;
  background: #3661E2;
}

.admin_user_pager_prev::before,
.admin_user_pager_next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #888;
  border-right: 2px solid #888;
}

.admin_user_pager_prev::before {
  transform: rotate(-135deg);
}

.admin_user_pager_next::before {
  transform: rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .admin_user_filter {
    flex-direction: column;
    align-items: stretch;
  }

  .admin_user_filter_secondary {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .admin_user_filter_card {
    padding: 12px;
  }
  .admin_user_filter_primary,
  .admin_user_filter_secondary {
    flex-direction: column;
    align-items: stretch;
  }
  .admin_user_select_wrap {
    flex-basis: auto;
  }
  .admin_user_note,
  .admin_user_export_btn,
  .admin_user_search_btn {
    width: 100%;
  }
  .admin_user_note {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .admin_user_table thead th,
  .admin_user_table tbody td {
    padding: 12px 14px;
  }
  .admin_user_name,
  .admin_user_count,
  .admin_user_point {
    font-size: 1.8rem;
  }
  .admin_user_table_footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin_user_pager {
    width: 100%;
    justify-content: flex-end;
  }
}

.admin_page_head {
  margin-bottom: 30px;
}

.admin_setting_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 22px;
}

.admin_setting_card {
  min-height: 296px;
  padding: 16px 16px 14px;
  border: 1px solid #d7dde7;
  border-radius: 12px;
  background: #fff;
}

.admin_setting_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin_setting_icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.admin_setting_icon svg {
  display: block;
}

.admin_setting_title {
  min-width: 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.admin_setting_line {
  height: 1px;
  margin-top: 10px;
  background: #999;
}

.admin_setting_label {
  display: block;
  margin-top: 16px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #777;
}

.admin_setting_field,
.admin_setting_textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 20px;
  border: 1px solid #d7dde7;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
}

.admin_setting_field::placeholder,
.admin_setting_textarea::placeholder {
  color: #b3b3b3;
}

.admin_setting_textarea {
  min-height: 90px;
  resize: vertical;
}

.admin_setting_note {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #888;
}

.admin_setting_button {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #3d66e3;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 1200px) {
  .mode_title,
  .sidebar_user_card {
    width: calc(100% - 40px);
  }

  .mode_title {
    margin-top: 30px;
    margin-bottom: 38px;
    font-size: 1.6rem;
  }

  .sidebar_user_name {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 767px) {
  .mode_title {
    width: calc(100% - 32px);
    margin: 24px auto 28px;
    min-height: 48px;
  }

  .sidebar_user_card {
    width: calc(100% - 32px);
    margin-bottom: 24px;
  }

  .admin_setting_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .admin_setting_card {
    min-height: auto;
    padding: 16px;
  }

  .admin_setting_title {
    font-size: 1.8rem;
  }

  .admin_setting_field,
  .admin_setting_textarea {
    padding: 12px 14px;
  }
  .admin_setting_button {
    height: 46px;
    font-size: 1.6rem;
  }
}

.admin_dashboard_page {
  max-width: 1080px;
}

.admin_dashboard_cards {
  display: grid;
  gap: 34px;
}

.admin_dashboard_card {
  padding: 16px 20px 24px;
  border: 1px solid #d7dde7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.admin_dashboard_card_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.admin_dashboard_card_head_single {
  margin-bottom: 10px;
}

.admin_dashboard_title_wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin_dashboard_title_icon {
  flex: 0 0 28px;
  width: 28px;
}

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

.admin_dashboard_title_icon_ai {
  flex-basis: 26px;
  width: 26px;
}

.admin_dashboard_title {
  min-width: 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.admin_dashboard_meta_row {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.admin_dashboard_summary_list,
.admin_dashboard_legend_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.admin_dashboard_summary_list li,
.admin_dashboard_legend_list li {
  display: inline-flex;
  align-items: center;
}

.admin_dashboard_summary_list li {
  gap: 8px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #666;
}

.admin_dashboard_summary_list strong {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
}

.admin_dashboard_dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.admin_dashboard_summary_list .is_reporter .admin_dashboard_dot {
  background: #4f7de1;
}

.admin_dashboard_summary_list .is_valid .admin_dashboard_dot {
  background: #e57d2f;
}

.admin_dashboard_summary_list .is_unused .admin_dashboard_dot {
  background: #dfe5ee;
}

.admin_dashboard_legend_list {
  justify-content: flex-end;
}

.admin_dashboard_legend_list li {
  position: relative;
  gap: 8px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  color: #666;
}

.admin_dashboard_legend_list li::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 2px;
  flex-shrink: 0;
}

.admin_dashboard_legend_list .is_orange::before {
  background: #d0812e;
}

.admin_dashboard_legend_list .is_blue::before {
  background: #4f7de1;
}

.admin_dashboard_legend_list .is_gray::before {
  background: #eef2f7;
  border: 1px solid #e0e5ee;
}

.admin_dashboard_legend_list_ai {
  margin-top: 8px;
}

.admin_dashboard_legend_list_ai li::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.admin_dashboard_legend_list_ai .is_orange_dot::before {
  background: #ea7d2e;
}

.admin_dashboard_legend_list_ai .is_blue_dot::before {
  background: #4f7de1;
}

.admin_dashboard_chart_scroll {
  width: 100%;
  margin-top: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.admin_dashboard_chart {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
}

.admin_dashboard_chart_stack {
  min-width: 880px;
}

.admin_dashboard_chart_group {
  min-width: 940px;
}

.admin_dashboard_axis {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  color: #8b8b8b;
}

.admin_dashboard_axis span {
  font-size: 1.2rem;
  line-height: 1;
}

.admin_dashboard_axis_stack {
  height: 220px;
  padding-bottom: 29px;
}

.admin_dashboard_axis_group {
  height: 400px;
  padding-bottom: 29px;
}

.admin_dashboard_plot {
  position: relative;
  background-repeat: repeat;
  background-size: 100% 20%;
  background-position: left bottom;
  background-origin: content-box;
  background-clip: content-box;
  border-bottom: 0;
}

.admin_dashboard_plot_stack {
  height: 220px;
  padding: 0 10px;
  background-image: linear-gradient(to top, #d9dde3 0, #d9dde3 1px, transparent 1px, transparent 100%);
}

.admin_dashboard_plot_group {
  height: 400px;
  padding: 0 6px;
  background-image: linear-gradient(to top, #d9dde3 0, #d9dde3 1px, transparent 1px, transparent 100%);
}

.admin_dashboard_plot_stack::after,
.admin_dashboard_plot_group::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid #d9dde3;
}

.admin_dashboard_plot_stack::after {
  left: 10px;
  right: 10px;
}

.admin_dashboard_plot_group::after {
  left: 6px;
  right: 6px;
}

.admin_dashboard_stack_columns,
.admin_dashboard_group_columns {
  height: 100%;
  padding: 0;
}

.admin_dashboard_stack_columns {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 30px;
  padding: 0;
}

.admin_dashboard_stack_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.admin_dashboard_stack_bar {
  width: 42px;
  height: 220px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}

.admin_dashboard_stack_bar span {
  display: block;
  width: 100%;
}

.admin_dashboard_stack_bar .is_orange {
  background: #d0812e;
}

.admin_dashboard_stack_bar .is_blue {
  background: #4f7de1;
}

.admin_dashboard_stack_bar .is_gray {
  background: #eef2f7;
}

.admin_dashboard_stack_label {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #333;
}

.admin_dashboard_group_columns {
  display: grid;
  grid-template-columns: repeat(31, minmax(16px, 1fr));
  gap: 6px;
  padding: 0;
}

.admin_dashboard_group_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.admin_dashboard_group_bar_pair {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.admin_dashboard_group_bar_pair span {
  width: 7px;
  display: block;
  border-radius: 2px 2px 0 0;
}

.admin_dashboard_group_bar_pair .is_orange {
  background: #d0812e;
}

.admin_dashboard_group_bar_pair .is_blue {
  background: #4f7de1;
}

.admin_dashboard_group_item p {
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #333;
}

@media (max-width: 1200px) {
  .admin_dashboard_card_head,
  .admin_dashboard_meta_row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin_dashboard_legend_list {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .admin_dashboard_page {
    padding: 28px 20px 40px;
  }

  .admin_dashboard_cards {
    gap: 20px;
  }

  .admin_dashboard_card {
    padding: 16px;
  }

  .admin_dashboard_title {
    font-size: 1.8rem;
  }

  .admin_dashboard_title_wrap {
    align-items: flex-start;
  }
  .admin_dashboard_summary_list,
  .admin_dashboard_legend_list {
    gap: 10px 18px;
  }

  .admin_dashboard_summary_list li,
  .admin_dashboard_legend_list li {
    font-size: 1.4rem;
  }

  .admin_dashboard_summary_list strong {
    font-size: 1.8rem;
  }

  .admin_dashboard_chart_stack {
    min-width: 760px;
  }

  .admin_dashboard_chart_group {
    min-width: 900px;
  }
}

.switch_tabs {
  flex-shrink: 0;
  display: inline-grid;
  gap: 5px;
  padding: 8px;
  border-radius: 12px;
  background: #eef1f6;
}

.switch_tabs_2 {
  grid-template-columns: repeat(2, 1fr);
}

.switch_tabs_3 {
  grid-template-columns: repeat(3, 1fr);
}

.switch_tab {
  min-width: 98px;
  height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: ease .3s;
}

.switch_tab:hover {
  background: #fff;
}

.switch_tab.is_current {
  color: #3661E2;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

@media (max-width: 767px) {
  .switch_tabs {
    width: 100%;
  }
  .switch_tab {
    min-width: 0;
    width: 100%;
    height: 48px;
    font-size: 1.6rem;
  }
}

/* ダミー報告フォーム */
.form_wrapper{
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 40px 20px;
}

.form_wrapper h1{
  text-align: center;
  color: #000;
  font-size: 2.4rem;
}

.form_wrapper dt{
  margin-top: 20px;
  font-weight: bold;
}

.form_wrapper dd {
  margin: 0;
}

.form_wrapper input,
.form_wrapper textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1.5;
  appearance: none;
}

.form_wrapper textarea {
  height: 120px;
  resize: vertical;
}

.other_head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.other_head button {
  width: 140px;
  padding: 10px;
  border: 1px solid #bfbfbf;
  background: #f7f7f7;
  font-size: 1.4rem;
  cursor: pointer;
}

.other_head p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.submit_btn {
  display: block;
  width: 160px;
  height: 48px;
  margin: 40px auto 0 auto;
  border: 0;
  border-radius: 8px;
  background: #0f2e4f;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}


