:root {
  --main-color: #021f46;
}

body.is-attackable {
  background: #efefef;
  font-family: application, "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "Osaka", "Meiryo", sans-serif;
}

body.is-attackable .l-header {
  display: block;
  height: auto;
  box-shadow: none;
}

body.is-attackable .l-header--standard {
  display: flex;
  align-items: center;
  height: 56px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23, 32, 43, .18);
}

body.is-attackable .l-header--standard .l-header__brand {
  width: 340px;
  height: 56px;
  padding-left: 28px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d315f 0%, #0d315f 86%, transparent 87%);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

body.is-attackable .l-header--standard .l-header__nav {
  display: flex;
  gap: 30px;
  padding: 0 24px;
  color: #555;
  font-size: 1.3rem;
}

body.is-attackable .l-header__inner {
  min-height: 40px;
  align-items: center;
}

body.is-attackable .l-header__logo {
  position: relative;
  flex: 0 0 390px;
  width: 390px;
  height: 40px;
  justify-content: flex-start;
  color: #fff;
  z-index: 0;
}

body.is-attackable .l-header__logo::before {
  width: 430px;
  z-index: 0;
}

body.is-attackable .l-header__logoText {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

body.is-attackable .l-header__menu {
  min-height: 32px;
  color: #333;
  font-size: 1.2rem;
}

body.is-attackable .l-header__simpleNav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 32px;
  margin-left: 20px;
  color: #555;
  font-size: 1.3rem;
  font-weight: 700;
}

body.is-attackable .l-header__simpleNavLink {
  display: inline-flex;
  align-items: center;
  height: 32px;
  border-bottom: 2px solid transparent;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
}

body.is-attackable .l-header__simpleNavLink:hover,
body.is-attackable .l-header__simpleNavLink.is-active {
  border-bottom-color: var(--main-color);
  color: var(--main-color);
}

body.is-attackable .l-header__menu--simple {
  margin-left: auto;
}

body.is-attackable .l-header__menuPill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 15px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}

body.is-attackable .l-header__menuIcon {
  margin-left: 10px;
}

body.is-attackable .l-header__profile {
  gap: 10px;
  margin-right: 0;
  margin-left: 15px;
  color: #333;
  text-decoration: none;
}

body.is-attackable .l-header__profile:hover {
  text-decoration: underline;
}

body.is-attackable .l-header__profileName {
  font-size: 1.2rem;
  font-weight: 700;
}

body.is-attackable .l-header__profileAvatar {
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
}

body.is-attackable .l-navigation__list {
  padding: 0;
}

body.is-attackable .l-navigation__item {
  vertical-align: top;
}

body.is-attackable .l-dashboard {
  padding: 0 0 80px;
}

body.is-attackable .l-breadcrumb {
  margin: 0;
  color: #666;
}

body.is-attackable .l-breadcrumb__list {
  padding: 0 15px;
}

body.is-attackable .c-attackable-record-form {
  width: 420px;
  max-width: none;
  margin: 50px auto 0;
}

body.is-attackable .c-attackable-record-form .p-sessions {
  width: 420px;
  margin-right: 0;
  margin-left: 0;
}

body.is-attackable .p-sessions__inner {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.is-attackable .c-form-label {
  display: block;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.5;
}

body.is-attackable .c-form-text,
body.is-attackable .c-form-textarea,
body.is-attackable .c-form-select {
  font-size: 1.2rem;
}

body.is-attackable .c-form-textarea {
  min-height: 0;
}

body.is-attackable .c-form-selectWrap::after {
  content: "";
}

body.is-modal-page {
  background: #fff;
}

body.is-modal-page .l-header--standard {
  display: none !important;
}

body.is-modal-page .l-dashboard {
  padding: 30px 0;
}

.c-attackable-modal-page[hidden] {
  display: none;
}

.c-attackable-modal-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .6);
  cursor: pointer;
}

.c-attackable-modal-page__body {
  position: relative;
  width: 96vw;
  height: 92vh;
  max-width: none;
  background-color: #fff;
  animation: FadeInY .3s ease 0ms;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .6);
  cursor: auto;
}

.c-attackable-modal-page__body iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.c-attackable-modal-page__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(2, 31, 70, .94);
  color: #fff;
  cursor: pointer;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}

@media (max-width: 767px) {
  .c-attackable-modal-page__body {
    width: 96vw;
    height: 94vh;
  }

  .c-attackable-modal-page__close {
    top: 10px;
    right: 10px;
  }
}

dialog.c-modal:not([open]) {
  display: none;
}

dialog.c-modal[open] {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
}

.c-modal__header {
  flex: 0 0 auto;
}

.c-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

body.is-attackable .c-attackable-user-thumb {
  object-fit: cover;
}

body.is-attackable .u-ta-center.u-mt-30 {
  margin-top: 30px;
}

body.is-attackable .p-users-users-index {
  padding: 20px 30px 120px;
  min-width: 1100px;
  box-sizing: border-box;
}

body.is-attackable .p-users-users-index .l-breadcrumb {
  margin: 0;
}

body.is-attackable .p-users-users-index .p-profiles__tabs {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 0;
}

body.is-attackable .p-users-users-index .p-profiles__tabsItem {
  display: block;
  flex: 0 0 12.5%;
  width: auto;
  min-height: 0;
  height: 42px;
  justify-content: initial;
  border-bottom: 2px solid var(--main-color);
  background-color: var(--main-color);
  color: #fff;
  line-height: 40px;
  font-size: 13px;
  text-align: center;
}

body.is-attackable .p-users-users-index .p-profiles__tabsItem a {
  display: block;
  background-color: #efefef;
  color: #565656;
}

@media screen and (max-width: 900px) {
  body.is-attackable .l-header__menu {
    display: none;
  }
}

.c-multiple-select.c-form-selectWrap::after {
  content: none;
}

.p-history-table .c-table__content thead tr:first-child th {
  background: var(--main-color);
  color: #fff;
}

.p-profile-list {
  width: 100%;
  border-collapse: collapse;
}

.p-profile-list__row {
  border-bottom: solid 1px lightgray;
}

.p-profile-list__heading {
  width: 150px;
  border-right: solid 1px lightgray;
}

.p-profile-list__users {
  min-height: 210px;
}

.p-profile a {
  color: inherit;
  text-decoration: none;
}

.p-profile__imageWrap {
  position: relative;
  width: 150px;
  height: 180px;
  overflow: hidden;
  background: #e5ebf2;
}

.p-profile__image {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 180px;
  box-sizing: border-box;
  object-fit: cover;
  background: #e5ebf2;
  color: var(--main-color);
  font-size: 4rem;
  font-weight: 700;
}

.p-profile__image[data-profile-avatar-lazy] {
  background: transparent;
}

.p-profile__image--empty {
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
}

.p-profile__tooltipTable {
  width: 300px;
  align-self: start;
}

body.is-attackable .p-profile:hover .p-profile__tooltip,
body.is-attackable .p-profile:focus-within .p-profile__tooltip {
  display: inline-block;
  position: absolute;
  top: 180px;
  left: 0;
  z-index: 1000;
}

body.is-attackable .p-profile__tooltip {
  min-width: 620px;
}

body.is-attackable .p-profile__tooltip .c-table__content td {
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
}
