html {
  height: 100%;
}
body {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  overflow-x: hidden;
  background: #f9f9f9;
  height: 100%;
}
* {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
}
::selection {
  background: #333333;
  color: #ffffff;
}
a {
  text-decoration: none;
  color: inherit;
}
a.link {
  text-decoration: underline;
  cursor: pointer;
}
a.link:hover {
  text-decoration: none;
}
p.secondary {
  font-size: 10px;
  color: #707070;
}
input[type = "file"] {
  display: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgb(0 0 0 / 5%);
  background: #ffffff;
  height: 50px;
  padding: 0 34px;
}
header > .logo-box {
  display: flex;
  align-items: center;
  height: 0;
  color: #333333;
}
header .logo {
  height: 28px;
}
header .link {
  color: #333333;
}
.button-white, .button-black {
  display: block;
  padding: 6px;
  text-align: center;
  border-radius: 50px;
  font-size: 10px;
  margin: 12px 0;
  transition: color 0.1s, background 0.1s;
  width: 100%;
}
.button-white[disabled], .button-black[disabled] {
  opacity: 0.5;
}
.button-white:not([disabled]):not([state = "load"]), .button-black:not([disabled]):not([state = "load"]) {
  cursor: pointer;
}
[state = "load"] {
  cursor: wait;
}
.button-white, .button-black:hover:not([disabled]) {
  border: 1px solid #333333;
  background: #ffffff;
  color: #333333;
}
.button-black, .button-white:hover:not([disabled]) {
  border: 1px solid #333333;
  background: #333333;
  color: #ffffff;
}
.column {
  margin: 0 auto;
}
.column > .group {
  margin: 8px 0 32px;
}
.column > .group p.primary {
  margin: 16px 0 0;
}
#toast {
  height: 50px;
  background: #333333;
  color: #ffffff;
  font-size: 14px;
  transition-duration: 0.4s;
  padding: 0 30px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 10000;
}
[hidden] {
  display: none !important;
}
[invisible] {
  visibility: hidden !important;
}
input[type = "url"] {
  width: calc(100% - 16px);
  margin: 4px 0;
  padding: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #333333;
  background: #f9f9f9;
}
input[type="url"]:focus {
  outline: none;
  border-width: 2px;
  padding-bottom: 7px;
}
input[type = "url"]:disabled {
  opacity: 0.3;
}
.article {
  line-height: 1.6;
}
select {
  margin: 4px 0;
  border-style: none none solid;
  padding: 1px;
  border-width: 1px;
  border-color: #333333;
  background: #ffffff;
}
select:focus {
  outline: none;
  border-width: 2px;
  padding-bottom: 0;
}
#body {
  height: calc(100% - 50px);
  display: flex;
}
.column {
  width: 100%;
  position: relative;
}
.column > .tabs {
  height: calc(100% - 40px);
  display: flex;
  flex-flow: column;
}
.column > .control {
  background: #333333;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 12px;
}
.column > .control img {
  height: 20px;
}
#body[column = "1"] > .column:not(#column_0) {
  display: none;
}
#body[column = "2"] > .column:not(#column_0):not(#column_1) {
  display: none;
}
#body[column = "3"] > .column:not(#column_0):not(#column_1):not(#column_2) {
  display: none;
}
#body[column = "4"] > .column:not(#column_0):not(#column_1):not(#column_2):not(#column_3) {
  display: none;
}
#body[column = "5"] > .column:not(#column_0):not(#column_1):not(#column_2):not(#column_3):not(#column_4) {
  display: none;
}
#body[column = "6"] > .column:not(#column_0):not(#column_1):not(#column_2):not(#column_3):not(#column_4):not(#column_5) {
  display: none;
}
.column > .tabs > .tab {
  width: 100%;
  height: 100%;
  border: none;
  background: #ffffff;
}
.popup_container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.popup {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 20px;
}
.popup > h3 {
  text-align: center;
  margin-top: 0;
}
.popup > .close {
  text-align: right;
  margin-top: 1em;
}
.popup > .close > .link {
  color: #333333;
}
@media screen and (max-width: 959px) {
  header {
    padding: 0 20px;
  }
  #toast {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  header {
    padding: 0 34px;
  }
  #toast {
    margin: 12px;
    border-radius: 3px;
  }
}
