@charset "UTF-8";
/* 基本カラー */
/* テキストカラー */
/* 背景カラー */
/* コンテンツカラー */
/* ボーダーカラー */
/* ステータスカラー */
/* padding*marginともに使う数値 */
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
/* 見出しのテキスト折り返しをbalanceに設定 */
/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

button {
  color: #2a2e32;
}

/***** タイトル *****/
.c-title-main {
  line-height: 1.2;
  font-size: 1.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .c-title-main {
    font-size: 1.25rem;
  }
}
.c-title-main button {
  margin-left: 8px;
}

.c-title-main__sub {
  font-size: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .c-title-main__sub {
    font-size: 0.875rem;
  }
}

/***** ページ説明 *****/
.c-description {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767px) {
  .c-description {
    font-size: 0.8125rem;
  }
}

/***** ボタン *****/
.c-button {
  display: inline-block;
  padding: 12px 16px;
  min-width: 136px;
  border: 1px solid #cccccc;
  border-radius: 32px;
  line-height: 1.4;
  font-size: 0.875rem;
  font-weight: 700;
  background: #eeeeee;
  color: #333333;
  text-decoration: none;
  text-align: center;
}
.c-button:hover {
  background: #e5e5e5;
  color: #333333;
}
.c-button:disabled {
  border: 1px solid #d7d9dc;
  background: #f6f6f6;
  color: #bec1c3;
  cursor: not-allowed;
}
.c-button.is-primary {
  border-color: #e1196c;
  background: #e1196c;
  color: #ffffff;
}
.c-button.is-primary:hover {
  border-color: #be0653;
  background: #be0653;
  color: #ffffff;
}
.c-button.is-primary:disabled {
  border-color: #f6f6f6;
  background: #f6f6f6;
  color: #bec1c3;
  cursor: not-allowed;
}
.c-button.is-secondary {
  background: #ffffff;
  color: #e1196c;
  border: 1px solid #e1196c;
}
.c-button.is-secondary:hover {
  background: #f8f7f5;
}
.c-button.is-secondary:disabled {
  border-color: #d7d9dc;
  background: #f6f6f6;
  color: #bec1c3;
}
.c-button.is-tertiary {
  background: #ffffff;
  border-color: #ffffff;
  color: #e1196c;
  text-decoration: underline;
}
.c-button.is-tertiary:hover {
  background: #f8f7f5;
}
.c-button.is-tertiary:disabled {
  background: #ffffff;
  border-color: #ffffff;
  color: #bec1c3;
  cursor: not-allowed;
}
.c-button.is-cancel {
  border-color: #eeeeee;
}
.c-button.is-large {
  padding: 16px;
  font-size: 1rem;
}
.c-button.is-small {
  padding: 8px 16px;
  line-height: 1.3;
  font-size: 0.875rem;
}
.c-button.is-wide {
  width: 400px;
  max-width: 100%;
}
.c-button.is-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.c-button.is-loading {
  /* HTML: <div class="loader"></div> */
}
.c-button.is-loading > span {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.c-button.is-loading .loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #bec1c3 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #bec1c3);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}

/** add ITS nakayama START */
.c-button.is-skyblue {
  border-color: #00bfff;
  background: #00bfff;
  color: #ffffff;
}
.c-button.is-skyblue:hover {
  border-color: #009acd;
  background: #009acd;
  color: #ffffff;
}
.c-button.is-skyblue:disabled {
  border-color: #b0e0e6;
  background: #b0e0e6;
  color: #aaaaaa;
  cursor: not-allowed;
}
.c-button.is-glay {
  border-color: #808080;
  background: #808080;
  color: #ffffff;
}
.c-button.is-glay:hover {
  border-color: #696969;
  background: #696969;
  color: #ffffff;
}
.c-button.is-glay:disabled {
  border-color: #d3d3d3;
  background: #d3d3d3;
  color: #aaaaaa;
  cursor: not-allowed;
}
.c-button.is-secondary-bk {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}
.c-button.is-secondary-bk:hover {
  background: #f8f7f5;
}
.c-button.is-secondary-bk:disabled {
  border-color: #d7d9dc;
  background: #f6f6f6;
  color: #bec1c3;
}
/** add ITS nakayama E N D */

.c-button-system {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  min-width: 72px;
  line-height: 1.4;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  background: #364a5e;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid #364a5e;
  z-index: 0; /* add ITS Abe */
}
.c-button-system:hover {
  background: #273543;
  border-color: #273543;
  color: #ffffff;
}
.c-button-system:disabled {
  background: #f6f6f6;
  border-color: #d7d9dc;
  color: #bec1c3;
  cursor: not-allowed;
}
.c-button-system:disabled.is-loading {
  /* HTML: <div class="loader"></div> */
}
.c-button-system:disabled.is-loading > span {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.c-button-system:disabled.is-loading .loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #bec1c3 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #bec1c3);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.c-button-system.is-primary {
  background: #e1196c;
  border-color: #e1196c;
}
.c-button-system.is-primary:hover {
  background: #be0653;
  border-color: #be0653;
  color: #ffffff;
}
.c-button-system.is-primary:disabled {
  background: #f6f6f6;
  border-color: #d7d9dc;
  color: #bec1c3;
  cursor: not-allowed;
}
.c-button-system.is-secondary {
  background: #ffffff;
  border-color: #557494;
  color: #364a5e;
}
.c-button-system.is-secondary:hover {
  background: #f1f3f6;
}
.c-button-system.is-secondary:disabled {
  background: #f6f6f6;
  border-color: #d7d9dc;
  color: #bec1c3;
  cursor: not-allowed;
}
.c-button-system.is-secondary.is-selected {
  background: #364a5e;
  border-color: #364a5e;
  color: #ffffff;
}
.c-button-system.is-secondary.is-selected:hover {
  background: #273543;
  border-color: #273543;
}

/***** フォーム *****/
.c-form-label {
  display: block;
  margin-bottom: 8px;
}

.c-form-label__text {
  font-size: 1rem;
  font-weight: 700;
}

.c-form-label__required {
  margin-left: 8px;
  font-size: 0.75rem;
  color: #e11919;
}

.c-form-help {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.c-form-error {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #e11919;
  font-size: 0.75rem;
}

/***** テキストフィールド系 *****/
.c-form-text {
  padding: 5px 8px;
  height: 40px;
  border: 1px solid #959ba2;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  background: #ffffff;
  color: #2a2e32;
}
.c-form-text:disabled {
  cursor: not-allowed;
  background: #f6f6f6;
  color: #bec1c3;
}
.c-form-text.is-error {
  padding: 4px 7px;
  border: 2px solid #e11919;
  background: #fff6f6;
}
.c-form-text.is-search-date {
  width: 140px;
}
@media only screen and (max-width: 767px) {
  .c-form-text.is-search-date {
    width: 132px;
  }
}
.c-form-text.is-search-name {
  width: 160px;
}
@media only screen and (max-width: 767px) {
  .c-form-text.is-search-name {
    width: 100%;
  }
}

.c-form-textarea {
  padding: 5px 8px;
  border: 1px solid #959ba2;
  border-radius: 8px;
  width: 100%;
  min-height: 120px;
  font-size: 1rem;
  background: #ffffff;
  vertical-align: bottom;
}
.c-form-textarea:disabled {
  cursor: not-allowed;
  background: #f6f6f6;
  color: #bec1c3;
}
.c-form-textarea.is-error {
  padding: 4px 7px;
  border: 2px solid #e11919;
  background: #fff6f6;
}

/***** ラジオボタン・チェックボックス *****/
.c-form-checklist {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-form-checklist {
    display: block;
  }
}

.c-form-checklist__item:not(:last-child) {
  margin-right: 24px;
}
@media only screen and (max-width: 767px) {
  .c-form-checklist__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }
}

.c-form-checklist__label {
  padding: 8px 0;
}
.c-form-checklist__label:has(input:disabled) {
  color: #bec1c3;
}

.c-form-customcheck {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-form-customcheck {
    display: block;
  }
}

.c-form-customcheck__item:not(:last-child) {
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .c-form-customcheck__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.c-form-customcheck__label {
  display: inline-block;
  position: relative;
  padding: 8px 32px;
  background: #ffffff left 10px center;
  border: 1px solid #959ba2;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}
.c-form-customcheck__label:hover {
  border-color: #076ca6;
  background-color: #f5fbff;
  color: #076ca6;
}
.c-form-customcheck__label:has(.c-form-customcheck__input:checked) {
  background: url("/images/Operator/jewel/icon-check-white.svg") #076ca6 no-repeat left 10px center;
  background-size: 16px;
  color: #ffffff;
  border-color: #076ca6;
}
.c-form-customcheck__label:has(.c-form-customcheck__input:focus) {
  outline: 2px solid #1d91d3;
  outline-offset: 2px;
  transition: none;
}
.c-form-customcheck__label:has(.c-form-customcheck__input:disabled) {
  background: #f6f6f6;
  border-color: #f6f6f6;
  color: #bec1c3;
  cursor: not-allowed;
}

.c-toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.c-toggle-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.c-toggle-switch input + .c-toggle-switch-slider::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 8px;
  height: 8px;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.c-toggle-switch input:checked + .c-toggle-switch-slider {
  background: #1d91d3;
}
.c-toggle-switch input:checked + .c-toggle-switch-slider::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 15px;
  width: 1px;
  height: 8px;
  border-right: 1px solid #ffffff;
  border-radius: 0;
}

.c-toggle-switch input:checked + .c-toggle-switch-slider::before {
  transform: translateX(24px);
}

.c-toggle-switch input:focus + .c-toggle-switch-slider {
  transition: none;
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.c-toggle-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-toggle-switch-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/***** ファイル選択 *****/
.c-file-select::file-selector-button {
  padding: 9px 16px;
  border: 0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #364a5e;
  color: white;
  text-align: center;
}
.c-file-select::file-selector-button:hover {
  background: #273543;
  cursor: pointer;
}

/***** リンク *****/
.c-icon-link {
  display: inline-flex;
  align-items: center;
}
.c-icon-link svg {
  margin-left: 8px;
}
.c-icon-link:hover svg path {
  stroke: #e1196c;
}

/***** カード *****/
.c-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(42, 46, 50, 0.05);
}
@media only screen and (max-width: 1024px) {
  .c-card {
    padding: 16px;
  }
}

.c-card-mini {
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(42, 46, 50, 0.05);
}
@media only screen and (max-width: 1024px) {
  .c-card-mini {
    padding: 8px;
  }
}

.c-card-note {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .c-card-note {
    margin-top: 24px;
    font-size: 0.75rem;
  }
}

/***** ツールチップ *****/
.c-tooltip {
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  padding: 4px 8px;
  max-width: 200px;
  border-radius: 4px;
  font-size: 0.625rem;
  background: #333;
  color: #fff;
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
  transform: translate(-50%, 14px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .c-tooltip {
    display: none;
  }
}

.js-tooltip-trigger {
  position: relative;
}
.js-tooltip-trigger:hover .c-tooltip, .js-tooltip-trigger:focus .c-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px);
}

/***** ヘルプガイド *****/
.c-help-guide {
  position: relative;
  line-height: 1;
}

.c-help-guide__contents {
  position: absolute;
  z-index: 0;
  border: 1px solid #959ba2;
  border-radius: 8px;
  padding: 20px;
  width: 32vw;
  max-width: 640px;
  min-width: 400px;
  font-weight: 400;
  line-height: 1.7;
  font-size: 0.75rem;
  background: #f1f3f6;
  color: #2a2e32;
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.1);
  white-space: normal;
  text-align: left;
  display: none;       /* add ITS Ikemoto */
  position: absolute;  /* add ITS Ikemoto */
  z-index: 1000;       /* add ITS Ikemoto */
  /***** TOPヘルプ *****/
  /***** チャット配信設定ヘルプ *****/
  /***** メッセージ系ヘルプ *****/
  /***** プロフ閲覧数ヘルプ *****/
  /***** プロフィールヘルプ *****/
}
.c-help-guide__contents.is-visible {
  display: block;       /* add ITS Ikemoto */
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents {
    width: 80vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents {
    width: 80vw;
    min-width: inherit;
  }
}
.c-help-guide__contents.is-pc-top-right {
  bottom: calc(100% + 8px);
  left: -20px;
}
.c-help-guide__contents.is-pc-top-left {
  bottom: calc(100% + 8px);
  right: -20px;
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-tb-top-center {
    left: 50%;
    /** add ITS sakamoto START **/
    right: auto !important;  /* rightを無効化 */
    transform: translateX(-50%);
  }
  .c-help-guide__contents.is-tb-bottom-center {
    top: calc(100% + 8px);
    left: 50%;
    right: auto !important;  /* rightを無効化 */
    /** add ITS sakamoto E N D**/
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-tb-top-left {
    bottom: calc(100% + 8px);
    right: -20px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-tb-top-right {
    bottom: calc(100% + 8px);
    left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-sp-top-left {
    left: auto;
    right: -16px;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-sp-top-center {
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-sp-bottom-left {
    top: calc(100% + 8px);
    bottom: auto;
    right: -16px;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-sp-bottom-right {
    top: calc(100% + 8px);
    bottom: auto;
    left: -16px;
    right: auto;
  }
}
.c-help-guide__contents.is-index-beginner {
  width: 400px;
}
@media only screen and (max-width: 1200px) {
  .c-help-guide__contents.is-index-beginner {
    left: auto;
    right: -20px;
    min-width: auto;
    max-width: calc(100vw - 40px);  /* ビューポート幅を超えないように制限 add ITS sakamoto */
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-index-beginner {
    right: -10px;
    width: 360px;  /* 画面幅に合わせて適切なサイズに縮小 mod ITS sakamoto */
    max-width: calc(100vw - 40px);  /* ビューポート幅を超えないように制限 add ITS sakamoto */
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-index-beginner {
    max-width: 80vw;
  }
}
.c-help-guide__contents.is-chat-setting-wait {
  width: 500px;
}
@media only screen and (max-width: 1200px) {
  .c-help-guide__contents.is-chat-setting-wait {
    min-width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-chat-setting-wait {
    max-width: 60vw;
  }
}
.c-help-guide__contents.is-chat-setting-view {
  width: 400px;
  z-index: 10;
}
@media only screen and (max-width: 1200px) {
  .c-help-guide__contents.is-chat-setting-view {
    min-width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-chat-setting-view {
    max-width: 60vw;
  }
}
.c-help-guide__contents.is-chat-setting-position {
  width: 330px;
  z-index: 10;
  min-width: auto;
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-chat-setting-position {
    max-width: 60vw;
  }
}
.c-help-guide__contents.is-chat-setting-mic {
  width: 420px;
  z-index: 10;
  min-width: auto;
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-chat-setting-mic {
    max-width: 60vw;
  }
}
.c-help-guide__contents.is-chat-setting-view-sp {
  left: -32px;
  min-width: auto;
  width: 260px;
}
.c-help-guide__contents.is-chat-setting-mic-sp {
  left: -160px;
  min-width: auto;
  width: 280px;
}
.c-help-guide__contents.is-message-tag {
  width: 600px;
}
@media only screen and (max-width: 1200px) {
  .c-help-guide__contents.is-message-tag {
    max-width: 40vw;
    min-width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-message-tag {
    max-width: 60vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-message-tag-sp {
    max-width: 60vw;
  }
}
@media (max-width: 600px) {
  .c-help-guide__contents.is-message-tag-sp {
    left: -100px;
  }
}
.c-help-guide__contents.is-message-notification, .c-help-guide__contents.is-message-prohibition, .c-help-guide__contents.is-message-ng {
  width: 500px;
}
@media only screen and (max-width: 1200px) {
  .c-help-guide__contents.is-message-notification, .c-help-guide__contents.is-message-prohibition, .c-help-guide__contents.is-message-ng {
    width: 320px;
    min-width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-message-notification, .c-help-guide__contents.is-message-prohibition, .c-help-guide__contents.is-message-ng {
    width: 40vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-message-notification, .c-help-guide__contents.is-message-prohibition, .c-help-guide__contents.is-message-ng {
    width: 80vw;
  }
}
.c-help-guide__contents.is-message-new-search {
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-message-new-search {
    width: 60vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-message-new-search {
    left: -16px;
    right: auto;
    width: 55vw;
  }
}
@media (max-width: 500px) {
  .c-help-guide__contents.is-message-new-search {
    left: -64px;
    right: auto;
    width: 70vw;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-prof-pv {
    width: 40vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-prof-pv {
    width: 80vw;
  }
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-prof-percentage {
    width: 40vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-prof-percentage {
    width: 80vw;
  }
}
.c-help-guide__contents.is-prof-user-sp {
  left: -64px;
  width: 60vw;
  min-width: 270px;
}
.c-help-guide__contents.is-prof-pv-sp {
  right: -64px;
  width: 60vw;
  min-width: 270px;
}
.c-help-guide__contents.is-prof-percentage-sp {
  width: 60vw;
  min-width: 300px;
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-prof-faq {
    width: 60vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-prof-faq {
    left: -16px;
    right: auto;
    width: 55vw;
  }
}
@media (max-width: 500px) {
  .c-help-guide__contents.is-prof-faq {
    right: -80px;
    left: auto;
    width: 60vw;
  }
}
@media (max-width: 400px) {
  .c-help-guide__contents.is-prof-faq {
    width: 75vw;
  }
}
.c-help-guide__contents.is-prof-pr {
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .c-help-guide__contents.is-prof-pr {
    width: 60vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-help-guide__contents.is-prof-pr {
    left: -16px;
    right: auto;
    width: 55vw;
  }
}
@media (max-width: 500px) {
  .c-help-guide__contents.is-prof-pr {
    left: -80px;
    right: auto;
    width: 60vw;
  }
}
@media (max-width: 400px) {
  .c-help-guide__contents.is-prof-pr {
    width: 75vw;
  }
}
.c-help-guide__contents .c-info-list__item {
  font-size: 0.75rem;
}

.c-help-guide__title {
  font-weight: 700;
}

.c-help-guide__note {
  margin-top: 8px;
  padding: 4px 8px;
  font-size: 0.6875rem;
  border-radius: 4px;
  background: #ffffff;
  color: #616568;
}

.c-help-guide__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

/***** スピナー *****/
.c-spinner {
  display: inline-block;
  position: relative;
  text-indent: -9999em;
  margin: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 10px;
  background: #616568;
  background: linear-gradient(to right, #616568 10%, rgba(190, 193, 195, 0) 70%);
  animation: load3 1s infinite linear;
  transform: translateZ(0);
}
.c-spinner:before {
  width: 50%;
  height: 50%;
  background: #616568;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.c-spinner:after {
  background: #f6f6f6;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-spinner-text {
  margin-left: 8px;
  display: inline-block;
}

/***** ダイアログ *****/
.c-dialog {
  display: none;
}

.c-dialog__popup {
  overflow: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001; /* mod ITS Ohyabu */
  padding: 24px;
  width: 327px;
  max-height: calc(100dvh - 32px);
  border-radius: 8px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
  font-size: 0.8125rem;
}
.c-dialog__popup.is-m {
  width: 420px;
  max-width: 100%;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-m {
    padding: 24px;
    width: calc(100% - 32px);
    max-width: 420px;
    font-size: 0.8125rem;
  }
}
.c-dialog__popup.is-m .c-dialog__note {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-m .c-dialog__note {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-m .c-dialog__btns {
    margin-top: 24px;
  }
}
.c-dialog__popup.is-l {
  padding: 40px;
  width: 560px;
  max-width: 100%;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-l {
    padding: 24px;
    width: calc(100% - 32px);
    max-width: 560px;
    font-size: 0.8125rem;
  }
}
.c-dialog__popup.is-l .c-dialog__title {
  font-size: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-l .c-dialog__title {
    font-size: 1rem;
  }
}
.c-dialog__popup.is-l .c-dialog__note {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-l .c-dialog__note {
    margin-top: 16px;
  }
}
.c-dialog__popup.is-l .c-dialog__btns {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .c-dialog__popup.is-l .c-dialog__btns {
    margin-top: 24px;
  }
}

.c-dialog__title {
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}
.c-dialog__title em {
  color: #e1196c;
}

.c-dialog__body {
  margin-top: 16px;
}
.c-dialog__body.is-center {
  text-align: center;
}

.c-dialog-list {
  margin-top: 24px;
}

.c-dialog-list__item {
  position: relative;
  padding-left: 1rem;
}
.c-dialog-list__item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.c-dialog-list__item span {
  font-weight: 700;
}

.c-dialog__warning {
  margin-top: 24px;
  padding: 8px;
  border: 1px solid #856800;
  border-radius: 4px;
  background: #fffdf7;
  color: #856800;
  text-align: center;
}
.c-dialog__warning svg {
  margin-right: 8px;
}

.c-dialog__form {
  margin-top: 16px;
}

.c-dialog__note {
  margin-top: 24px;
  padding: 12px;
  background: #f3f1ef;
}

.c-dialog__scroll {
  overflow: auto;
  margin-top: 16px;
  padding: 24px 0;
  height: 216px;
  border-top: 1px solid #d7d9dc;
  border-bottom: 1px solid #d7d9dc;
}

.c-dialog__small {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #616568;
}

.c-dialog-tips {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #fffdf7;
}
.c-dialog-tips.is-info {
  background: #f5fbff;
}
.c-dialog-tips.is-info .c-dialog-tips__title {
  color: #076ca6;
}

.c-dialog-tips__title {
  color: #856800;
  text-align: center;
}

.c-dialog-tips__body {
  margin-top: 8px;
}

.c-dialog-tips__list {
  margin-top: 16px;
}

.c-dialog-tips__merit {
  margin-top: 16px;
  padding: 12px;
  background: #fffafd;
  border-radius: 8px;
}
.c-dialog-tips__merit .c-dialog-tips__title {
  color: #be0653;
  text-align: left;
}

.c-dialog__popup-btns {
  display: flex;
  flex-flow: column;
}

.c-dialog__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.c-dialog__btns.is-horizon {
  flex-direction: row-reverse;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-dialog__btns.is-horizon {
    flex-direction: column;
  }
}
.c-dialog__btns.is-horizon button {
  width: 232px;
}
@media only screen and (max-width: 767px) {
  .c-dialog__btns.is-horizon button {
    width: 100%;
  }
}

.c-dialog__btn.is-cancel {
  border: none;
}

/* 右上閉じるボタン */
.c-dialog__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .c-dialog__close {
    right: 16px;
  }
}

.c-dialog__close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.c-dialog__popup-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(42, 46, 50, 0.5);
  top: 0;
  left: 0;
  z-index: 10000; /* mod ITS Ohyabu */
}

/***** コンテンツヘッダー *****/
.c-contents-head {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 60px;
  z-index: 1; /* mod ITS Abe */
  padding: 16px 54px;
  width: 100%;
  min-height: 60px;
  border-bottom: 1px solid #d7d9dc;
  background: #ffffff;
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
}
@media only screen and (max-width: 1024px) {
  .c-contents-head {
    top: 50px;
    padding: 8px 54px;
    height: 60px;
  }
}

.c-contents-head__back {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 44px;
  height: 44px;
}
/** add ITS nakayama START */
.c-contents-head__back:hover {
  color: #e1196c;
}
/** add ITS nakayama E N D */
@media only screen and (max-width: 1024px) {
  .c-contents-head__back {
    top: 8px;
    left: 8px;
  }
}

.c-contents-head__title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-contents-head__title {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/***** インフォメーション *****/
.c-info {
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #f1f3f6;
}
@media only screen and (max-width: 767px) {
  .c-info {
    padding: 16px 16px;
  }
}
.c-info.is-warning {
  background: #fffdf7;
}
.c-info.is-warning .c-info__title {
  color: #856800;
}
.c-info.is-success {
  background: #f6fcf1;
}
.c-info.is-success .c-info__title {
  color: #3b7203;
}
.c-info.is-tips {
  background: #f5fbff;
}
.c-info.is-tips .c-info__title {
  color: #076ca6;
}
.c-info.is-error {
  background: #fff7f7;
}
.c-info.is-error .c-info__title {
  color: #e11919;
}
.c-info.is-error .c-info__body {
  color: #e11919;
  text-decoration: underline;
}

.c-info__title {
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 700;
  color: #364a5e;
}
@media only screen and (max-width: 767px) {
  .c-info__title {
    font-size: 0.875rem;
  }
}

.c-info__title-sub {
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.c-info__body {
  margin-top: 16px;
}

.c-info-list {
  margin-top: 8px;
}
.c-info-list.is-dot .c-info-list__item {
  margin-left: 1rem;
}
.c-info-list.is-dot .c-info-list__item::before {
  content: "・";
  position: absolute;
  left: -1rem;
  top: 0;
}
.c-info-list.is-note .c-info-list__item {
  margin-left: 1rem;
}
.c-info-list.is-note .c-info-list__item::before {
  content: "※";
  position: absolute;
  left: -1rem;
  top: 0;
}

.c-info-list__item {
  position: relative;
  font-size: 0.8125rem;
}

.p-info-affi-dialog__error-box {
  margin-top: 0;
}

.p-info-affi-dialog__error-body {
  margin-top: 0;
}
.p-info-affi-dialog__error-body li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
}
.p-info-affi-dialog__error-body li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-info-affi-dialog__scroll-box dl {
  font-size: 1rem;
}
.p-info-affi-dialog__scroll-box dl dt {
  font-weight: 700;
}
.p-info-affi-dialog__scroll-box dl dd {
  margin: 8px 0 0 0;
  padding: 6px 8px;
}
.p-info-affi-dialog__scroll-box dl dd:not(:last-child) {
  margin: 0 0 30px 0;
}
.p-info-affi-dialog__scroll-box dl dd span {
  display: block;
}
.p-info-affi-dialog__scroll-box dl dd span.p-info-affi-dialog__show-password {
  margin: 0 0 0 -8px;
}

/***** トースト *****/
.c-toast {
  position: fixed;
  top: 68px;
  left: 276px;
  right: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1620px;
  z-index: 100;
}
@media only screen and (max-width: 1024px) {
  .c-toast {
    top: 58px;
    left: 16px;
    right: 16px;
  }
}
.c-toast.is-contents-head {
  top: 128px;
}
@media only screen and (max-width: 767px) {
  .c-toast.is-contents-head {
    top: 118px;
  }
}
.c-toast.is-message-head {
  top: 136px;
}
@media only screen and (max-width: 767px) {
  .c-toast.is-message-head {
    top: 118px;
  }
}
.c-toast.is-direct-chat {
  top: 116px;
}
@media only screen and (max-width: 767px) {
  .c-toast.is-direct-chat {
    top: 106px;
  }
}

.c-toast__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #3b7203;
  border-radius: 8px;
  background: #f6fcf1;
  box-shadow: 0px 8px 8px rgba(42, 46, 50, 0.1);
}
.c-toast__item.is-warning {
  border-color: #856800;
  background: #fffdf7;
}
.c-toast__item.is-warning .c-toast__icon {
  background: transparent;
  color: #856800;
}
.c-toast__item.is-warning .c-toast__body {
  color: #856800;
}
.c-toast__item + .c-toast__item {
  margin-top: 4px;
}

.c-toast__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  background: #3b7203;
  color: #ffffff;
}

.c-toast__body {
  flex: 1;
  font-weight: 700;
  color: #3b7203;
}

.c-toast__close {
  position: relative;
  top: 1px;
  width: 20px;
  height: 20px;
  line-height: 1;
  color: #2a2e32;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-opa a img {
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-opa a img:hover {
  opacity: 0.85;
}

/* margin調整用 */
.u-mbxxl {
  margin-bottom: 48px !important;
}

.u-mbxl {
  margin-bottom: 40px !important;
}

.u-mbl {
  margin-bottom: 32px !important;
}

.u-mbm {
  margin-bottom: 24px !important;
}

.u-mbs {
  margin-bottom: 16px !important;
}

.u-mbxs {
  margin-bottom: 8px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mtxxl {
  margin-top: 48px !important;
}

.u-mtxl {
  margin-top: 40px !important;
}

.u-mtl {
  margin-top: 32px !important;
}

.u-mtm {
  margin-top: 24px !important;
}

.u-mts {
  margin-top: 16px !important;
}

.u-mtxs {
  margin-top: 8px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mrxl {
  margin-right: 40px !important;
}

.u-mrl {
  margin-right: 32px !important;
}

.u-mrm {
  margin-right: 24px !important;
}

.u-mrs {
  margin-right: 16px !important;
}

.u-mrxs {
  margin-right: 8px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mlm {
  margin-left: 24px !important;
}

.u-mls {
  margin-left: 16px !important;
}

.u-mlxs {
  margin-left: 8px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

/* font */
.u-font-bold {
  font-weight: 700;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-regular {
  font-weight: 400;
}

.u-code {
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #f5f5f5;
  color: #666666;
}

.u-container {
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 767px) {
  .u-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.u-sp-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .u-pc-only {
    display: none;
  }
}

span.u-sp-only,
br.u-sp-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  span.u-sp-only,
  br.u-sp-only {
    display: inline;
  }
}

span.u-pc-only,
br.u-pc-only {
  display: inline;
}
@media only screen and (max-width: 1024px) {
  span.u-pc-only,
  br.u-pc-only {
    display: none;
  }
}

span.u-tb-only,
br.u-tb-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  span.u-tb-only,
  br.u-tb-only {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  span.u-tb-only,
  br.u-tb-only {
    display: none;
  }
}

.l-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: 60px;
  max-width: 1920px;
  background: #ffffff;
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
}
@media only screen and (max-width: 1024px) {
  .l-header {
    justify-content: center;
    height: 50px;
  }
}

.l-header__logo {
  padding-left: 16px;
  width: 248px;
}
@media only screen and (max-width: 1024px) {
  .l-header__logo {
    padding-left: 0;
    width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .l-header__logo img {
    width: 105px;
    height: auto;
  }
}

.l-header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
@media only screen and (max-width: 1024px) {
  .l-header-contents {
    position: fixed;
    top: 13px;
    right: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .l-header-status {
    display: none;
  }
}

.l-header-status-list {
  display: flex;
  flex-wrap: wrap;
}

.l-header-status-list__item:not(:first-child) {
  margin-left: 32px;
}
@media only screen and (max-width: 1024px) {
  .l-header-status-list__item.is-pc-only {
    display: none;
  }
}
.l-header-status-list__item.is-sp-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .l-header-status-list__item.is-sp-only {
    display: block;
  }
}

.l-header-status-list__link {
  display: flex;
  color: #616568;
  text-decoration: none;
}
.l-header-status-list__link:hover {
  color: #e1196c;
}

.l-header-status-list__icon {
  padding-top: 2px;
}

.l-header-status-list__text {
  margin-left: 8px;
  padding-bottom: 2px;
  font-size: 0.8125rem;
}
.l-header-status-list__text em {
  margin-right: 4px;
  font-size: 1rem;
  font-weight: 700;
}

.l-header-help-list {
  display: flex;
  flex-wrap: wrap;
}

.l-header-help-list__item:not(:first-child) {
  margin-left: 32px;
}

.l-header-help-list__link {
  position: relative;
  display: block;
}

.l-header-help-list__badge {
  display: block;
  position: absolute;
  top: 0;
  right: -12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f55248;
}

/***** ハンバーガーボタン *****/
.l-header-navi-btn {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0;
  border: 0;
  width: 72px;
  height: 50px;
}
@media only screen and (max-width: 1024px) {
  .l-header-navi-btn {
    display: block;
  }
}
.l-header-navi-btn span {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 28px;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #2a2e32;
}
.l-header-navi-btn span:first-of-type {
  top: 18px;
}
.l-header-navi-btn span:nth-of-type(2) {
  top: 24px;
}
.l-header-navi-btn span:nth-of-type(3) {
  bottom: 18px;
}
.l-header-navi-btn.is-open span:first-of-type {
  transform: translateY(8px) rotate(-45deg);
}
.l-header-navi-btn.is-open span:nth-of-type(2) {
  opacity: 0;
}
.l-header-navi-btn.is-open span:nth-of-type(3) {
  transform: translateY(-4px) rotate(45deg);
}

.l-direct-chat .c-toast {
  top: 112px;
}
@media only screen and (max-width: 1024px) {
  .l-direct-chat .c-toast {
    top: 104px;
  }
}
.l-direct-chat .c-toast.is-contents-head {
  top: 172px;
}
@media only screen and (max-width: 1024px) {
  .l-direct-chat .c-toast.is-contents-head {
    top: 162px;
  }
}
.l-direct-chat .c-toast.is-message-head {
  top: 180px;
}
@media only screen and (max-width: 1024px) {
  .l-direct-chat .c-toast.is-message-head {
    top: 162px;
  }
}
.l-direct-chat .c-contents-head {
  top: 104px;
  z-index: 9;
}
@media only screen and (max-width: 1024px) {
  .l-direct-chat .c-contents-head {
    top: 94px;
  }
}
.l-direct-chat .p-message-head {
  top: 104px;
  z-index: 9;
}
@media only screen and (max-width: 1024px) {
  .l-direct-chat .p-message-head {
    top: 94px;
  }
}

/***** 全ページ共通 *****/
.l-direct-states {
  position: fixed;
  top: 60px;
  left: 252px;
  right: 0;
  z-index: 99;
  margin-left: auto;
  margin-right: auto;
  max-width: 1620px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  min-height: 44px;
  background: #ffffff;
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
}
@media only screen and (max-width: 1024px) {
  .l-direct-states {
    position: sticky;
    top: 50px;
    left: 0;
    right: 0;
  }
}

.l-direct-states__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.l-direct-states__body {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.l-direct-states__time {
  font-size: 0.6875rem;
}
.l-direct-states__time span {
  font-size: 0.875rem;
  font-weight: bold;
}

.l-direct-states__states {
  flex: 1;
  display: flex;
  align-items: center;
  align-items: stretch;
  min-height: 24px;
  border-radius: 4px;
  overflow: hidden;
}
.l-direct-states__states.is-wait {
  border: 1px solid #e1196c;
}
.l-direct-states__states.is-wait .l-direct-states__states-title {
  background: linear-gradient(90deg, #e3196d 50%, #fc795f 100%);
  color: #ffffff;
}
.l-direct-states__states.is-wait .l-direct-states__states-button {
  color: #e1196c;
}
.l-direct-states__states.is-rest {
  border: 1px solid #959ba2;
}
.l-direct-states__states.is-rest .l-direct-states__states-title {
  background: #f3f1ef;
  color: #616568;
}
.l-direct-states__states.is-rest .l-direct-states__states-button {
  border-left: 1px solid #959ba2;
  color: #2a2e32;
}

.l-direct-states__states-title {
  padding: 1px 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.l-direct-states__states-button {
  padding: 1px 8px;
  font-size: 0.75rem;
}

.l-breadcrumb {
  padding: 24px 24px 0px 24px;
}
@media only screen and (max-width: 1024px) {
  .l-breadcrumb {
    padding: 16px 16px 0px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .l-breadcrumb {
    display: none;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
}

.l-breadcrumb-list__item {
  font-size: 0.875rem;
}
@media only screen and (max-width: 1024px) {
  .l-breadcrumb-list__item {
    font-size: 0.8125rem;
  }
}
.l-breadcrumb-list__item:not(:last-child) {
  margin-right: 28px;
  position: relative;
}
.l-breadcrumb-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid #2a2e32;
  border-bottom: 1px solid #2a2e32;
}
@media only screen and (max-width: 767px) {
  .l-breadcrumb-list__item {
    display: none;
  }
}

.l-side {
  overflow-y: auto;
  position: sticky;
  top: 60px;
  left: 0;
  z-index: 10;
  padding-bottom: 80px;
  width: 252px;
  height: calc(100vh - 60px);
  background: #ffffff;
  box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 1024px) {
  .l-side {
    overflow-y: auto;
    position: fixed;
    top: 50px;
    left: -100%;
    z-index: 10000;
    height: calc(100vh - 50px);
  }
}
@media only screen and (max-width: 767px) {
  .l-side {
    width: 100%;
  }
}
.l-side.is-open {
  left: 0;
}

.l-side-user {
  padding: 24px;
  border-bottom: 2px solid #f3f1ef;
}
@media only screen and (max-width: 1024px) {
  .l-side-user {
    display: none;
  }
}

.l-side-user-profile__link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}

.l-side-user-profile__icon-name-box {
  display: flex;
  flex-flow: row nowrap;
  justify-self: flex-start;
  align-items: center;
}

.l-side-user-profile__icon img {
  object-fit: cover;
  border-radius: 50%;
}

.l-side-user-profile__name {
  font-weight: 700;
  font-size: 1rem;
  max-width: calc(100% - 48px);
}

.l-side-user-profile__application-status-link {
  text-decoration: none;
  font-size: 0.8125rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.l-side-user-profile__application-status {
  background: #f1f3f6;
  border-radius: 8px;
  padding: 4px 4px 4px 8px;
  font-size: 0.75rem;
}

.l-side-user-next {
  margin-top: 16px;
}

.l-side-user-next__category-link {
  display: block;
  padding: 16px;
  background: #f1f3f6;
  border-radius: 8px;
  text-decoration: none;
}

/* add ITS yonezawa START */
button.l-side-user-next__category-link {
  width: 100%;
  text-align: left;
}
/* add ITS yonezawa E N D */
.l-side-user-next__category-link:hover .l-side-user-next__time {
  background-position: right -2px top 2px;
}

.l-side-user-next__category {
  font-size: 0.875rem;
  font-weight: 700;
}

.l-side-user-next__link {
  display: block;
  padding: 16px;
  background: #f1f3f6;
  border-radius: 8px;
  text-decoration: none;
}
.l-side-user-next__link:hover .l-side-user-next__time {
  background-position: right -2px top 2px;
}

.l-side-user-next__title {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  background: #364a5e;
  color: #ffffff;
}

.l-side-user-next__time {
  display: inline-block;
  margin-top: 16px;
  padding-right: 18px;
  line-height: 1;
  font-weight: 700;
  background: url("/images/Operator/jewel/icon-arrow-right.svg") no-repeat right top 2px;
  background-size: 16px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-side-user-next__time.is-none {
  background-position: right top 0px;
}

.l-side-user-next__time-year {
  color: #616568;
}

.l-side-user-next__time-date {
  font-size: 1.125rem;
}

.l-side-user-next__time-none {
  color: #e1196c;
}

.l-side-user-live {
  margin-top: 24px;
}

.l-side-user-live-list__item {
  text-align: center;
}

.l-side-user-live-list__item:not(:first-child) {
  margin-top: 20px;
}

.l-side-user-live-list__btn {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%; /* add ITS Ohyabu */
  height: 100%; /* add ITS Ohyabu */
  font-size: 1rem;
  font-weight: 700;
  border-radius: 40px;
  padding: 11px 16px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  box-shadow: 2px 6px 10px rgba(255, 131, 112, 0.4);
}
.l-side-user-live-list__btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: #e1196c;
  background: linear-gradient(90deg, #e3196d 0%, #fc795f 100%);
}
.l-side-user-live-list__btn:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(90deg, #e3196d 0%, #ff6040 100%);
}
.l-side-user-live-list__btn:hover {
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 2px 6px 10px rgba(255, 131, 112, 0.3);
}
.l-side-user-live-list__btn:hover:before {
  opacity: 0;
}

/***** メインナビ *****/
.l-navi-list {
  margin-top: 16px;
}

.l-navi-list__item.is-sp-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .l-navi-list__item.is-sp-only {
    display: block;
  }
}

.l-navi-list__link,
.l-navi-list__button {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2a2e32;
  text-align: left;
  text-decoration: none;
}
.l-navi-list__link.is-active,
.l-navi-list__button.is-active {
  color: #e1196c;
}
.l-navi-list__link:hover,
.l-navi-list__button:hover {
  background: #f5f5f5;
}

.l-navi-list__button {
  position: relative;
}
.l-navi-list__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url("/images/Operator/jewel/icon-arrow-navi.svg") no-repeat;
  background-size: 14px;
  transform: rotate(180deg);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-navi-list__button.is-open::before {
  transform: rotate(0deg);
}
.l-navi-list__button.is-no-arrow::before {
  content: none;
}

.l-navi-list__text {
  position: relative;
  margin-left: 8px;
}

.l-navi-list__link {
  color: #2a2e32;
  text-decoration: none;
}

.l-navi-list__badge {
  display: block;
  position: absolute;
  top: 50%;
  right: -14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f55248;
  transform: translateY(-50%);
}

.l-navi-sub-list {
  display: none;
}

.l-navi-sub-list__link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 6px 16px 6px 56px;
  font-weight: 500;
  color: #616568;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .l-navi-sub-list__link {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
.l-navi-sub-list__link:hover {
  background: #f5f5f5;
  color: #616568;
}
.l-navi-sub-list__link.is-active {
  font-weight: 700;
  color: #e1196c;
}

.l-navi-sub-list__text {
  display: inline-block;
  padding-right: 8px;
  min-width: 112px;
}

.l-navi-sub-list__badge {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f55248;
}

.l-navi-sub-list__badge-num {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 20px;
  font-weight: 700;
  background: #f3f1ef;
  color: #616568;
}

.l-footer {
  padding: 24px;
}
@media only screen and (max-width: 1024px) {
  .l-footer {
    padding-bottom: 117px;
    text-align: center;
    font-size: 0.8125rem;
  }
}

/***** SPタブバー *****/
.l-tab-bar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .l-tab-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #ffffff;
    box-shadow: 2px -2px 10px rgba(42, 46, 50, 0.05);
  }
}

.l-tab-bar-list {
  display: flex;
  justify-content: center;
}

.l-tab-bar-list__item {
  width: 20%;
}

.l-tab-bar-list__link {
  display: block;
  position: relative;
  padding-top: 36px;
  height: 66px;
  line-height: 1;
  font-weight: 500;
  color: #2a2e32;
  text-align: center;
  text-decoration: none;
}
.l-tab-bar-list__link.is-active {
  color: #e1196c;
  font-weight: 700;
}

.l-tab-bar-list__icon {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 24px;
}
.l-tab-bar-list__icon.is-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  top: -19px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e1196c;
  background: linear-gradient(90deg, #e3196d 0%, #fc795f 100%);
  box-shadow: 1px 3px 8px rgba(255, 131, 112, 0.3);
}
/** add ITS nakayama START */
.l-tab-bar-list__icon.is-disable {
  display: flex;
  justify-content: center;
  align-items: center;
  top: -19px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #cccccc;
  background: linear-gradient(90deg, #d4d4d4 0%, #a3a3a3 100%);
  box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.1);
}
/** add ITS nakayama E N D */
.l-tab-bar-list__icon img {
  margin-left: auto;
  margin-right: auto;
}

.l-tab-bar-list__text {
  font-size: 0.625rem;
}

.l-tab-bar-list__badge {
  position: absolute;
  top: 10px;
  right: calc(50% - 18px);
  transform: translateX(50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f55248;
}

/***** サイト共通設定 *****/
body {
  padding-top: 60px;
  line-height: 1.64;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  background: #f3f1ef;
  color: #2a2e32;
}
@media only screen and (max-width: 1024px) {
  body {
    padding-top: 50px;
  }
}

body.base-single-body {
  padding-top: 0;
}

a {
  color: #2a2e32;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover {
  color: #e1196c;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: none;
}
button:hover {
  cursor: pointer;
}

em {
  font-style: normal;
}

img {
  line-height: 1;
}

::placeholder {
  color: #a3a6a9;
}

::-webkit-input-placeholder {
  color: #a3a6a9;
}

::-moz-placeholder {
  color: #a3a6a9;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

input[type=radio],
input[type=checkbox] {
  margin: 2px 10px 2px 4px;
  vertical-align: middle;
}
input[type=radio]:disabled,
input[type=checkbox]:disabled {
  cursor: not-allowed;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible,
input:focus-visible {
  transition: none;
  outline: 2px solid #1d91d3;
  outline-offset: 2px;
}

svg {
  vertical-align: middle;
}

.l-main-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - 60px);
  max-width: 1920px;
}
@media (min-width: 1920px) {
  .l-main-wrap {
    box-shadow: 2px 5px 10px rgba(42, 46, 50, 0.05);
  }
}
@media only screen and (max-width: 1024px) {
  .l-main-wrap {
    display: block;
    min-height: calc(100vh - 50px);
  }
}

.l-main-contents {
  flex: 1;
  min-width: 0;
}

.l-main {
  overflow: hidden;
  padding: 24px;
}
@media only screen and (max-width: 1024px) {
  .l-main {
    padding: 16px;
  }
}