@charset "UTF-8";
/* Reset
----------------------------------------------------------------- */
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,
l,
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;
}

h1,
h2,
h3,
h4,
h5,
h6,
table,
input,
textarea,
select,
option,
button {
  font-size: 100%;
}

blockquote,
q {
  quotes: none;
}

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

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

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

caption,
th {
  text-align: left;
}

:focus {
  outline: 0;
}

img,
a img {
  border: none;
}

a {
  outline: 0;
  cursor: pointer;
}

input:not([type=checkbox]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio] {
  display: none;
}

/* Base
----------------------------------------------------------------- */
html {
  height: 100%;
}

body {
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #092962;
  line-height: 1.8;
  font-family: -apple-system, sans-serif;
  font-size: 16px;
  margin: 0;
}

a {
  text-decoration: none;
  color: #0b5de9;
  transition: color 0.1s 0s ease;
}
a:hover {
  color: #279af4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

.sss-browser-is-ie wbr:after {
  content: "​";
}

/* Body直下のwrapper（ヘッダー・フッターは含まない）
----------------------------------------------------------------- */
.sss-root-container {
  position: relative;
  overflow: hidden;
  background-color: #e6ebf4;
  height: 100%;
  /* 画面幅 - ヘッダの高さ - フッタの高さ */
  min-height: calc(100vh - 70px - 39px);
  display: flex;
  flex-direction: column;
}

/* content-blockのwrapper
----------------------------------------------------------------- */
.sss-content-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.sss-content-container.-pt-0 {
  padding-top: 0;
}

.sss-flex {
  display: flex;
}

.sss-flex.-both_ends {
  justify-content: space-between;
}

.sss-flex.-align_center {
  align-items: center;
}

.sss-flex.-baseline {
  align-items: baseline;
}

.sss-flex.-flex-end {
  align-items: flex-end;
}

/* 縦並び */
.sss-flex.-column {
  flex-direction: column;
}

/* 上下中央 */
.sss-flex.-center {
  justify-content: center;
  height: 100%;
  align-items: center;
}

/* 2カラム */
@media print, screen and (max-width: 63.9375em ) {
  .sss-flex.-colmun_2 {
    display: block;
  }
}
@media print, screen and (min-width: 64em ) {
  .sss-flex.-colmun_2 {
    margin-right: -12px;
  }
}
@media print, screen and (min-width: 64em ) {
  .sss-flex.-colmun_2 .sss-flex__inner {
    width: calc(50% - 12px);
    margin-right: 12px;
  }
}

/* 3カラム */
.sss-flex.-colmun_3 {
  margin-right: -40px;
  flex-wrap: wrap;
}
.sss-flex.-colmun_3 .sss-flex__inner {
  width: calc(33.3% - 40px);
  margin-right: 40px;
  border-right: 1px solid #f3f5fa;
  box-sizing: border-box;
  margin-top: 26px;
}
.sss-flex.-colmun_3 .sss-flex__inner:last-of-type {
  border-right: none;
}
.sss-flex.-colmun_3 .sss-flex__inner.-sss-bookmark-menu {
  margin-top: 0px;
}

.sss-flex.-position-l {
  position: relative;
}

.sss-flex.-nowrap {
  white-space: nowrap;
}

.sss-flex.-align_right {
  margin-left: auto;
}

/* 複数カラム
----------------------------------------------------------------- */
.sss-col {
  box-sizing: border-box;
}

/* カラムの割り当て */
.sss-col.-col_1 {
  width: calc(8.3333333333%);
}

.sss-col.-col_2 {
  width: calc(16.6666666667%);
}

.sss-col.-col_3 {
  width: calc(25%);
}

.sss-col.-col_4 {
  width: calc(33.3333333333%);
}

.sss-col.-col_5 {
  width: calc(41.6666666667%);
}

.sss-col.-col_6 {
  width: calc(50%);
}

.sss-col.-col_7 {
  width: calc(58.3333333333%);
}

.sss-col.-col_8 {
  width: calc(66.6666666667%);
}

.sss-col.-col_9 {
  width: calc(75%);
}

.sss-col.-col_10 {
  width: calc(83.3333333333%);
}

.sss-col.-col_11 {
  width: calc(91.6666666667%);
}

.sss-col.-col_12 {
  width: calc(100%);
}

.sss-col.-col_0_5 {
  width: 4.1666666666%;
}

.sss-col.-col_0_7_5 {
  width: 6.25%;
}

.sss-col.-col_1_5 {
  width: 12.5%;
}

.sss-col.-col_3_5 {
  width: 29.16666%;
}

.sss-section {
  margin-top: 30px;
}

.sss-section-2 {
  margin-top: 16px;
}

/* バッジ
----------------------------------------------------------------- */
.sss-badge {
  display: inline-block;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 5px;
  padding-left: 6px;
  font-size: 12px;
  line-height: 1em;
  font-weight: bold;
  border-radius: 4px;
}

/* 色 */
.sss-badge.-green {
  background-color: #53A600;
  color: #fff;
}

.sss-badge.-black {
  background-color: #4d4f5c;
  color: #fff;
}

/* 必須 */
.sss-badge.-orange {
  background-color: #FF8000;
  color: #fff;
}

.sss-badge.-blue {
  background-color: #6685BA;
  color: #fff;
}

/* カード
----------------------------------------------------------------- */
.sss-card {
  border: 1px solid #ecf0f7;
  border-radius: 4px;
}

.sss-card__head {
  font-weight: bold;
  padding: 12px 30px 12px 30px;
  background-color: #e6ebf4;
  color: #4d4f5c;
  font-size: 14px;
}

.sss-card__body {
  padding: 15px 30px 10px 30px;
  color: #4d4f5c;
  font-size: 14px;
}
.sss-card__body > *:first-child {
  margin-top: 0;
}

/* API権限設定タブのタブ内で使用 */
.sss-card.-tab_contents {
  width: 50%;
  margin-top: 16px;
  border-top: none;
  background-color: #fff;
}
.sss-card.-tab_contents:nth-of-type(1) {
  border-right: none;
  border-radius: 4px 0 0 4px;
}
.sss-card.-tab_contents:nth-of-type(1) .sss-card__head {
  border-radius: 4px 0 0 0;
}
.sss-card.-tab_contents:last-of-type {
  border-radius: 0 4px 4px 0;
  z-index: 10;
}
.sss-card.-tab_contents:last-of-type .sss-card__head {
  border-radius: 0 4px 0 0;
}
.sss-card.-tab_contents .sss-card__body {
  padding-top: 10px;
  padding-bottom: 16px;
}

.sss-select {
  /* 非活性 */
}
.sss-select.-w_240 {
  width: 240px;
}
.sss-select.-disabled .sss-select-block {
  pointer-events: none;
  background-color: #f2f2f2;
  border: none;
  color: #cccccc;
}
.sss-select.-disabled select {
  pointer-events: none;
}
.sss-select.-disabled .sss-select-trigger {
  border: none;
}
.sss-select.-disabled .sss-select-trigger::before {
  background-color: #e5e5e5;
}

.sss-select-block {
  width: 100%;
  position: relative;
  border-radius: 4px;
}

/* 選択中 */
.sss-select-block.-open .sss-select-trigger {
  border-color: #7a9ede;
}
.sss-select-block.-open .sss-select-trigger:after {
  top: 22px;
  transform: rotate(-135deg);
}
.sss-select-block.-open .sss-select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.sss-select-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  height: 50px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.sss-select-trigger:hover {
  border-color: #7a9ede;
}
.sss-select-trigger::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #6685ba;
  border-radius: 50%;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.sss-select-trigger::after {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 20px;
  border-color: #fff;
  right: 21px;
  backface-visibility: hidden;
  transition: all 0.2s ease;
}

.sss-select-options {
  z-index: 100000;
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 4px;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #2d4879;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  padding-top: 10px;
  padding-bottom: 10px;
}

.sss-select-options__item {
  position: relative;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.sss-select-options__item:hover, .sss-select-options__item.-selected {
  background-color: #2f66c3;
}

.sss-select.-scroll .sss-select-block .sss-select-options {
  max-height: 430px;
  overflow: auto;
}

.sss-warning {
  color: #e70d0d;
}

.sss-container {
  background-color: #e6ebf4;
}

.sss-container__inner {
  padding-top: 22px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
}

.sss-container__inner.-terms-agreement__area {
  padding-right: 60px;
  padding-left: 60px;
}

.sss-top-area {
  border-bottom: 1px solid #ccd7e8;
  background-color: #e6ebf4;
}
.sss-top-area .sss-link {
  top: 3px;
}

.sss-top-area__inner {
  padding-top: 15px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 18px;
}

.sss-panel {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.04);
}

.sss-panel__inner {
  padding-top: 16px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 16px;
}

.sss-panel.-padding_l .sss-panel__inner {
  padding: 30px;
}

.sss-panel.-padding_none .sss-panel__inner {
  padding: 0px;
}

.sss-panel__foot {
  padding: 20px 30px;
  border-top: 1px solid #ecf0f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sss-panel__foot.-pt_16 {
  padding: 16px 30px;
}

/* ボタン部分 */
.sss-panel__button {
  border-top: 1px solid #ecf0f7;
  display: flex;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
}

/* マージン付き（ベース） */
.sss-panel.-m_base {
  margin-top: 6px;
  margin-bottom: 25px;
}
.sss-panel.-m_base.-transparent {
  background-color: transparent;
  box-shadow: none;
}

/* マージン付き（ブロック要素の次にくる場合） */
.sss-panel.-m_block {
  margin-top: 15px;
  margin-bottom: 30px;
}

/* flex:1を指定 */
.sss-panel.-flex {
  flex: 1;
}
.sss-browser-is-ie .sss-panel.-flex {
  flex: none;
}

/* マージントップが少し広いもの */
.sss-panel.-m_top {
  margin-top: 20px;
  margin-bottom: 25px;
}

.sss-panel.-agreement-checkbox {
  margin: 20px 43.3% 25px 43.3%;
}

/* ワークスペース情報
----------------------------------------------------------------- */
/* 右に画像などが入るパターンで使用 */
.sss-workspace.-flex {
  display: flex;
  justify-content: space-between;
}

.sss-workspace__name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  word-break: break-all;
}

.sss-workspace__desc {
  margin-top: 20px;
  word-break: break-all;
  white-space: pre-wrap;
}
.sss-workspace__desc.-center {
  margin-top: 0;
  text-align: center;
}

.sss-workspace-id {
  font-size: 13px;
  margin-top: 4px;
}
.sss-workspace-id .sss-workspace-id__title::after {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #ccc;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.sss-workspace__link {
  display: flex;
  margin-top: 20px;
}
.sss-workspace__link > .sss-link {
  margin-right: 22px;
}

.sss-workspace-date {
  font-size: 13px;
  display: flex;
  margin-top: 12px;
}
.sss-workspace-date .sss-workspace-data__title::after {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #ccc;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

/* マージン調節 */
.sss-workspace-id.-m_16 {
  margin-top: 16px;
}

.sss-copy {
  position: relative;
  text-decoration: none;
}

button.sss-copy {
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  color: #0b5de9;
  background-color: transparent;
}
button.sss-copy:hover {
  color: #279af4;
}

.sss-copy.-ml_5 {
  margin-left: 5px;
}

.sss-copy.-ml_10 {
  margin-left: 10px;
}

.sss-copy__text {
  position: relative;
  font-size: 13px;
  color: #0b5de9;
}
.sss-copy__text:hover {
  color: #279af4;
}

.sss-copy__icon {
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%20%20%20%20%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22clip-path%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20class%3D%22cls-1%22%20width%3D%2210%22%20height%3D%2210%22%20fill%3D%22none%22%2F%3E%20%20%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%20%20%20%20%3C%2Fdefs%3E%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9.174.864A3.212%2C3.212%2C0%2C0%2C0%2C7.029%2C0%2C3.126%2C3.126%2C0%2C0%2C0%2C4.884.864a.682.682%2C0%2C0%2C0-.183.5.951.951%2C0%2C0%2C0%2C.183.5.688.688%2C0%2C0%2C0%2C.5.182h0a.96.96%2C0%2C0%2C0%2C.5-.182%2C1.714%2C1.714%2C0%2C0%2C1%2C2.373%2C0A1.912%2C1.912%2C0%2C0%2C1%2C8.672%2C3a1.647%2C1.647%2C0%2C0%2C1-.5%2C1.182L4.2%2C8.136a1.714%2C1.714%2C0%2C0%2C1-2.373%2C0A1.7%2C1.7%2C0%2C0%2C1%2C1.369%2C7a1.647%2C1.647%2C0%2C0%2C1%2C.5-1.182L3.56%2C4.136a.5.5%2C0%2C0%2C1%2C.685%2C0%2C.551.551%2C0%2C0%2C1%2C0%2C.727L3.012%2C6.091a.682.682%2C0%2C0%2C0-.183.5.951.951%2C0%2C0%2C0%2C.183.5.759.759%2C0%2C0%2C0%2C.958%2C0L5.2%2C5.864a1.86%2C1.86%2C0%2C0%2C0%2C0-2.636A1.832%2C1.832%2C0%2C0%2C0%2C3.88%2C2.682a1.625%2C1.625%2C0%2C0%2C0-1.278.5L.913%2C4.864A2.878%2C2.878%2C0%2C0%2C0%2C0%2C7%2C3.1%2C3.1%2C0%2C0%2C0%2C.867%2C9.136%2C3.212%2C3.212%2C0%2C0%2C0%2C3.012%2C10a3.126%2C3.126%2C0%2C0%2C0%2C2.145-.864L9.128%2C5.182A2.909%2C2.909%2C0%2C0%2C0%2C10%2C3.045%2C2.971%2C2.971%2C0%2C0%2C0%2C9.174.864Z%22%20fill%3D%22%230b5de9%22%2F%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  padding-right: 5px;
  /* マウスホバー */
}
.sss-copy:hover .sss-copy__icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%20%20%20%20%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22clip-path%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20class%3D%22cls-1%22%20width%3D%2210%22%20height%3D%2210%22%20fill%3D%22none%22%2F%3E%20%20%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%20%20%20%20%3C%2Fdefs%3E%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9.174.864A3.212%2C3.212%2C0%2C0%2C0%2C7.029%2C0%2C3.126%2C3.126%2C0%2C0%2C0%2C4.884.864a.682.682%2C0%2C0%2C0-.183.5.951.951%2C0%2C0%2C0%2C.183.5.688.688%2C0%2C0%2C0%2C.5.182h0a.96.96%2C0%2C0%2C0%2C.5-.182%2C1.714%2C1.714%2C0%2C0%2C1%2C2.373%2C0A1.912%2C1.912%2C0%2C0%2C1%2C8.672%2C3a1.647%2C1.647%2C0%2C0%2C1-.5%2C1.182L4.2%2C8.136a1.714%2C1.714%2C0%2C0%2C1-2.373%2C0A1.7%2C1.7%2C0%2C0%2C1%2C1.369%2C7a1.647%2C1.647%2C0%2C0%2C1%2C.5-1.182L3.56%2C4.136a.5.5%2C0%2C0%2C1%2C.685%2C0%2C.551.551%2C0%2C0%2C1%2C0%2C.727L3.012%2C6.091a.682.682%2C0%2C0%2C0-.183.5.951.951%2C0%2C0%2C0%2C.183.5.759.759%2C0%2C0%2C0%2C.958%2C0L5.2%2C5.864a1.86%2C1.86%2C0%2C0%2C0%2C0-2.636A1.832%2C1.832%2C0%2C0%2C0%2C3.88%2C2.682a1.625%2C1.625%2C0%2C0%2C0-1.278.5L.913%2C4.864A2.878%2C2.878%2C0%2C0%2C0%2C0%2C7%2C3.1%2C3.1%2C0%2C0%2C0%2C.867%2C9.136%2C3.212%2C3.212%2C0%2C0%2C0%2C3.012%2C10a3.126%2C3.126%2C0%2C0%2C0%2C2.145-.864L9.128%2C5.182A2.909%2C2.909%2C0%2C0%2C0%2C10%2C3.045%2C2.971%2C2.971%2C0%2C0%2C0%2C9.174.864Z%22%20fill%3D%22%23279af4%22%2F%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%3C%2Fsvg%3E");
}

.sss-open {
  display: inline-block;
  padding: 0;
  outline: 0;
}

button.sss-open {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.sss-open-icon {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #0b5de9;
  border-radius: 50%;
  margin-right: 6px;
  box-sizing: border-box;
}
.sss-container .sss-dropdown-service .sss-open-icon {
  top: -2px;
  transform: none;
}
.device-is-mac .sss-open-icon {
  top: 4px;
  transform: none;
}
.sss-open-icon::before, .sss-open-icon::after {
  content: "";
  background-color: #0b5de9;
  position: absolute;
  transition: 0.2s;
}
.sss-open-icon::before {
  width: 8px;
  height: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}
.sss-open-icon::after {
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sss-open__inner {
  position: relative;
  display: flex;
}
.sss-open__inner.is-active .sss-open-text::after {
  content: var(--sss-css-text-close);
}
.sss-open__inner:hover .sss-open-icon {
  border-color: #279af4;
}
.sss-open__inner:hover .sss-open-icon::before, .sss-open__inner:hover .sss-open-icon::after {
  background-color: #279af4;
}
.sss-open__inner:hover .sss-open-text::after {
  color: #279af4;
}
.sss-open__inner:hover .sss-open-icon.-muted {
  background-color: #279af4;
}
.sss-open__inner:hover .sss-open-icon.-muted::before, .sss-open__inner:hover .sss-open-icon.-muted::after {
  background-color: #fff;
}

/* 請求明細履歴で使用
----------------------------------------------------------------- */
.sss-open__inner.is-active .sss-open-icon::after,
.sss-open[data-opened=true] .sss-open-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sss-open__inner.is-active .sss-open-icon.-muted::after,
.sss-open[data-opened=true] .sss-open-icon.-muted::after {
  transform: rotate(-90deg);
}

.sss-open-text {
  color: #0b5de9;
  position: relative;
  display: block;
  padding-left: 20px;
}
.sss-open-text::after {
  position: relative;
  top: 1px;
  display: inline-block;
  left: 0;
}
.sss-open-text:hover {
  color: #279af4;
}

/* テキスト違い
----------------------------------------------------------------- */
.sss-open-text.-all::after {
  content: var(--sss-css-text-see-all);
}
.sss-open-text.-default {
  font-weight: normal;
}

.sss-open-accordion {
  display: block;
}
.sss-open-accordion + .sss-open-accordion {
  margin-top: 15px;
}

/* 請求明細履歴で使用 */
.sss-open[data-opened=false] .sss-open__inner.-payment .sss-open-text::after {
  margin-top: 2px;
  content: var(--sss-css-text-see-all-payment);
}
.sss-open[data-opened=true] .sss-open__inner.-payment .sss-open-text::after {
  margin-top: 2px;
  content: var(--sss-css-text-close-payment);
}

/* マージン調節用 */
.sss-open.-m_20 {
  margin-top: 20px;
}

.sss-open.-m_25 {
  margin-top: 25px;
}

.sss-open-icon.-muted {
  width: 11px;
  height: 11px;
  background-color: #0b5de9;
  top: 2px;
  transform: none;
}
.device-is-mac .sss-open-icon.-muted {
  top: 4px;
}
.sss-open-icon.-muted::before {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 4px;
  left: 2px;
  transform: translateX(0);
  transition: 0.2s;
}
.device-is-mac .sss-open-icon.-muted::before {
  top: 50%;
  left: calc(50% - 3px);
}
.sss-open-icon.-muted::after {
  content: "";
  width: 1px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  left: 4px;
  transform: translateX(0);
  transition: 0.2s;
}
.device-is-mac .sss-open-icon.-muted::after {
  top: calc(50% - 2px);
  left: calc(50% - 1px);
}
.sss-open-icon.-muted + .sss-open-text {
  padding-left: 17px;
}

/* 開く
----------------------------------------------------------------- */
.sss-open-text2 {
  color: #0b5de9;
  position: relative;
  display: block;
  padding-left: 20px;
  font-weight: normal;
}
.sss-open-text2::after {
  display: none;
}
.sss-open-text2:hover {
  color: #279af4;
}

.sss-news__item {
  display: grid;
  grid-template: "newsDate newsCate newsText" auto/170px 134px 1fr;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ecf0f7;
}

.sss-news__date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: newsDate;
  display: flex;
  padding-left: 30px;
}
.sss-news__date span {
  width: 1px;
  height: 16px;
  background-color: #cccccc;
  display: inline-block;
  margin-left: 14px;
  margin-right: 14px;
  position: relative;
  top: 5px;
}

.sss-news__cate {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: newsCate;
  display: flex;
  justify-content: space-between;
}
.sss-news__cate span {
  width: 1px;
  height: 16px;
  background-color: #cccccc;
  display: inline-block;
  margin-left: 14px;
  margin-right: 14px;
  position: relative;
  top: 5px;
}

.sss-news__text {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: newsText;
  padding-right: 30px;
}
.sss-news__text .sss-link {
  line-height: 1.4;
  display: block;
}
.sss-news__text .sss-link::after {
  top: -2px;
}

.sss-table {
  color: #4d4f5c;
  border-collapse: separate;
  width: 100%;
  vertical-align: top;
  /* 項目が複数あるチェックボックステーブル用 */
  /* 太い文字 */
  /* 文字色　緑 */
  /* テキスト中央寄せ */
  /* 開業禁止 */
  /* バッジ付き */
}
.sss-table tr {
  vertical-align: top;
}
.sss-table tr.-pt_12 td {
  padding-top: 12px;
  padding-bottom: 10px;
}
.sss-table tr.-pt_12 td.-with-radio {
  padding-top: 24px;
  padding-bottom: 22px;
  padding-left: 30px;
}
.sss-table tr.-no-border_b {
  /* tdとthに下線が不要なときに使用 */
}
.sss-table tr.-no-border_b th,
.sss-table tr.-no-border_b td {
  border-bottom: none;
}
.sss-table tbody {
  /* 最後の線削除 */
}
.sss-table tbody tr:last-of-type th,
.sss-table tbody tr:last-of-type td {
  border-bottom: none;
}
.sss-table thead th {
  vertical-align: middle;
}
.sss-table thead tr:first-of-type td {
  border-bottom: 1px solid #ecf0f7 !important;
}
.sss-table th,
.sss-table td {
  border-bottom: 1px solid #ecf0f7;
  word-break: break-all;
  line-height: 1.4;
}
.sss-table th {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 16px;
  padding-top: 17px;
}
.sss-table th:first-child {
  padding-left: 30px;
  padding-right: 30px;
}
.sss-table th:last-child {
  padding-right: 30px;
}
.sss-table th.-rowspan {
  border-right: 1px solid #ecf0f7;
}
.sss-table th.-rowspan + th {
  padding-left: 30px;
}
.sss-table th.-rowspan.-last {
  border-bottom: none;
}
.sss-table th.-rowspan + td.-checkbox {
  padding-right: 0;
  padding-left: 0;
}
.sss-table th.-no-border_r {
  border-right: none;
}
.sss-table td {
  font-size: 16px;
  position: relative;
  padding-top: 14px;
  padding-bottom: 13px;
}
.sss-table td:first-child {
  padding-right: 30px;
  padding-left: 30px;
}
.sss-table td:last-child {
  padding-right: 30px;
}
.sss-table td.-rowspan {
  border-right: 1px solid #ecf0f7;
}
.sss-table td.-rowspan + td {
  padding-left: 30px;
}
.sss-table td.-rowspan.-last {
  border-bottom: none;
}
.sss-table td.-rowspan.-transparent {
  background-color: #ffffff;
}
.sss-table td.-rowspan + td.-checkbox {
  padding-right: 0;
  padding-left: 0;
}
.sss-table td span.-note {
  font-size: 14px;
  font-weight: normal;
  color: #4d4f5c;
  margin-left: 20px;
}
.sss-table .sss-table-hoverarea {
  transition: all 0.2s;
}
.sss-table .sss-table-hoverarea:hover {
  background-color: #fffedf;
}
.sss-table .sss-table-hoverarea:hover label {
  color: #279af4;
}
.sss-table .sss-table-hoverarea input:checked + label {
  background-color: #fefcae;
}
.sss-table .sss-table-hoverarea-multiple-items {
  transition: all 0.2s;
}
.sss-table .sss-table-hoverarea-multiple-items:hover {
  background-color: #fffedf;
}
.sss-table .sss-table-hoverarea-multiple-items:hover label {
  color: #279af4;
}
.sss-table .sss-table-hoverarea-multiple-items.-checked {
  background-color: #fefcae;
}
.sss-table td.-bold {
  font-weight: bold;
}
.sss-table td.-green {
  color: #53a600;
}
.sss-table td.-checked {
  background-color: #fefcae;
}
.sss-table th.-align_center {
  text-align: center;
}
.sss-table td.-align_center {
  vertical-align: middle;
  text-align: center;
}
.sss-table td.-align_center img {
  display: block;
  margin: auto;
  top: 0;
}
.sss-table th.-nowrap,
.sss-table td.-nowrap {
  white-space: nowrap;
}
.sss-table th.-has_badge,
.sss-table td.-has_badge {
  padding-top: 13px;
  padding-bottom: 13px;
}
.sss-table th.-has_badge .sss-badge,
.sss-table td.-has_badge .sss-badge {
  position: relative;
  top: -1px;
  margin-left: 10px;
}
.sss-table th.-contract-accordion,
.sss-table td.-contract-accordion {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* カラム幅の管理
----------------------------------------------------------------- */
.sss-col.-w_92px {
  width: 92px;
}
.sss-col.-w_100px {
  width: 100px;
}
.sss-col.-w_120px {
  width: 120px;
}
.sss-col.-w_136px {
  width: 136px;
}
.sss-col.-w_150px {
  width: 150px;
}
.sss-col.-w_170px {
  width: 170px;
}
.sss-col.-w_180px {
  width: 180px;
}
.sss-col.-w_200px {
  width: 200px;
}
.sss-col.-w_210px {
  width: 210px;
}
.sss-col.-w_230px {
  width: 230px;
}
.sss-col.-w_240px {
  width: 240px;
}
.sss-col.-w_250px {
  width: 250px;
}
.sss-col.-w_260px {
  width: 260px;
}
.sss-col.-w_280px {
  width: 280px;
}
.sss-col.-w_300px {
  width: 300px;
}
.sss-col.-w_338px {
  width: 338px;
}
.sss-col.-w_410px {
  width: 410px;
}
.sss-col.-w_460px {
  width: 460px;
}
.sss-col.-w_610px {
  width: 610px;
}

/* お知らせ
----------------------------------------------------------------- */
.sss-table.-news td {
  box-sizing: border-box;
  padding-top: 14px;
  padding-right: 0;
  padding-left: 30px;
  padding-bottom: 12px;
}
.sss-table.-news td::after {
  content: "";
  width: 1px;
  background-color: #ccc;
  display: inline-block;
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: -16px;
}
.sss-table.-news td:first-child {
  white-space: nowrap;
}
.sss-table.-news td:nth-child(2) {
  padding-left: 30px;
}
.sss-table.-news td:nth-child(2)::after {
  right: -12px;
}
.sss-table.-news td:last-child {
  padding-right: 30px;
}
.sss-table.-news td:last-child::after {
  display: none;
}
.sss-table.-news td:last-child .sss-link {
  line-height: 1.4;
  display: block;
}
.sss-table.-news td:last-child .sss-link::after {
  top: -2px;
}

/* 故障メンテナンス情報
----------------------------------------------------------------- */
.sss-table.-outage th {
  padding-left: 30px;
}
.sss-table.-outage td {
  box-sizing: border-box;
  padding-top: 14px;
  padding-right: 0;
  padding-left: 30px;
  padding-bottom: 12px;
}
.sss-table.-outage td::after {
  content: "";
  width: 1px;
  background-color: #ccc;
  display: inline-block;
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: -16px;
}
.sss-table.-outage td:nth-child(4)::after {
  display: none;
}
.sss-table.-outage td:last-child {
  padding-right: 30px;
}
.sss-table.-outage td:last-child::after {
  display: none;
}

/* アクセス権
----------------------------------------------------------------- */
.sss-table.-access th {
  padding-left: 30px;
}
.sss-table.-access td {
  padding-left: 30px;
}
.sss-table.-access td:last-child::after {
  display: none;
}

/* ラジオボタン */
.sss-table td.-radio {
  padding-top: 0;
  padding-bottom: 0;
}
.sss-table td.-radio:first-child {
  padding-right: 0;
  padding-left: 0;
}
td.-radio input[type=checkbox] {
  display: none;
}
td.-radio label {
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
td.-radio label.-pl_0 {
  padding-left: 0;
  padding-right: 0;
}
td.-radio label.-pl_0::after {
  left: 6px;
}
td.-radio label::before {
  box-sizing: border-box;
  display: inline-block;
  width: 26px;
  height: 26px;
  min-width: 26px;
  content: "";
  background-color: #fff;
  border: 2px solid #cccccc;
  border-radius: 50%;
  margin-right: 15px;
  vertical-align: middle;
}
td.-radio label::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 36px;
}
td.-radio label:hover {
  color: #279af4;
}
td.-radio label:hover::before {
  border-color: #279af4;
}
td.-radio label:hover::after {
  background-color: #279af4;
}
td.-radio label.-disabled {
  padding-right: 0;
  pointer-events: none;
}
td.-radio label.-disabled::before {
  border-color: #e5e5e5;
}
td.-radio label.-disabled::after {
  background-color: #e5e5e5;
}
td.-radio label.-disabled.-gray::before {
  background-color: #e5e5e5;
}
td.-radio > input:checked + label {
  color: #0b5de9;
  font-weight: bold;
}
td.-radio > input:checked + label::before {
  border: none;
  border: 2px solid #0b5de9;
}
td.-radio > input:checked + label::after {
  background-color: #0b5de9;
}

/* チェックボックス */
th.-checkbox-title {
  padding-left: 30px;
}

.sss-table td.-checkbox {
  padding-top: 0;
  padding-bottom: 0;
}
.sss-table td.-checkbox:first-child {
  padding-right: 0;
  padding-left: 0;
}
td.-checkbox input[type=checkbox] {
  display: none;
}
td.-checkbox label {
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
td.-checkbox label.-pl_0 {
  padding-left: 0;
  padding-right: 0;
}
td.-checkbox label::before {
  box-sizing: border-box;
  display: inline-block;
  width: 26px;
  min-width: 26px;
  height: 26px;
  content: "";
  background-color: #fff;
  border: 2px solid #cccccc;
  border-radius: 4px;
  margin-right: 15px;
  vertical-align: middle;
}
td.-checkbox label:hover {
  color: #279af4;
}
td.-checkbox label:hover::before {
  border-color: #279af4;
}
td.-checkbox label.-disabled {
  pointer-events: none;
}
td.-checkbox label.-disabled::before {
  border: none;
  background-image: url(../img/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5e5e5;
}
td.-checkbox label.-disabled.-gray::before {
  background-color: #e5e5e5;
  background-image: none;
}
td.-checkbox label.-center {
  justify-content: center;
}
td.-checkbox label.-sss-bookmark-menu-checkbox-label {
  font-size: 14px;
  padding-top: 0px;
}
td.-checkbox label.-sss-bookmark-menu-checkbox-label::before {
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-right: 8px;
  background-size: 10px;
}
td.-checkbox > input:checked + label:not(.-disabled) {
  color: #0b5de9;
  font-weight: bold;
}
td.-checkbox > input:checked + label:not(.-disabled)::before {
  background-color: #0b5de9;
  border-color: #0b5de9;
  border: none;
  background-image: url(../img/icon_check.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* リージョン毎のテナントIDなどで使用
----------------------------------------------------------------- */
.sss-table.-region td:first-child {
  font-weight: bold;
}

.sss-table.-payment td::after {
  display: none;
}
.sss-table.-payment .-current {
  background-color: #ffc700;
}

/* 請求明細履歴
----------------------------------------------------------------- */
.sss-table.-payment {
  border-collapse: separate;
}
.sss-table.-payment .-current {
  background-color: #ffc700;
}
.sss-table.-payment .-current td:last-of-type {
  color: #4d4f5c;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.sss-table.-payment .-payment-tree__box {
  height: 100%;
  box-sizing: border-box;
}
.sss-table.-payment .-payment-tree[data-opened=true] td {
  border-top: 1px dashed #ecf0f7;
}
.sss-table.-payment .-payment-tree td {
  position: relative;
  border-bottom: none;
}
.sss-table.-payment .-payment-tree td:first-of-type:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  background-color: #fff;
}
.sss-table.-payment .-payment-tree.-underlayer .-payment-tree__box {
  position: relative;
}
.sss-table.-payment .-payment-tree.-underlayer .-payment-tree__box:before {
  content: "";
  border-left: 2px solid #b3c3de;
  border-bottom: 2px solid #b3c3de;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 4px;
  left: -18px;
  box-sizing: border-box;
}
.sss-table.-payment .-payment-tree.-underlayer + .-payment-tree:not(.-underlayer) th,
.sss-table.-payment .-payment-tree.-underlayer + .-payment-tree:not(.-underlayer) td {
  border-top: 1px solid #ecf0f7;
}
.sss-table.-payment .-payment-tree.-underlayer.-last .-payment-tree__box {
  position: relative;
  padding-left: 5px;
}
.sss-table.-payment .-payment-tree.-underlayer.-last .-payment-tree__box::before {
  content: "";
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 4px;
  left: -9px;
  box-sizing: border-box;
}

/* .sss-table.-paymentの下でのみ使用 */
.sss-table__row {
  display: flex;
  overflow: hidden;
}
.sss-table__row.-underlayer + :not(.-summary) {
  height: 0;
  transition: height 0.3s ease;
}
.sss-table__row.-underlayer .-summary .-payment-tree__box:first-child {
  margin-left: 40px;
}
.sss-table__row.-second .sss-table__cell:first-of-type {
  padding-left: 66px;
}
.sss-table__row.-second .sss-table__cell:first-of-type:before {
  width: 30px;
}
.sss-table__row.-third .sss-table__cell:first-of-type {
  padding-left: 96px;
}
.sss-table__row.-third .sss-table__cell:first-of-type:before {
  width: 60px;
}
.sss-table__row.-forth .sss-table__cell:first-of-type {
  padding-left: 122px;
}
.sss-table__row.-forth .sss-table__cell:first-of-type:before {
  width: 90px;
}
.sss-table__row.-last .sss-table__cell:first-of-type {
  padding-left: 140px;
}
.sss-table__row.-last .sss-table__cell:first-of-type:before {
  width: 115px;
}

/* .sss-table.-paymentの下でのみ使用 */
.sss-table__cell {
  border-bottom: 1px solid #ecf0f7;
  word-break: break-all;
  line-height: 1.4;
  box-sizing: border-box;
}
.sss-table__cell[role=columnheader] {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 16px;
  padding-top: 17px;
  vertical-align: middle;
}
.sss-table__cell[role=columnheader]:first-child {
  padding-left: 30px;
  padding-right: 30px;
}
.sss-table__cell[role=columnheader]:last-child {
  padding-right: 30px;
}
.sss-table__cell[role=cell] {
  min-height: 50px;
  font-size: 16px;
  position: relative;
  padding-top: 14px;
  padding-bottom: 13px;
}
.sss-table__cell[role=cell]:first-child {
  padding-right: 30px;
  padding-left: 30px;
}
.sss-table__cell[role=cell]:last-child {
  padding-right: 30px;
}
.sss-table__cell[role=cell].-rowspan {
  border-right: 1px solid #ecf0f7;
}
.sss-table__cell[role=cell].-rowspan + td {
  padding-left: 30px;
}
.sss-table__cell[role=cell].-rowspan.-last {
  border-bottom: none;
}
.sss-table__cell[role=cell].-rowspan + td.-checkbox {
  padding-left: 0;
}
.sss-table__row.-current .sss-table__cell[role=cell]:last-of-type {
  color: #4d4f5c;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.sss-table__row:last-of-type .sss-table__cell {
  border: 0;
}
.sss-table__cell:nth-child(1) {
  flex: 0 1 30%;
}
.sss-table__cell:nth-child(2) {
  flex: 1 1 30%;
}
.sss-table__cell:nth-child(3) {
  flex: 0 1 10%;
}
.sss-table__cell:nth-child(4) {
  flex: 0 1 30%;
}
.sss-table__cell.-summary:nth-child(1) {
  flex: 0 1 30%;
}
.sss-table__cell.-summary:nth-child(2) {
  flex: 1 1 40%;
}
.sss-table__cell.-summary:nth-child(3) {
  flex: 0 1 30%;
}
.sss-table__cell.-align-r {
  text-align: right;
}

/* 詳細明細
----------------------------------------------------------------- */
.sss-table-charge-detail-scroll {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 80vh;
}

.sss-table-charge-detail {
  width: 200%;
  table-layout: fixed;
  border-collapse: separate;
}
.sss-table-charge-detail thead th {
  background-color: #ffc700;
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
  position: sticky;
  top: 0;
  z-index: 800;
  padding-top: 17px;
  padding-bottom: 16px;
  padding-right: 10px;
  padding-left: 10px;
}
.sss-table-charge-detail thead th:first-child {
  padding-right: 30px;
  padding-left: 30px;
}
.sss-table-charge-detail thead th:last-child {
  padding-right: 30px;
}
.sss-table-charge-detail thead th.-align-r {
  text-align: right;
}
.sss-table-charge-detail thead th.-fixed__first__right {
  position: sticky;
  top: 0;
  right: 120px;
  z-index: 801;
  border-left: 3px solid #ecf0f7;
  background-color: #ffc700;
}
.sss-table-charge-detail thead th.-fixed__second__right {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 801;
  background-color: #ffc700;
}
.sss-table-charge-detail tbody tr:hover td {
  background-color: #fffedf;
}
.sss-table-charge-detail tbody td {
  min-height: 50px;
  font-size: 14px;
  position: relative;
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sss-table-charge-detail tbody td:first-child {
  padding-left: 30px;
}
.sss-table-charge-detail tbody td:last-child {
  padding-right: 30px;
}
.sss-table-charge-detail tbody td.-align-r {
  text-align: right;
}
.sss-table-charge-detail tbody td.-fixed__first__right {
  position: sticky;
  right: 120px;
  z-index: 800;
  background-color: #ffffff;
  border-left: 3px solid #ecf0f7;
  font-weight: bold;
}
.sss-table-charge-detail tbody td.-fixed__second__right {
  position: sticky;
  right: 0;
  z-index: 800;
  background-color: #ffffff;
}

/* 基本情報の編集
----------------------------------------------------------------- */
.sss-table.-tenants td:first-child {
  padding-top: 20px;
}

/* 新しい契約代表ユーザー
----------------------------------------------------------------- */
th.-contract-owner-candidate-user-list {
  padding-left: 30px;
}

/* 状態管理のモジュール
----------------------------------------------------------------- */
.sss-status {
  display: inline-block;
  position: relative;
  top: 4px;
  /* ビックリマークのアイコン */
  /* 故障アイコン */
  /* 正常アイコン */
  /* 削除済み */
  /* 承認待ち */
}
.sss-status.-attention {
  margin-right: 10px;
}
.sss-status.-error + span {
  color: #e70d0d;
  margin-right: 10px;
  margin-left: 10px;
}
.sss-status.-success + span {
  color: #53a600;
  margin-right: 10px;
  margin-left: 10px;
}
.sss-status.-deleted {
  top: 2px;
  margin-left: 2px;
}
.sss-status.-deleted + span {
  color: #4d4f5c;
  margin-right: 10px;
  margin-left: 12px;
}
.sss-status.-fail + span {
  color: #4d4f5c;
  margin-right: 10px;
  margin-left: 10px;
}

.sss-region {
  overflow: hidden;
}

.sss-region__item {
  padding-left: 20px;
  margin-top: 6px;
}
.sss-region__item .sss-region__title {
  font-size: 11px;
}
.sss-region__item .sss-region__content {
  font-size: 14px;
  color: #0b5de9;
  display: block;
  position: relative;
  padding-left: 16px;
  margin-top: 10px;
  line-height: 1.4;
}
.sss-region__item .sss-region__content::before {
  content: "";
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  box-sizing: border-box;
}

.sss-breadcrumbs {
  background-color: #dae1ef;
  height: 34px;
}

.sss-breadcrumbs__inner {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.sss-breadcrumbs__item {
  font-size: 12px;
  position: relative;
  white-space: nowrap;
  line-height: 34px;
}
.sss-breadcrumbs__item::after {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #4d4f5c;
  border-right: 1px solid #4d4f5c;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: -2px;
  left: 5px;
  margin-right: 17px;
  margin-left: 5px;
}
.sss-breadcrumbs__item:last-child {
  text-decoration: none;
}
.sss-breadcrumbs__item:last-child::after {
  display: none;
}
.sss-breadcrumbs__item a {
  color: #0b5de9;
  text-decoration: underline;
}
.sss-breadcrumbs__item:hover a {
  color: #279af4;
}

.sss-sentence {
  color: #4d4f5c;
}
* + .sss-sentence {
  margin-top: 13px;
}

.sss-sentence.-m_22 {
  margin-top: 22px;
}

.sss-sentence.-m_10 {
  margin-top: 10px;
}

.sss-sentence.-m_5 {
  margin-top: 5px;
}

.sss-sentence.-m_8 {
  margin-top: 8px;
}

.sss-sentence.-m_0 {
  margin-top: 0px;
}

.sss-textarea {
  margin-top: 24px;
  display: flex;
  position: relative;
}

.sss-textarea.-mt_0 {
  margin-top: 0;
}

textarea {
  resize: vertical;
  border-color: #cccccc;
  border-radius: 4px;
  width: 100%;
  flex: 1;
  font-size: 16px;
  color: #4d4f5c;
  font-family: -apple-system, sans-serif;
  padding: 12px 40px 12px 15px;
  box-sizing: border-box;
  min-height: 95px;
  /* エラー */
}
textarea:hover {
  border-color: #999999;
}
textarea:focus {
  border-color: #279af4;
  outline: none;
}
textarea.-error {
  border-color: #e70d0d;
  background-color: #fff3f3;
}
textarea.-error + .sss-textarea__count {
  color: #e70d0d;
}
textarea.-error + .sss-textarea__count::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_error.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: calc(50% - 9px);
  left: -34px;
}
textarea.-completed + .sss-textarea__count::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_success.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: calc(50% - 9px);
  left: -34px;
}

/*非活性  */
textarea.-disabled {
  pointer-events: none;
  background-color: #f2f2f2;
  border: none;
}

/* placeholder */
textarea::-moz-placeholder {
  color: #cccccc;
}
textarea::placeholder {
  color: #cccccc;
}

.sss-textarea__count {
  font-size: 14px;
  padding-top: 10px;
  padding-left: 20px;
  position: relative;
}

/* width 固定 */
.sss-textarea__count.-w_70 {
  width: 70px;
  text-align: left;
  padding-left: 0;
  padding-right: 30px;
  display: flex;
  justify-content: flex-end;
}

.sss-textarea__count.-pr_0 {
  padding-right: 0;
}

/* エラーメッセージ */
.sss-textarea-error {
  font-size: 14px;
  color: #e70d0d;
  margin-top: 6px;
  display: block;
  position: relative;
}

/* エラーメッセージを見えなくする */
.sss-textarea-error.-display-none {
  display: none;
}

.sss-textarea-desc {
  margin-top: 12px;
}

/* 請求明細履歴にて使用
----------------------------------------------------------------- */
.sss-paiment {
  margin-top: 26px;
}

.sss-paiment-usage {
  display: flex;
  margin-top: 12px;
  color: #4d4f5c;
}
.sss-paiment-usage .sss-paiment-usage__title::after {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #ccc;
  display: inline-block;
  margin-left: 5px;
  margin-right: 9px;
  position: relative;
  top: 2px;
}

.sss-modal {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: baseline;
  visibility: visible;
  opacity: 0;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.sss-modal:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 41, 98, 0.8);
  content: "";
}
.sss-modal.-visible {
  visibility: visible;
  opacity: 1;
  z-index: 70000;
}
.sss-modal.-long-duration {
  transition-duration: 0.7s;
  transition-timing-function: ease-in;
}

.sss-modal__panel {
  box-sizing: border-box;
  position: relative;
  width: auto;
  width: 800px;
  background-color: #fff;
  border-radius: 4px;
  margin-top: 100px;
}

.sss-modal__panel.-iam-role-resource {
  width: auto;
  max-width: 1000px;
  max-height: 94%;
  overflow-y: auto;
  margin-top: 30px;
  background-color: #e6ebf4;
}

.sss-modal__panel.-change-contract-owner-request {
  width: auto;
  max-width: 1000px;
  max-height: 94%;
  overflow-y: auto;
  margin-top: 30px;
  background-color: #e6ebf4;
}

.sss-modal__inner {
  padding-top: 35px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 35px;
}

.sss-modal__button {
  border-top: 1px solid #ecf0f7;
  display: flex;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
}

.sss-modal__scroll {
  max-height: 30vh;
  overflow: scroll;
}

.sss-toggle input[type=checkbox] {
  display: none;
}
.sss-toggle label {
  background-color: #cccccc;
  display: block;
  width: 46px;
  height: 24px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sss-toggle label:hover {
  background-color: #999999;
}
.sss-toggle label::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.2s ease;
}
.sss-toggle > input:checked + label {
  background-color: #489000;
}
.sss-toggle > input:checked + label:hover {
  background-color: #68A800;
}
.sss-toggle > input:checked + label::after {
  left: 24px;
}
.sss-toggle.-disabled label {
  pointer-events: none;
  background-color: #cccccc;
}
.sss-toggle.-disabled label::after {
  opacity: 0.5;
}

.sss-blueblock {
  background-color: #e6ebf4;
  border-radius: 4px;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 16px;
  margin-top: 24px;
  color: #4d4f5c;
}

.sss-blueblock__title {
  font-size: 24px;
  word-break: break-all;
  white-space: pre-wrap;
}

.sss-inputarea {
  margin-top: 24px;
  display: flex;
  position: relative;
}

.sss-inputarea.-mt_0 {
  margin-top: 0;
}

.sss-inputarea.-w_150 {
  width: 150px;
}

.sss-inputarea.-center {
  margin-right: auto;
  margin-left: auto;
}

.sss-inputarea__inputtext {
  resize: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  flex: 1;
  font-size: 16px;
  color: #4d4f5c;
  font-family: -apple-system, sans-serif;
  padding: 12px 15px;
  box-sizing: border-box;
  min-height: 95px;
  /* エラー */
}
.sss-inputarea__inputtext.-h_50 {
  height: 50px;
  min-height: auto;
}
.sss-inputarea__inputtext:hover {
  border-color: #999999;
}
.sss-inputarea__inputtext:focus {
  border-color: #279af4;
  outline: none;
}
.sss-inputarea__inputtext.-error {
  border-color: #e70d0d;
  background-color: #fff3f3;
}
.sss-inputarea__inputtext.-error + .sss-inputarea__count {
  color: #e70d0d;
}
.sss-inputarea__inputtext.-error + .sss-inputarea__count::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_error.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 16px;
  left: -34px;
}
.sss-inputarea__inputtext.-completed + .sss-inputarea__count::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/icon_success.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 16px;
  left: -34px;
}

/*非活性  */
.sss-inputarea__inputtext.-disabled {
  pointer-events: none;
  background-color: #f2f2f2;
  border: none;
}

/* placeholder */
.sss-inputarea__inputtext::-moz-placeholder {
  color: #cccccc;
}
.sss-inputarea__inputtext::placeholder {
  color: #cccccc;
}

.sss-inputarea__inputtext-nocheck {
  resize: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  flex: 1;
  font-size: 16px;
  color: #4d4f5c;
  font-family: -apple-system, sans-serif;
  padding: 12px 15px;
  box-sizing: border-box;
  min-height: 95px;
}
.sss-inputarea__inputtext-nocheck.-h_50 {
  height: 50px;
  min-height: auto;
}
.sss-inputarea__inputtext-nocheck:hover {
  border-color: #999999;
}
.sss-inputarea__inputtext-nocheck:focus {
  border-color: #279af4;
  outline: none;
}

/*非活性  */
.sss-inputarea__inputtext-nocheck.-disabled {
  pointer-events: none;
  background-color: #f2f2f2;
  border: none;
}

/* placeholder */
.sss-inputarea__inputtext-nocheck::-moz-placeholder {
  color: #cccccc;
}
.sss-inputarea__inputtext-nocheck::placeholder {
  color: #cccccc;
}

.sss-inputarea__clear-button {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  top: 16px;
  right: 16px;
  background-image: url(../img/icon_caption_cross.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  cursor: pointer;
  visibility: hidden;
}

.sss-inputarea__count {
  font-size: 14px;
  padding-top: 10px;
  padding-left: 20px;
  position: relative;
}

/* width 固定 */
.sss-inputarea__count.-w_70 {
  width: 70px;
  text-align: left;
  padding-left: 0;
  padding-right: 30px;
  display: flex;
  justify-content: flex-end;
}

.sss-inputarea__count.-pr_0 {
  padding-right: 0;
}

/* エラーメッセージ */
.sss-inputarea-error {
  font-size: 14px;
  color: #e70d0d;
  margin-top: 6px;
  display: block;
  position: relative;
}

/* エラーメッセージを見えなくする */
.sss-inputarea-error.-display-none {
  display: none;
}

.sss-inputarea-desc {
  margin-top: 12px;
}

.sss-inputtext {
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-top: 8px;
}

/* タブ切り替え
----------------------------------------------------------------- */
.sss-tab {
  width: 100%;
}

.sss-tab__head {
  display: flex;
  z-index: 0;
  position: relative;
  width: 100%;
}
.sss-tab__head::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #092962;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sss-tab__label {
  box-sizing: border-box;
  position: relative;
  z-index: 30;
  width: 100%;
  padding: 0;
  background-color: #092962;
  border-radius: 4px 4px 0 0;
  border-style: solid;
  border-width: 1px;
  border-color: #092962;
  border-bottom-color: #092962;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #d9dfe9;
  cursor: pointer;
  transition: all 0.1s ease;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 16px;
  /* カレント状態 */
}
.sss-tab__label:first-of-type {
  margin-right: 15px;
}
.sss-tab__label:first-of-type::after {
  content: "";
  position: absolute;
}
.sss-browser-is-safari .sss-tab__label {
  margin: 0;
}
.sss-browser-is-ie .sss-tab__label {
  border-bottom: solid 2px #f2f2f2;
  padding-top: 18px;
  padding-bottom: 11px;
}
.sss-tab__label:focus {
  outline: none;
}
.sss-tab__label:hover {
  color: #d9dfe9;
  background-color: #2f66c3;
  border-color: #2f66c3;
  z-index: -10;
}
.sss-tab__label.-active {
  background-color: #e6ebf4;
  border-color: #092962;
  border-bottom-color: #e6ebf4;
  color: #092962;
  cursor: default;
  pointer-events: none;
}
.sss-tab__label.-active:after {
  display: none;
}

.sss-tab__body {
  position: relative;
  z-index: 0;
}

.sss-tab__content {
  box-sizing: border-box;
  display: none;
  position: relative;
  width: 100%;
  padding-top: 30px;
}
.sss-tab__content.-active {
  display: block;
}

.sss-tab__label.-third {
  margin-left: 15px;
}

.sss-buttonarea {
  position: fixed;
  bottom: 0px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  background-color: rgba(9, 41, 98, 0.85);
  animation: slideFrombottom 0.5s cubic-bezier(0.59, -0.32, 0.23, 1.15);
  height: 70px;
  box-sizing: border-box;
  z-index: 10010;
}

@keyframes slideFrombottom {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* アコーディオン部分
----------------------------------------------------------------- */
.sss-accordion {
  display: none;
  overflow: hidden;
}

.sss-accordion__inner {
  padding-top: 28px;
}

.sss-accordion__block {
  margin-top: 30px;
  font-size: 14px;
}

.sss-accordion__block-item {
  margin-top: 20px;
}

/* カレンダー jquery-ui datepickerのスタイル
----------------------------------------------------------------- */
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em !important;
  text-align: center;
  font-weight: bold;
  border: 0;
  line-height: 1.8;
}

.ui-datepicker td {
  border: 0;
  padding: 1px !important;
  line-height: 1.8;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: center;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
  display: none;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-close {
  right: 47%;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

/* カスタマイズ
----------------------------------------------------------------- */
.sss-date {
  border: 1px solid #cccccc;
  padding-top: 12px;
  padding-right: 14px;
  padding-left: 16px;
  padding-bottom: 12px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 4px;
  position: relative;
}
.sss-date.-focus {
  border-color: #7a9ede;
  outline: none;
}
.sss-date::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: red;
  display: block;
  position: absolute;
}

.sss-data-flex {
  display: flex;
}

.sss-date__block {
  position: relative;
}

.sss-date__icon {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  background-image: url("../img/icon_calendar.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  top: 17px;
  right: 17px;
}

.sss-date-fromto {
  margin-top: 14px;
  margin-right: 14px;
  margin-left: 14px;
}

.ui-widget.ui-widget-content {
  border: none;
  left: 0;
}

.ui-widget {
  font-family: -apple-system, sans-serif;
}

.ui-widget-content {
  background-color: #092962;
  opacity: 0.85;
  color: #fff;
  width: 370px;
  box-sizing: border-box;
  position: relative;
  padding-top: 18px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 10px;
  border-radius: 4px;
}
.ui-widget-content:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 7px 6.5px;
  border-color: transparent transparent #092962 transparent;
  position: absolute;
  top: -7px;
  left: 20px;
}

.ui-widget-header {
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  background: none;
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background: none;
}

.ui-widget-header .ui-icon {
  background: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover {
  background: none;
}

/* 前へ次へボタン */
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 10px;
  height: 10px;
  top: 10px;
  border-radius: 0;
}

.ui-datepicker-next {
  border-top: 2px solid #d9dfe9;
  border-right: 2px solid #d9dfe9;
  transform: rotate(45deg);
}
.ui-datepicker-next.ui-state-hover, .ui-datepicker-next.ui-widget-content .ui-state-hover, .ui-datepicker-next.ui-widget-header .ui-state-hover {
  border-top: 2px solid #0b5de9;
  border-right: 2px solid #0b5de9;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  background: none;
}

/* prev */
.ui-datepicker-prev {
  border-top: 2px solid #d9dfe9;
  border-right: 2px solid #d9dfe9;
  transform: rotate(-135deg);
}
.ui-datepicker-prev.ui-state-hover, .ui-datepicker-prev.ui-widget-content .ui-state-hover, .ui-datepicker-prev.ui-widget-header .ui-state-hover {
  border-top: 2px solid #0b5de9;
  border-right: 2px solid #0b5de9;
  border-left: none;
  border-bottom: none;
  transform: rotate(-135deg);
  background: none;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker-next.ui-datepicker-next-hover {
  right: 2px;
}

.ui-datepicker.ui-datepicker-prev-hover {
  left: 2px;
}

.ui-datepicker-prev.ui-state-disabled {
  border-top: 2px solid #6685ba;
  border-right: 2px solid #6685ba;
  cursor: default;
  pointer-events: none;
}

.ui-datepicker-title {
  font-size: 15px;
}

.ui-datepicker-calendar {
  font-size: 15px;
}
.ui-datepicker-calendar thead tr {
  border-bottom: 1px solid #4f6793;
}
.ui-datepicker-calendar thead td {
  padding: 0;
}
.ui-datepicker-calendar tbody {
  /* todayをホバーしたときは青丸のホバーを出さない */
}
.ui-datepicker-calendar tbody tr {
  margin-top: 10px;
}
.ui-datepicker-calendar tbody td a:hover {
  transition: all 0.2s ease;
}
.ui-datepicker-calendar tbody td a:hover::before {
  background-color: #0b5de9;
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  top: 0px;
  left: 50%;
  display: block;
  position: absolute;
  z-index: -1;
  transform: translateX(-50%);
}
.ui-datepicker-calendar tbody td.ui-datepicker-week-end {
  padding-right: 0;
}
.ui-datepicker-calendar tbody .ui-datepicker-today a:hover {
  transition: all 0.2s ease;
}
.ui-datepicker-calendar tbody .ui-datepicker-today a:hover::before {
  display: none;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding-right: 8px;
  padding-left: 8px;
}

/* 本日の日付
----------------------------------------------------------------- */
.ui-datepicker-today {
  background: none;
  border: none;
  position: relative;
  z-index: 1;
  color: #092962;
}
.ui-datepicker-today::before {
  background-color: #ffc700;
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  top: 11px;
  left: 50%;
  display: block;
  position: absolute;
  z-index: -1;
  transform: translateX(-50%);
}
.ui-datepicker-today:hover a::before {
  display: none;
}

/* デフォルトの日付 */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
  position: relative;
  margin-top: 10px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #092962;
}

.sss-append_datepicker,
.sss-append_datepicker_from,
.sss-append_datepicker_to {
  position: relative;
}

/* 選択不可のときの色 */
.ui-datepicker-unselectable.ui-state-disabled .ui-state-default {
  color: #6685ba;
  text-decoration: none;
  pointer-events: none;
}

/* カレンダーを随時インプットエリアの下に付けるための記述 */
.ui-datepicker {
  top: -6px !important;
  left: 0 !important;
}

.ui-datepicker-trigger {
  display: none;
}

@keyframes rotate-circle-right {
  0% {
    transform: rotate(0deg);
    background: #fff;
  }
  50% {
    transform: rotate(180deg);
    background: #fff;
  }
  50.01% {
    transform: rotate(360deg);
    background: #0b5de9;
  }
  100% {
    transform: rotate(360deg);
    background: #0b5de9;
  }
}
@keyframes rotate-circle-left {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.sss-loading-circle {
  position: relative;
  width: 40px;
  height: 40px;
  background: #0b5de9;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.sss-loading-circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 40px;
  background: #fff;
  transform-origin: right 20px;
  z-index: 2;
  animation: rotate-circle-left 0.8s linear forwards;
  animation-iteration-count: infinite;
}
.sss-loading-circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  transform-origin: left 20px;
  z-index: 3;
  animation: rotate-circle-right 0.8s linear forwards;
  animation-iteration-count: infinite;
}

.sss-loading-circle--block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sss-loading-circle__inner {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  padding-top: 0px;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
}

@keyframes toastMove {
  0% {
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes toastMoveClose {
  0% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
  }
}
.sss-toast {
  display: none;
  z-index: 10100;
  box-sizing: border-box;
  background-color: rgba(9, 41, 98, 0.85);
  width: 400px;
  padding: 17px 32px 17px 48px;
  border-radius: 4px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  visibility: hidden;
}
.js-new-completed .sss-toast, .js-new-failed .sss-toast, .js-new .sss-toast {
  display: block;
  z-index: 10100;
}
.sss-toast span {
  color: #fff;
  display: inline-block;
  z-index: 10100;
  margin-right: 20px;
  line-height: 22px;
}
.sss-toast::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.sss-toast.-close {
  visibility: hidden;
  animation: toastMoveClose 0.3s ease-out;
}

.sss-toast.-active {
  visibility: visible;
  z-index: 10100;
  animation: toastMove 0.3s ease-out;
}
.sss-toast.-active.-in-front-of-modal {
  z-index: 80000;
}

.sss-toast__close {
  display: block;
  position: absolute;
  top: 21px;
  right: 26px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/icon_toast_cross.svg);
  transition: transform 0.3s ease-in-out;
}
.sss-toast__close:hover {
  transform: rotate(180deg);
}

/* 失敗 */
.sss-toast.-fail:before {
  background-image: url(../img/icon_error.svg);
}

.sss-toast.-completed:before {
  background-image: url(../img/icon_success.svg);
}

.sss-service-breadcrumb {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-left: 4px;
  padding-right: 20px;
}
.sss-service-breadcrumb li {
  position: relative;
  font-weight: normal;
}
.sss-service-breadcrumb li::after {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #4d4f5c;
  border-right: 1px solid #4d4f5c;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: -2px;
  left: 5px;
  margin-right: 17px;
  margin-left: 5px;
}
.sss-service-breadcrumb li:last-of-type {
  font-weight: bold;
  color: #092962;
}
.sss-service-breadcrumb li:last-of-type:after {
  display: none;
}

:root {
  --sss-css-text-close: "閉じる";
  --sss-css-text-see-all: "すべて見る";
  --sss-css-text-close-payment: "項目を閉じる";
  --sss-css-text-see-all-payment: "項目をすべて開く";
}

/* flexbox
----------------------------------------------------------------- */
.sss-flex-box {
  display: flex;
  flex-wrap: wrap;
}

.sss-flex-box.-m_base {
  margin-top: 6px;
  margin-bottom: 25px;
}

.sss-flex-item {
  padding: 1%;
  margin: 0.5%;
  width: 30.3%;
  background-color: #ffffff;
  border-radius: 4px;
}

.sss-flex-item-5-split {
  padding: 1%;
  margin: 0.5%;
  width: 17%;
  background-color: #ffffff;
  border-radius: 4px;
}
.sss-flex-item-5-split.-management-link th {
  vertical-align: top;
}
.sss-flex-item-5-split.-management-link img {
  margin-left: 10px;
  margin-right: 10px;
  width: 50px;
}
.sss-flex-item-5-split.-management-link img.-users {
  position: relative;
  top: 10px;
}
.sss-flex-item-5-split.-management-link img.-billing {
  margin-left: 0px;
}
.sss-flex-item-5-split.-management-link .sss-link {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  word-break: break-all;
  margin-bottom: 10px;
}

/* 余白を指定するためのクラス
----------------------------------------------------------------- */
.sss-mr-7 {
  margin-right: 7px;
}

.sss-mr-14 {
  margin-right: 14px;
}

.sss-ml-7 {
  margin-left: 7px;
}

.sss-ml-14 {
  margin-left: 14px;
}

.sss-mr-20 {
  margin-right: 20px;
}

.sss-ml-20 {
  margin-left: 20px;
}

.sss-mr-30 {
  margin-right: 30px;
}

.sss-mt-10 {
  margin-top: 10px;
}

.sss-mt-16 {
  margin-top: 16px;
}

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

.sss-mb-25 {
  margin-bottom: 25px;
}

/* ==========================================================================
Foundation
========================================================================== */
/* ==========================================================================
Layout
========================================================================== */
/* ==========================================================================
Component
========================================================================== */
/* ==========================================================================
Object
========================================================================== */
