:root {
  --border_primary: #b4b4b4;
  --border_secondary: #eeeeee;
}

/* 統一影 */
/* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15); */

html::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: #b4b4b4;
}

html {
  min-height: 100%;
  scrollbar-gutter: stable;
}

body {
  font-size: 12px;
  /* font-family: 'segoe UI', 'ＭＳ Ｐゴシック', sans-serif; */
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
  background-color: #FFFFFF;
  /* background: linear-gradient(135deg, var(--back_ground_primary ,var(--default_back_ground_primary)) 0%, var(--back_ground_secondary ,var(--default_back_ground_secondary)) 100%); */
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, var(--back_ground_primary, var(--default_back_ground_primary)) 0%, var(--back_ground_secondary, var(--default_back_ground_secondary)) 100%);
  overflow-y: scroll;
}

iframe {
  height: 100%;
  margin: -1px 0px 0px -1px;
  overflow-y: scroll;
  overflow-x: scroll;
}


.frame.full {
  height: 100vh;
  flex: 1;
}

.frame.mini {
  height: 100vh;
  overflow-x: auto;
}

.frame.parts {
  width: 100%;
  height: 100%;
}

.frame.full-width {
  width: 100%;
}

.frame_height {
  height: 98vh;
  flex: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.add-scroll_bar{
  max-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
}
.scroll_x_y {
  max-height: 100vh;
  box-sizing:border-box;
  overflow: auto;
}
.none-scroll_bar {
  scrollbar-width: none;
}

/* framerow関連　classへ移行　永野 ---------------------------------*/

.framerow1 {
  height: 100%;
  min-height: 1px;
  resize: vertical;
  overflow-y: auto;
  padding-right: 15px;
}

.framerow2 {
  display: flex;
  height: 50%;
  min-height: 1px;
  resize: vertical;
  overflow-y: auto;
  flex-shrink: 100;
  padding: 8px 0;
}

.framerow3 {
  display: flex;
  height: 50%;
  min-height: 1px;
  overflow-y: auto;
  flex-grow: 1;
  flex-shrink: 5000;
}

/*----------------------------------------------------------*/

#superwrap {
  display: flex;
}

.wrap {
  padding: 8px;
}

.sidewrap {
  padding: 0px;
}

/* 山際変更 */
h1 {
  letter-spacing: 0.1em;
  font-size: 18px;
  position: relative;
  margin-bottom: 16px;
}


.site-title-h1 {
  font-size: 20px;
  color: #5a5a5a;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  padding: 30px 10px;
  margin: 0px;
  border-bottom: 1px solid #5a5a5a;
}

h2 {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  margin: 0.1em 5px 1em 0;
  border-left: 3px solid var(--secondary, var(--default_secondary));
  padding: 0em 0.5em;
}


ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style: none;
}

/* 藤田追加　userdetailに記載されていたstyle */

.usr_detail ul {
  list-style-type: none;
}

.usr_detail .tab-list-item {
  width: 100%;
  text-align: center;
  background-color: #eeeeee;
  color: #757575;
  padding: 14px 0;
  white-space: nowrap;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px 8px 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.10) 0px -3px 8px;
}

.usr_detail .tab-list-item.active {
  background-color: #FFFFFF;
  color: var(--primary_flat, var(--default_primary_flat));
}

.usr_detail .tab-contents-item {
  display: none;
}

.usr_detail .tab-contents-item.show {
  display: block;
}

.usr_detail .prf_tag {
  width: 95vw;
  border-radius: 8px;
}

/* ↑藤田追加ここまで */

.menu-item {

  min-width: 158px;
}

.menu-item-btn {
  font-weight: bold;
  position: relative;
  display: block;
  padding: 16px 16px 16px 40px;
  font-size: 13px;
  color: #5a5a5a;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
}

.menu-item-btn:hover {
  background-color: var(--primary, var(--default_primary));
  color: #FFFFFF;
}

.menu-item-btn:after {
  content: "";
  position: absolute;
  left: 15px;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #5a5a5a;
  border-right: solid 2px #5a5a5a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 35%;
}


.menu-item-btn.open:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 35%;
}

.menu-item {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer
}

.menu-item ul {
  display: none;
  background: linear-gradient(135deg, var(--back_ground_primary, var(--default_back_ground_primary)) 0%, var(--back_ground_secondary, var(--default_back_ground_secondary)) 100%);
}


.popup {
  padding: 1em 0;
  position: fixed;
  top: calc(50% - 3em);
  width: 100%;
  text-align: center;
}

.popup.info {
  background-color: rgba(138, 209, 255, 0.8);
}

.mini_button {
  padding: 0.5em;
}

.mini_copy_button {
  padding: 0.2em 0.3em;
  background-color: #fff;
  border-color: #3f3f3f;
}

.mini_copy_button_wrap input[type="text"] {
  border: 1px solid #3f3f3f;
}

.update_box {
  border-radius: 3px;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 8px;
}

.update_header {
  padding: 10px;
  border-radius: 8px;
  border-radius: 8px 8px 0px 0px;
}

.update_body {
  padding: 15px;
  background-color: #fff;
  border-radius: 0px 0px 8px 8px;
}

.update_body p {
  margin: 0;
  line-height: 1.5em;
}

/* 藤田追加 更新履歴3つ目以降非表示*/
.updete_box_nth .update_box:nth-of-type(n+4) {
  display: none;
}

/* 追加ここまで */

#sidebarframe {
  height: 100vh;
  width: 180px;
  resize: horizontal;
  margin-right: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

#sidsearch {
  max-height: 260px;
  width: 100%;
}

#sidebar {
  min-height: 100vh;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}

#sidebar ul li a {
  display: block;
  padding: 16px 0px 16px 24px;
  font-size: 12px;
  color: #757575;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

#sidebar ul li a:hover {
  color: var(--primary, var(--default_primary));
}

.sidebar_error_content {
  display: inline-block;
  margin: 5px 0px;
}

.home-link {
  text-decoration: none;
  text-align: center;
  color: inherit;
}

#mainframe {
  width: 100%;
  height: 100vh;
  flex: 1;
}

#formwrap {
  display: inline-block;
  width: 500px;
}

.mng_template_window {
  flex: 1;
}

.mng_template_window iframe {
  width: 100%;
}

.flex_column {
  flex-direction: column;
}

.head_menu_bar {
  height: 100vh;
  width: 100%;
}

.stack_content {
  flex: 1;
  height: 100vh;
}


/* 藤田追加↓ */
table {
  margin-top: 1rem;
  border-collapse: collapse;
  background-color: #FFFFFF;
  overflow: visible;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}


th {
  margin: 0;
  padding: 8px 10px;
  background-color: var(--border_secondary);
  color: #757575;
  font-weight: bold;
  border: 1px solid #757575;
  overflow: visible;
}

td {
  border: 1px solid #757575;
}

/* 藤田追加ここまで↑ */

thead th, tr.centerhead th{
  text-align: center;
}

tbody th {
  text-align: left;
}

td {
  padding: 8px;
  box-sizing: border-box;
}

tr.button td {
  background-color: #eeeeee;
  bottom: 0px;
}

tr.button td button {
  width: 100%;
}

.text_brake_all {
  word-break: break-all;
}

button,
input[type="submit"] {
  border: none;
  outline: none;
  text-align: center;
  white-space: nowrap;
  transition: .2s;
  background: #FFFFFF;
  font-size: 12px;
  border-radius: 100px;
  color: #757575;
  border: 1px solid #757575;
  padding: 6px 10px;
  cursor: pointer;
}

button:enabled:hover,
input[type="submit"]:enabled:hover {
  color: #FFFFFF;
  background-color: #757575;
}

button:enabled:active,
input[type="submit"]:enabled:active {
  transition: 0s;
  background-position: 0 80%;
}

.button_style {
  color: #757575;
  text-decoration: none;
  padding: 8px 24px;
  cursor: pointer;
}

.button_style:hover {
  color: #fff;
}

th.grouphead {
  text-align: center;
  background-color: #dadada;
  color: #757575;
}

.table_number {
  text-align: right;
  font-family: 'Lato';
}

/* tdタグ内のどこをクリックしてもcheckboxが反応するようにするクラス */
.fulfill_wrap {
  position: relative;
}

.fulfill_item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

label input[type='checkbox'] {
  cursor: pointer;
}

form .shortinput {
  width: 30px;
}

form .middleinput {
  width: 50px;
}

input[type="text"].long_text_input {
  width: 500px;
}

form .inner_box {
  height: 300px;
  overflow: scroll;
  resize: vertical;
}

.textinput {
  box-sizing: border-box;
  width: 100%;
}

.textdanger {
  color: #dc3545;
}

.hide {
  display: none;
}

.highlight,
.highlight_row {
  background-color: #fbffad;
}

.strong {
  font-weight: bold;
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.no_wrap {
  white-space: nowrap;
}
.pre-line {
  white-space: pre-line;
}

.long_text_wrap {
  word-break: break-all;
  white-space: pre-line;
  max-width: 500px;
}

.min-width_80 {
  min-width: 80px;
}

.min-width_180 {
  min-width: 180px;
}

.long_text_window {
  max-height: 250px;
  overflow-y: scroll;
  border: 1px solid #e6e6e6;
}

.body_content_wrap {
  word-break: break-all;
  max-width: 500px;
}

.log_bg_chara {
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #F9F9F9), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #F9F9F9), color-stop(.75, #F9F9F9), color-stop(.75, transparent), to(transparent));
  -webkit-background-size: 7px 7px;
}

.strike_str {
  text-decoration: line-through;
}

.no_margin {
  margin: 0;
}

.overflow_text_ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}

.justification_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div.search_form {
  display: flex;
  width: 100%;
}


#sptupbar {
  display: flex;
  height: 60%;
  min-height: 1px;
  resize: vertical;
}

#sptdownbar {
  display: flex;
  height: 40%;
  min-height: 1px;
  flex: 1;
}

#userinfo {
  width: 100%;
  overflow-y: auto;
  resize: horizontal;
}

#maillog {
  width: 100%;
  overflow-y: auto;
  flex: 1;
}

#templateparts {
  width: 100%;
  min-width: 20px;
  height: 100%;
  resize: horizontal;
  overflow-x: auto;
}

#send {
  width: 100%;
  min-width: 20px;
  height: 100%;
  resize: horizontal;
  overflow-x: auto;
  flex-shrink: 100;
}

#mngsend {
  width: 80%;
  max-height: 100vh;
  box-sizing: border-box;
  resize: horizontal;
  overflow-x: auto;
}

#memo {
  width: 100%;
  min-width: 20px;
  height: 100%;
  overflow-x: auto;
  flex-grow: 1;
  flex-shrink: 5000;
}

.underbar {
  width: 100%;
  bottom: 0px;
  margin-bottom: 0px;
}

.inactive {
  opacity: 0.1;
  pointer-events: none;
}


.men {
  color: blue;
}

.women {
  color: red;
}

.danger {
  color: red;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.align_center_with_margin {
  margin: auto;
  width: fit-content;
}

.tooltip_wrap {
  position: relative;
  pointer-events: auto;
}

.tooltip_description {
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: calc(100% + 13px);
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 200px;
  text-align: left;
  margin-bottom: 20px;
  z-index: 1;
  white-space: normal;
  word-break: break-word;
}

.tooltip_description:before {
  content: "";
  position: absolute;
  top: 0%;
  right: 97%;
  border: 15px solid transparent;
  border-top: 15px solid #000;
  margin-left: -15px;
  transform: rotateZ(90deg);
}

.tooltip_wrap:hover .tooltip_description {
  visibility: visible;
}

.tooltip_description_under {
  visibility: hidden;
  position: absolute;
  top: 30px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 200px;
  text-align: left;
  margin-bottom: 20px;
  z-index: 1;
  white-space: normal;
}

.tooltip_wrap:hover .tooltip_description_under {
  visibility: visible;
}

.tooltip_description_top {
  visibility: hidden;
  position: absolute;
  bottom: 4px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #000;
  width: 200px;
  text-align: left;
  margin-bottom: 20px;
  z-index: 1;
  white-space: normal;
}

.tooltip_wrap:hover .tooltip_description_top {
  visibility: visible;
}

.data_red {
  background-color: #ffd9d5;
}

.data_cyan {
  background-color: #d2f8ff;
}

.data_yellow {
  background-color: #fcffc9;
}

.data_gray {
  background-color: #bdbdbd;
}

.data_light_green{
  background-color: #e4fce4;
}

.data_light_purple{
  background-color: #dfd6ff;
}

.warning_row {
  background-color: #fdbdbd;
}

.danger_row {
  background-color: #ffd9d5;
}

.finish_row {
  background-color: #f5f5f5;
}

.alert_box {
  padding: 5px 10px;
  border: 5px solid #fff;
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.alert_box_danger {
  animation: border_blink_danger 1s ease infinite alternate;
}

@keyframes border_blink_danger {
  0% {
    border: 5px solid red;
  }

  100% {
    border: 5px solid #fff;
  }
}

.alert_box_warning {
  animation: border_blink_warning 1s ease infinite alternate;
}

@keyframes border_blink_warning {
  0% {
    border: 5px solid yellow;
  }

  100% {
    border: 5px solid #fff;
  }
}

.note {
  display: inline-block;
  background-color: #fff;
  color: #111;
  font-size: 1.2em;
  font-family: monospace;
  padding: 10px;
  border: 1px solid #a0a0a0;
}

.vertical-top {
  vertical-align: top;
}

.gray_out {
  color: #a0a0a0;
}

.content_cell {
  border-right-width: 0px;
}

.judge_cell {
  border-left-width: 0px;
}

.full_width {
  width: 100%;
}

.screen_height {
  height: 100vh;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.control_width_500 {
  max-width: 500px;
  word-break: break-all;
}

.process_wrap {
  padding: 0 5%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;

  counter-reset: number 0;
}

.process_wrap img {
  max-width: 100%;
  margin-bottom: 24px;
  border: 1px solid #3f3f3f;
}

.process_wrap p {
  margin: 0 auto 14px;
}

.process_wrap .section_number:after {
  counter-increment: number 1;
  content: counter(number)".　　";
}

.block {
  display: block;
}

.generate_random_number_wrap {
  display: inline-block;
}

.plan_name {
  font-size: 14px;
  vertical-align: middle;
}

.flex_wrap {
  flex-wrap: wrap;
}

.list_to_side {
  flex: 1 2 200px;
}

.sidebar_item_wrap {
  max-width: 230px;
}

.overflow_auto {
  overflow: auto;
  height: 230px;
}

.resize_vertical {
  resize: vertical;
}

.textarea_resize_limited {
  max-width: 45vw;
  min-width: 10vw;
  min-height: 5vh;
}

.extract_box {
  background-color: #fff;
  border: 1px solid #999;
  width: 150px;
  height: 400px;
  overflow: auto;
  resize: vertical;
}

.data_table_stripe tr:nth-child(odd) td {
  background-color: #d2f8ff;
}

.adjust_td_img img {
  min-width: 100px;
  max-width: 100%;
}





/* ---------------- 追加css --------------------- */
/* ログイン */
.center-item {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/* ダッシュボード */
.dash_table {
  border-spacing: 0;
  margin-bottom: 2em;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 8px;
  padding: 12px;
  display: inline-block;
  background-color: #FFFFFF;
}

.dash_table_totalnumber {
  text-align: left;
  font-family: 'Lato';
  font-weight: bold;
  font-size: 24px;
  border: 0px;
  padding: 0px;
}

.dash_table_total {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 2rem;
  margin-bottom: 1em;
}

.dash_table_body {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.dash_table_number {
  text-align: right;
  font-family: 'Lato';
  font-weight: bold;
  font-size: 24px;
  border: 0px;
  padding-top: 24px;
}

.dash_table_tr {
  background-color: #e8e8e8;
  border: 0px;
  flex-flow: column;
  padding: 16px 24px;
  gap: 8px;
  border-radius: 8px;
}

.dash_table_th {
  font-weight: normal;
  margin: 0px;
  background-color: none;
}

/* 藤田追加 ↓*/
h1 {
  border-left: 3px solid var(--secondary, var(--default_secondary));
  padding: 0em 0.5em;
}

.dash_contents {
  max-width: 850px;
  margin: 20px 0;
  padding: 8px;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-around;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 8px;
}

.dash_contents_details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px;
}

.dash_contents_details li {
  width: 200px;
  text-align: center;
  background-color: #e8e8e8;
  border-radius: 8px;
}

.dash_contents_details a {
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s ease;
}

.dash_contents_details a:hover {
  text-decoration: none;
  background-color: var(--primary, var(--default_primary));
  color: #fff;
}

/* ↑藤田追加ここまで */

/* ユーザー管理 */
.table_w {
  width: 100%;
}

.text-hidden {
  max-width: 150px;
  white-space: nowrap;
  /*   はみ出した部分を隠す */
  overflow: hidden;
  /*   テキストのはみ出しを「…」で省略 */
  text-overflow: ellipsis;
}

.tab {
  display: flex;
  flex-wrap: wrap;
}

.tab li a {
  display: block;
  background: #ddd;
  margin: 0 2px;
  padding: 10px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #fff;
}


/*エリアの表示非表示と形状*/
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.login-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffffef;
  text-align: center;
  align-content: center;
  padding: 20px;

}

/* mng top背景 */
.top_bg {
  background-image: url(/css_v2.0/img/top_mng.gif);
  background-size: cover;
}

.logout-bt {
  padding: 6px 40px;
  font-size: 12px;
  color: #5a5a5a;
  background-color: #FFFFFF;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  align-items: center;
  border: 1px solid #5a5a5a;
  display: inline-block;
}

.logout-bt:hover {
  color: #FFFFFF;
  background-color: var(--primary, var(--default_primary));
  ;
  border: none;
  cursor: pointer;
}


textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px;
}

textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--primary_flat) inset;
}

input,
select {
  padding: 8px 10px;
  background: #FFFFFF;
  border: 1px solid #8E8E8E;
  max-width: 100%;
  border-radius: 4px;
}

input:focus {
  outline: 0;
  border: 2px solid var(--primary_flat);
}

select:focus {
  outline: 0;
  border: 2px solid var(--primary_flat);
}

input#mng_primary,
input#mng_secondary,
input#mng_back_ground_primary,
input#spt_primary,
input#spt_secondary,
input#spt_back_ground_primary,
input#mng_template_color,
input#mng_user_color {
  padding: 0;
}
input[type="radio"] , input[type="checkbox"]{
  vertical-align: middle;
  margin-right: 2px;
}

.back-button {
  display: inline-block;
  border: none;
  outline: none;
  text-align: center;
  padding: 0.6em 1em;
  white-space: nowrap;
  transition: .2s;
  background: #5a5a5a;
  font-size: 90%;
  border-radius: 4px;
  color: #FFF;
  text-decoration: none;
}

.back-button:hover {
  opacity: 0.6;
}

.alart-button {
  display: inline-block;
  border: none;
  outline: none;
  text-align: center;
  padding: 0.6em 1em;
  white-space: nowrap;
  transition: .2s;
  background: #FFF;
  font-size: 90%;
  border-radius: 4px;
  color: #FF0000;
  border: 1px solid #FF0000;
  text-decoration: none;
}

.alart-button:hover {
  color: #FFFFFF;
  background: #FF0000;
}

.search_bg {
  margin: 0 auto;
  border-spacing: 0;
  padding: 10px 0px 20px 0px;
  display: block;
  background-color: #FFFFFF;
  width: 97%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 8px;
}

.search_bg-none {
  margin: 0 auto;
  border-spacing: 0;
  display: block;
  width: 97%;
  height: 100%;
  box-shadow: none;
  border-radius: 8px;
}

.search-p {
  padding: 30px 40px 30px 8px;
}

body .search_frame {
  width: 1000px;
}

/* 藤田追加　検索項目 */
.flex_16_search ul.search_top_move_flex,
#search_form_underbar ul.search_top_move_flex {
  display: flex;
  align-items: flex-end;
}

.flex_16_search ul.search_top_move_flex li,
#search_form_underbar ul.search_top_move_flex li {
  padding: 0 5px;
}

.search_top_move_flex #search_top_nowrap {
  display: flex;
  justify-content: space-between;
}


.search_tb .search_move_flex {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.search_tb .search_move_flex .search_flex_col {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}

.search_tb .search_move_flex ul {
  width: 50%;
}

.search_tb .search_move_flex ul li,
.search_tb .search_move_center ul li {
  padding: 8px;
  margin: 4px;
}


.search_tb .search_move_flex ul li .flex-8 {
  display: flex;
}

.search_tb .search_move_flex_date ul {
  padding: 10px 0;
}

/* 藤田追加 */
/* サイト設定　httpドメイン */
.domain_http {
  display: flex;
  flex-direction: column;
}


/* 藤田変更 */
.search_flex {
  display: flex;
  flex-direction: row;
  max-width: 1920px;
}

/* 藤田追加 */
/* iframe調整 */

/* 通常時 検索項目*/
.search_flex.search_contents_vw {
  max-width: 100%;
  background-color: #d2f8ff;
}

.frame.mini.search_item {
  height: 100vh;
  width: 100vw;
}

.flex_16_search {
  display: flex;
  gap: 16px;
  align-items: center;
}

.flex_8_search {
  display: flex;
  gap: 16px;
}

.search_top_content {
  padding: 0 4px;
}
.search_top_content_sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  z-index: 5;
}

/* 検索ボタンクリック、検索項目 */
.search_top_content .search_flex_contents.search_display_nowarap {
  display: flex;
  flex-direction: column;
}

.flex_16_search.search_display_nowarap {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  align-items: center;
}

.flex_8_search.search_display_nowarap {
  display: flex;
  flex-direction: column;
}

#search_form_underbar ul.search_top_move_flex.search_display_nowarap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#search_form_underbar ul.search_top_move_flex.search_display_nowarap li {
  margin-top: 5px;
}

.frame.mini.search_item.move_left {
  width: 300px;
}

.search_tb .search_move_flex.search_no_flex {
  display: block;
}

.search_tb .search_move_flex.search_no_flex ul {
  width: 100%;
}

.search_tb .search_move_center.search_no_flex ul {
  width: 100%;
}

.search_move_center.search_no_flex .search_open_btn_wid.search_no_grid {
  display: block;
  flex-direction: column;
  flex-wrap: nowrap;
}

.search_move_flex .search_flex-col.search_flex_column {
  flex-direction: column;
}

/* お問い合わせのみ設定 */
/* 通常にflex */
.search_move_center .contect_nowrap {
  display: flex;
  align-items: center;
}

/* 検索後flex解除 */
.search_move_center .contect_nowrap.contect_nowrap_flex {
  display: block;
}


/* 送信状況のみ設定 */
/* 通常にflex */
.search_tb .search_move_center .search_open_btn_wid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.search_tb .search_move_flex .timer_form_flex {
  display: flex;
}

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

p {
  margin: 0px;
}

.search_tb {
  border-collapse: collapse;
  border-spacing: 30px 10px;
  width: 100%;
  border: none;
}

.search_p {
  padding: 10px 8px;
  background-color: #8E8E8E;
  color: #FFFFFF;
  font-size: 12px;
  border: none;
}

.search_title {
  padding: 5px 10px;
  margin-bottom: 10px;
  background-color: #dadada;
  font-size: 12px;
  border: none;
  font-weight: bold;
}


.btnset {
  width: 180px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.btnset .button:hover {
  background-color: #898989;
}

.btnset .button {
  padding: 10px 5px;
  text-align: center;
  color: #FFF;
  display: inline-block;
  width: 180px;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  background-color: #666666;
  border-radius: 50px;
}

.boxopen:before {
  display: block;
  content: "";
  position: absolute;
  top: 34%;
  right: 12px;
  width: 12px;
  height: 12px;
  border-left: solid 2px #FFFFFF;
}

.boxopen:after {
  display: block;
  content: "";
  position: absolute;
  top: 48%;
  right: 19px;
  width: 12px;
  height: 12px;
  border-top: solid 2px #FFFFFF;
}

.boxclose:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 13px;
  height: 6px;
  border-top: solid 2px #FFFFFF;
}

.report-day-box {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.report-day {
    padding: 4px;
    background-color: #FFFFFF;
    color: #5a5a5a;
    text-decoration: none;
    border: 1px solid;
}

.reload_bt {
  border: none;
  outline: none;
  text-align: center;
  white-space: nowrap;
  transition: .2s;
  border: 1px solid #757575;
  font-size: 12px;
  border-radius: 40px;
  color: #757575;
  padding: 8px;
  cursor: pointer;
}


/* 藤田追加 */
/* メールログ */
.mail_log_top_flex {
  display: flex;
  align-items: center;
}

.mail_log_top_flex span {
  margin: 10px;

}



/* 藤田追加 */
/* 広場共通書き込み */
.lobby_bg {
  background-color: linear-gradient(135deg, var(--back_ground_primary, var(--default_back_ground_primary)) 0%, var(--back_ground_secondary, var(--default_back_ground_secondary)) 100%);
}

.lobby_topbtn_flex {
  width: 20vw;
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
}

.lobby_form_date_name_flex {
  width: 90%;
  display: flex;
  justify-content: space-between
}

.lobby_form_date_name_flex ul {
  width: 48%;
}

.lobby_form_date_name_flex li {
  margin-bottom: 15px;
}

.lobby_form_date_name_flex .lobby_form_date {
  display: flex;
  justify-content: flex-start;
}

.lobby_form_date_name_flex #lobby_form_name,
.lobby_form_date_name_flex #lobby_form_evaluation {
  width: 25%;
}

#lobby_form_evaluation .lobby_evaluation {
  display: flex;
  align-items: center;
}

#lobby_form_evaluation .lobby_evaluation li {
  margin: 3px 5px 10px 5px;
  font-size: 13px;
  font-weight: bold;
}

.lobby_form_center {
  width: 90%;
  margin: 5px 0 10px 0;
}

/* ------- */
.lobby_flex {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
}

.lobby_flex .lobby_list_top {
  flex: 1;
}

.lobby_flex .lobby_list_top #lobby_frame_list {
  width: 100vw;
}


.lobby_flex .lobby_list_bottom #lobby_frame_registration {
  width: 100vw;
}

.lobby_flex .lobby_list_bottom {
  flex: 1;
}

/* 藤田追加　サイト設定 */
/* 検索項目 */

.search_bg.setting_bg {
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  padding-bottom: 20px;
}

.search_bg.setting_bg ul.site_setting_contents {
  width: 95%;
  margin: 0 auto;
}

.search_bg.setting_bg .site_setting_h1 {
  margin-left: 3rem;
}

.search_bg.setting_bg ul.site_setting_contents .search_move_flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.search_bg.setting_bg ul.site_setting_contents .search_move_flex li {
  margin: 10px;
}

.search_bg.setting_bg ul.site_setting_contents .search_move_flex li a {
  font-size: 13px;
  text-decoration: none;
  padding: 10px;
  background-color: #dadada7d;
  border-radius: 10px;
  color: #000;
  transition: all 0.3s ease;
}

.search_bg.setting_bg ul.site_setting_contents .search_move_flex li a:hover {
  color: #fff;
  background-color: var(--primary, var(--default_primary));
  transition: all 0.3s ease;
}

/* ----- */
.search_bg.setting_bg form {
  padding-left: 3rem;
}


.search_bg.setting_bg form .search_move_flex {
  display: flex;
  flex-wrap: wrap;
}

.search_bg.setting_bg form .search_move_flex li {
  margin: 10px 10px 10px 0;
}

/* 藤田追加 */
/* 検索モーダル */


/*モーダル本体の指定 + モーダル外側の背景の指定*/

.search_title.modal-open:hover,
.search_title.modal-open_2:hover {
  cursor: pointer;
  background-color: #eaedb9;
  transition: all 0.3s ease;
}

.modal-container,
.modal-container_2 {
  transition: all 0.3s ease;
}


/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active,
.modal-container_2.active_2 {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  transition: all 0.3s ease;
  box-sizing: border-box;
  z-index: 10;
}


/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
}

.modal-body_2 {
  display: inline-block;
  width: 90%;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
}

/* ---- */

.modal-close,
.modal-close_2 {
  display: none;
}

.modal-close.active,
.modal-close_2.active_2 {
  display: block;
}

li .moddal_wh_he,
li .moddal_wh_he_2 {
  height: 230px;
}


li .moddal_wh_he.modaal_full,
li .moddal_wh_he_2.modaal_full {
  display: block;
  height: 500px;
  width: 90%;
  margin: 0 auto;
}

/* 藤田追加 */
/* フリー領域 */

.free_area_table button {
  width: 50%
}

.free_area_title {
  background-color: #eee;
}
.freearea_guide_wrap{
  display: flex; 
  gap: 1%;
}

/* フリー領域 条件クリックアクション */

.free_area_open_contents {
  display: none;
  transition: all 0.3s ease;
}

.free_area_open {
  text-align: center;
  transition: all 0.3s ease;
}

.free_area_open_contets_del p {
  padding: 30px 0px;
}

.free_area_open:hover {
  background-color: aliceblue;
  color: #656565;
  font-weight: bold;
  cursor: pointer;
  cursor: hand;
  text-align: center;
}


.free_area_open_contets_del:hover {
  font-size: 16px;
  transition: all 0.3s ease;
}


.free_area_open_contents.plus_free_contents {
  display: block;
  transition: all 0.3s ease;
}

.free_area_open_top.plus_free_contents {
  transition: all 0.3s ease;
}


.free_area_open_contets_del.del_free_contents {
  display: none;
  transition: all 0.3s ease;
}

.free_sort.border-right-75 {
  border-right: 1px solid #757575;
}


/* アコーディオンflex*/

.free_area_accordion_flex {
  display: flex;
  flex-direction: column;

}

.free_area_accordion_flex_2 {
  display: flex;
  flex-direction: row;
}

/* アコーディオン */
.free_area_accordion_title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 10px 10px 10px 30px;
  transition: all .5s ease;
}

.free_area_accordion_title::before,
.free_area_accordion_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;

}

.free_area_accordion_title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
  transition: all .5s ease;
}

.free_area_accordion_title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
  transition: all .5s ease;
}

.free_area_accordion_title.close::before {
  transform: rotate(45deg);
  transition: all .5s ease;
}

.free_area_accordion_title.close::after {
  transform: rotate(-45deg);
  transition: all .5s ease;
}

/*アコーディオンで現れるエリア*/
.free_area_accordion_box {
  display: none;
  /*はじめは非表示*/

}


/* 藤田追加 */
/* フリー領域編集画面 */

.free_area_flex {
  display: flex;
  margin: 16px;
  gap: 2%;
}
.free_area_flex ul {
  flex: 1;
}
.free_area_carrier {
  width: 100%;
  height: 200px;
}
.free_area_first_automation {
  display: flex;
}
.free_area_first_automation li {
  flex-direction: column;
}
.free_area_first_automation div {
  margin-left: 8px;
}
.free_area_flex .update li {
  text-align: center;
}
.free_area_flex .update button {
  width: 80%;
}
  


.contents_around {
  display: flex;
  justify-content: space-around;

}

/*コンテンツ メール文面 */
.notification_form_table{
  min-width: 60%;
}

.notification_form_table input{
  width: 100%;
  box-sizing: border-box;
}

.notification_form_table textarea{
  width: 100%;
  box-sizing: border-box;
}


/* 藤田追加 */
/* ユーザープロフ承認 */
/* ユーザー名ホバーアクション */
.prf_user_name {
  background: none;
  text-decoration: none;
  width: 200px;
  text-align: left;
  transition: all 0.1s ease;
  color: #757575;
}

.prf_user_name a {
  color: #757575;
}

.prf_user_name:hover {
  background-color: #f0f8ff;
  font-weight: 700;
  text-decoration: underline solid 1px #757575;
  transition: all 0.1s ease;
}

.prf_pr {
  width: 300px;
  text-align: left;
}

.prf_pr_chek {
  width: 120px;
  text-align: center;
}

/* ページトップ */
.page_top_jump {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 20px;
  border-radius: 20px;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(120px);
}

.page_top_jump a {
  font-size: 20px;
  color: #fff;
  background-color: #666666;
  padding: 10px;
  text-decoration: none;
  border-radius: 20px;
}


/* 左に出る */
.page_top_jump.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右に消える */
.page_top_jump.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(150px);
  }
}




/* 検索アコーディオン */
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  margin: 0 auto;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.search_accordion_title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 0 0 0 50px;
  transition: all .5s ease;
}

/*アイコンの＋と×*/
.search_accordion_title::before,
.search_accordion_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;

}

.search_accordion_title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);

}

.search_accordion_title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.search_accordion_title.close::before {
  transform: rotate(45deg);
}

.search_accordion_title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.search_accordion_box {
  display: none;
  /*はじめは非表示*/

}


/* margin/padding/flex系コンポーネント */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flex-col4 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flex-box_0 {
  flex: 0;
}

.flex-box_1 {
  flex: 1;
}

.flex-box_2 {
  flex: 2;
}

.flex-box_3 {
  flex: 3;
}

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

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

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

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

.flex-j-center {
  display: flex;
  justify-content: center;
}

.flex-flexstart {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 5px;
}

.flex-space-evenly {
  display: flex;
  justify-content: space-evenly;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}

.flex-content {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 1em;
  flex-wrap: wrap;
}

.j-content-center {
  justify-content: center;
}

.item-center {
  align-items: center;
}

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

.w-90 {
  width: 90%;
}

.w-200 {
  width: 200px;
}

.w-100p {
  width: 100%;
}

.h-150 {
  height: 150px;
}

.h-300 {
  height: 300px;
}

.h-800 {
  height: 800px;
}

.min-with-250 {
  min-width: 250px;
}

.border-r {
  border-right: solid 1px var(--border_primary);
}

.border-rdi-8 {
  border-radius: 8px;
}

.max-w-100 {
  max-width: 100px;
}

.max-w-150 {
  max-width: 150px;
}

.max-w-200 {
  max-width: 200px;
}

.min-w-100 {
  min-width: 100px;
}

.min-w-150 {
  min-width: 150px;
}

.min-w-155 {
  min-width: 155px;
}

.m-le-20 {
  margin-left: 20px;
}

.m_ri_5 {
  margin-right: 5px;
}

.m-ri-10 {
  margin-right: 10px;
}

.m-ri-30 {
  margin-right: 30px;
}

.m-ri-50 {
  margin-right: 50px;
}

.m-top10 {
  margin-top: 10px;
}

.m-t-0 {
  margin-top: 0px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-70 {
  margin-top: 70px;
}

.ma-t-85 {
  margin-top: 85px;
}

.m-top-ri-20 {
  margin-right: 20px;
  margin-top: 20px;
}
.m-4 {
  margin: 4px;
}

.m-8{
  margin: 8px;
}

.m-8-50 {
  margin: 8px 50px;
}

.m-4-0 {
  margin: 4px 0;
}
.m-8-0 {
  margin: 8px 0;
}

.m-0-2vw {
  margin: 0 2vw;
}

.mb-0 {
  margin-bottom: 0px;
}

.mt-2 {
  margin-top: 2px;
}

.p-0 {
  padding: 0;
}

.margin-auto {
  margin: 0 auto;
}

.spacer_top_tiny {
  margin-top: 0.5em;
}

.spacer_bottom_tiny {
  margin-bottom: 0.5em;
}

.spacer_bottom_mini {
  margin-bottom: 1em;
}

.spacer_bottom {
  margin-bottom: 2em;
}

.spacer_bottom_middle {
  margin-bottom: 3em;
}

.spacer_bottom_50 {
  margin-bottom: 50px;
}

.spacer_bottom_80 {
  margin-bottom: 80px;
}

.spacer_right_mini {
  margin-right: 1em;
}

.spacer_right {
  margin-right: 2em;
}

.spacer_right_tiny {
  margin-right: 0.5em;
}

.spacer_right_middle {
  margin-right: 3em;
}

.spacer_left_mini {
  margin-left: 1em;
}

.spacer_left {
  margin-left: 2em;
}

.spacer_left_middle {
  margin-left: 3em;
}


.min_w_100 {
  min-width: 100px;
}

.form-margin-top-none form {
  margin-top: 0px;
}

body .margin-0 {
  margin: 0;
}

.aline-item-c {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-d-none button a {
  text-decoration: none;
  color: #757575;
}

.text-d-none button a:hover {
  font-weight: bold;
  color: #fff;
}

.font-12-b p {
  font-size: 12px;
  font-weight: bold;
}

.boder-bottom-da {
  border: 1px solid #dadada;
}

.border-top-75 {
  border-top: 1px solid #757575
}

.border-top-bold {
  border-top: 2px solid #757575
}

.border-bottom-75 {
  border-bottom: 1px solid #757575
}

.border-right-75 {
  border-right: 1px solid #757575
}

.border-right-bold {
  border-right: 2px solid #757575
}

.border-left-75 {
  border-left: 1px solid #757575
}

.no_wrap.border-left-75 {
  border-left: 1px solid #757575
}


.border-top-none {
  border-top: none;
}

.border-bottom-none {
  border-bottom: none;
}

.border-left-none {
  border-left: none;
}

.border-right-none {
  border-right: none;
}

.border-right-none-important {
  border-right: none !important;
}

.border-none .border-right-none {
  border-right: none !important;
}

.border-none .border-left-none {
  border-left: none !important;
}

.border-ra-1 {
  border-radius: 8px 0 0 0;
}

.border-ra-2 {
  border-radius: 0 8px 0 0;
}

.border-ra-3 {
  border-radius: 0 0 8px 0;
}

.border-ra-4 {
  border-radius: 0 0 0 8px;
}


/* ユーザー対応fream */
.user_frame {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  width: 100%;
  height: 85vh;
}

.tab_list_height {
  height: 14vh;
}

.tab_contents_height {
  height: 80vh;
}

/* searchフォーム日時 */
.search_form_date {
  padding: 10px;
  background-color: #ddd;
}

/* プロフィールチェック　表bg */
.prf_unchecked {
  background-color: #f7f7f7;
}

.prf_ok {
  background-color: #b8d6ff;
}

.prf_ng {
  background-color: #fac8c8;
}
.pref_table-fix table {
  position: relative;
}
.pref_table-fix thead{
  position: sticky; 
  top: 0;
}

.flex_col_full_height {
  display: flex;
  flex-direction: column;
  height: 100vh;
  box-sizing:border-box;
}

.flex_col_no_min_height {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.scroll_y_auto {
  overflow-y: auto;
}

/* ユーザー情報 */
.usr_detail-th th {
  border-top: 1px solid #757575;
}

table th .no_wrap.border-top-none {
  border-top: none;
}

table .usr_terminal th {
  border-top: 1px solid #757575;
}

table .usr_terminal td {
  max-width: 200px;
}

/* 課金情報 */
.user_pt_sub_td-bg {
  background-color: #eeeeee;
  border-top: 1px solid #757575;

}

/* フリー領域 編集*/
.free_content_item {
  text-align: center;
  margin-bottom: 0;
  padding-top: 5px;
  font-weight: bold;
  font-size: 16px;
  background-color: #ffffe0;
}

.free_content_flex {
  display: flex;
  margin: 10px 20px 30px 10px;
}

.free_content_flex label {
  margin: 0 10px;
}

.free_lanl_margin {
  margin: 5px 0 30px 0px;
}
.free_advertising_code_height{
  height: 200px;
}

.search_daily_border th {
  border-left: 1px solid #757575;
}

/* side menu */
.side_bar_style {
  padding: 15px;
  color: #5a5a5a;
}

/* ログイン画面 */
.login-position {
  position: relative;
  height: 100vh;
}

.login-font-style {
  font-size: large;
  font-weight: bold;
  width: 100%;
  padding: 10px;
  background: var(--default_back_ground_secondary);
}

.login-font-style-nomal {
  font-size: small;
  font-weight: normal;
  margin-left: 10px;
}

.login-font-style-smal {
  font-size: small;
  font-weight: normal;
}

.login-m-w-320-red {
  min-width: 320px;
  color: red;
}


/* テーブル系 調節 */
table tbody .border-top-none th {
  border-top: none;
}

table tbody .border-top-none td {
  border-top: none;
}

table tbody .top-border-none {
  border-top: none;
}

table tr .border-left-75 {
  border-left: 1px solid #757575 !important;
}

.fixed_table_width {
  table-layout: fixed;
}

/* age top背景 */
.top_bg_age {
  background-image: url(/css_v2.0/img/top_age.gif);
  background-size: cover;
}

/* med top背景 */
.top_bg_med {
  background-image: url(/css_v2.0/img/top_med.gif);
  background-size: cover;
}

/* spt top背景 */
.top_bg_spt {
  background-image: url(/css_v2.0/img/top_spt.gif);
  background-size: cover;
}


/* ------------- common調整 ----------------- */
.icon_mode .file_table .i_word_break {
  height: 2em !important;
}


/* 「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「
stp 永野編集
「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「「 */


/* attack------------------------------------ */

.search_btn-lg {
  padding: 16px;
  font-size: 16px;
  border-radius: 15px;
  transition: 0.5s;
}
.search_btn-lg:hover {
 
}

.result_frame-checkbox_table {
  width: 100%;
}

.result_frame-checkbox_td {
  width: 5%;
}

.result_frame-a_td {
  width: 15%;
}

.result_frame-users_td {
  display: flex;
  justify-content: space-between;
}

.result_frame-users_td_ul {
  flex: 1;
}

/* replay------------------------------------ */
.sendframe-hidden {
  display: none;
}

.sendframe-body {
  flex-direction: column;
  height: 100vh;
}

.framerow2-first_view {
  height: 0%;
}

.framerow3-first_view {
  height: 0%;
  width: 100%;
}


/* mail------------------------------------ */
.mail_frame-grid_container {
  display: grid;
  width: 100%;
  height: 100vh;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 2fr 5fr 1.5fr;
  gap: 2px;
  background-color: var(--primary, var(--default_primary));
}

.supporter_info {
  grid-row: 1;
  grid-column: 1 / 2;
}

.user-spt_memo {
  grid-row: 1;
  grid-column: 2 / 3;
}

.email_send {
  grid-row: 1 / 3;
  grid-column: 3 / 4;
}

.email_history {
  grid-row: 2;
  grid-column: 1 / 2;
}

.user_info {
  grid-row: 2 / 3;
  grid-column: 2 /3;
}

.switch_btn {
  display: block;
  border: none;
  outline: none;
  text-align: center;
  white-space: nowrap;
  transition: .2s;
  background: #FFFFFF;
  font-size: 10px;
  border-radius: 6px;
  color: #757575;
  border: 1px solid #757575;
  padding: 8px 16px;
  margin: 4px;
  cursor: pointer;
}

.switch_btn:hover {
  color: #FFFFFF;
  background-color: #757575;
}

.switch-container {
  display: flex;
  justify-content: space-between;
}

.tab-item {
  display: none;
}

.tab-item.active {
  display: block;
}

.switch_btn.active {
  color: #FFFFFF;
  background: #757575;
  pointer-events: none;
}

.switch_btn.active:hover {
  cursor: not-allowed;
}

/* parts log------------------------------------ */
.mail_log-table {
  width: 100%;
}


/* template freearea modal ------------------------------------ */

/* .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
} */

.modal-content {
  overflow: scroll;
  height: 100vh;
  width: 100%;
}

.modal-bg {
  position: fixed;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: #86858550;
  width: 100%;
}

.modal_container {
  background: white;
  position: fixed;
  min-height: 100vh;
  padding: 4px;
  width: 50%;
  z-index: 30;
  left: -300px;
  transition: .3s;
}

.modal-closed {
  display: flex;
  flex-direction: row-reverse;
}

.modal-closed_icon {
  font-size: 24px;
  padding: 4px;
  cursor: pointer;
}

.template-modal {
  display: none;
  height: 100%;
  margin-bottom: 100px;
}

.freearea-modal {
  display: none;
  margin-bottom: 100px;
}

.automation-modal {
  display: none;
  margin-bottom: 100px;
}

.imageList-modal {
  display: none;
  margin-bottom: 100px;
}

/* template modal details ------------------------------------ */

.template-contents {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.template-title {
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 37.15);
  background: #EEEEEE;
  border-radius: 5px;
  padding: 8px 16px;
  height: 100%;
  min-width: 25%;
}

.template-title-btn {
  display: block;
  border: none;
  outline: none;
  text-align: center;
  transition: .2s;
  background: #FFFFFF;
  font-size: 12px;
  border-radius: 6px;
  color: #757575;
  border: 1px solid #757575;
  padding: 4px 8px;
  margin: 4px;
  cursor: pointer;
  text-decoration: none;
  word-wrap: break-word;
}

.template-title-btn:hover {
  color: #FFFFFF;
  background-color: #757575;
}

.template-detail {
  min-width: 65%;
}

.template-detail-title {
  border: 1px solid #000;
  margin-bottom: 8px;
}

.template-detail-btn-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-top: 1px solid #000;
}

.template-detail-edit-btn {
  display: block;
  border: none;
  outline: none;
  text-align: center;
  white-space: nowrap;
  transition: .2s;
  background: #FFFFFF;
  font-size: 12px;
  border-radius: 15px;
  color: #757575;
  border: 1px solid #757575;
  padding: 4px 8px;
  margin: 4px;
  cursor: pointer;
  text-decoration: none;
  width: 100px;
}

/* attack setautomation  ------------------------------------ */

.attack_resultframe_search-under_frame {
  width: 100%;
  height: calc(100vh - 360px) !important;
}

.framerow3-fullscreen_frame {
  width: 100vw;
  height: 100vh !important;
}

.automation-register-input_contents {
  height: 0 !important;
  padding: 0;
}

.memo-input-date-width {
  width: 100px;
}

/* mail_report report ------------------------------------ */

/* lobby form  ------------------------------------ */

.lobby-table-min-width {
  min-width: 90px;
}

/* log  ------------------------------------ */

.table-style-none {
  border-collapse: collapse;
}


/* 初回オートメーション　モーダル*/
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* 背景を半透明にする */
}

/* 通常のスタイル */
.modal .hoverable {
  /* ここに通常のスタイルを指定します */
  padding-top: 3px; /* 上側の余白の大きさを指定します */
  padding-bottom: 3px; /* 下側の余白の大きさを指定します */
}

.modal .hoverable:hover {
  background-color: lightblue;
}

.modal_content_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal_content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  max-width: 500px;
  position: relative;
  z-index: 2; /* コンテンツを前面に出すための値 */
  overflow: auto;
  max-height: 400px;
  width: 400px;
  height: 400px;
}

.modal_close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3;
  /* 閉じるボタンを前面に出すための値 */
}

.modal_close:hover,
.modal_close:focus {
  color: black;
  text-decoration: none;
}

.modal_span {
  margin-left: 12px;
}

/* report/news/search_daily  ------------------------------------------------------ */
.ang_table {
  text-align: center;
}
.ang_table th , .ang_table td {
  padding: 4px;
}
.ang_table_border-top{
  border-top: 3px solid black;
}
.ang_table_inner_border-top tr:nth-of-type(2) td {
  border-top: 3px solid black;
}
.ang_table_inner_border-top tr:nth-of-type(2) th {
  border-top: 3px solid black;
}

/* common_v2.0/replacement_image/update_form ------------------------------------------------------  */
.img_container {
  max-width: 320px; 
  max-height:320px;
}
.img-name-input {
  width: 85%;
}
/* mng_v2.0\mail\queue.php ------------------------------------------------------  */
.error_mail_btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20%;
}
/* mng_v2.0\point\add\form.php ------------------------------------------------------  */
.table_add_point input {
  padding: 4px;
}

.table_add_point td {
  padding: 4px;
}

/* mng_v2.0\searchform.php ------------------------------------------------------  */
.freearea_fixed_card {
  max-height: 260px;
  overflow-y: scroll;
}


/* \searchform.php ------------------------------------------------------  */
.reply_table_w {
  width: 400px;
}    
.flex-col-subpoint {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}
/* \logout.php ------------------------------------------------------  */
.logout_btn{
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
}

.logout_btn a{
  text-decoration: none;
}
.logout_btn a:hover{
  color: white;
}

/* クイックアクセス設定 */
.quick_box {
  display: flex;
  flex-flow: row wrap;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.dragging {
  background-color: rgb(220, 220, 220);;
  opacity: 0.5;
}

.drop_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  gap: 5px;
  width: 30%;
}

.drag_box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto auto;
  gap: 5px;
  border-radius: 8px;
  width: 60%;
  padding: 5px;
}

.quick_item {
  height: 30px;
  background-color: rgb(220, 220, 220);;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 80%;
}

.drop_zone {
  height: 50px;
  width: 90%;
  border: 1px solid black;
  background-color: rgb(220, 220, 220);;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.grid_item {
  grid-column: 1 / -1;
  font-weight: bold;
}

.quick_overflow_auto {
  height: 50vh;
  overflow: auto;
}

.drop_zone_item {
  height: 41.82px;
}

.quick_over {
  background-color: rgba(255, 255, 0, 0.3);
}

/* AI使用料金css */
.ai_use_fee_wrap {
  max-width: 600px;
}

.ai_use_fee_total {
  font-size: 1.7em;
  font-weight: bold;
  text-align: right;
  margin-bottom: 20px;
}

.ai_use_section {
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
}

.category_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.ai_use_fee_subtotal {
  text-align: right;
  font-weight: bold;
}
/* ----AI使用料金css ここまで--------- */

/* 横スクロールの器 */
.table-scroll-x {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

/* テーブル本体（sticky前提） */
.landmark-table {
  width: max-content;
  min-width: 1200px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* すべてのセル共通 */
.landmark-table th,
.landmark-table td {
  padding: 8px 10px;
  border: 1px solid #ddd;
  background: #fff;
  vertical-align: middle;
}

/* 見出し */
.landmark-table thead th {
  background: #f2f2f2;
  font-weight: 600;
}

/* 入力をセル幅に追従 */
.landmark-table td input[type="text"] {
  width: 100% !important;
  box-sizing: border-box;
}

/* ===== 1列目固定 ===== */
.landmark-table .sticky-col {
  position: sticky;
  left: 0;
  background: #f7f7f7;
  z-index: 2;
}

/* ヘッダの左上セルは最前面 */
.landmark-table thead .sticky-col {
  z-index: 3;
  background: #e9e9e9;
}

/* 固定列とスクロール列の境界線（これで“線が消える”問題を完全回避） */
.landmark-table .sticky-col {
  border-right: 1px solid #999;
}

/* 左端の外枠も維持したい場合（念のため） */
.landmark-table th:first-child,
.landmark-table td:first-child {
  border-left: 1px solid #ddd;
}

/* --------- ユーザー詳細 プロフィール画像 --------- */
.user_img {
  width: 140px;
  height: 140px;
  background: rgb(66, 85, 226);
  overflow: hidden;
}

/* ユーザー画像 スライド */
.slide_wrapper_user_pic {
  width: 140px;
  height: 165px;
  margin-left: 25px;
  position: relative;
}

/*  ↓ スライド（コンテンツ） */
.slide_user_pic { /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}

.slide_user_pic div { /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
  text-align: center;
}

.slide_user_pic0 { /* スライドさせるために必要なクラス */
  transform: translateX(0);
}

.slide_user_pic1 { /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}

.slide_user_pic2 { /* スライドさせるために必要なクラス */
  transform: translateX(-66.66%);
}

/* ↓ インジケーター */
.indicator_user_pic {
  width: 100%;
  position: absolute;
  bottom: 5px;
  display: flex;
  column-gap: 18px;
  justify-content: center;
}

.indicator_user_pic li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px #000 solid;
  cursor: pointer;
}

.indicator_user_pic li:first-of-type {
  background-color: #000;
}

/* リッチメニュー用クラス */

.abs-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  background: #f5f5f5;
  border: 1px solid #000;
  border-radius: 1px;
}

.alert-warning-box {
  margin-top: 10px;
  padding: 10px;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  color: #856404;
}

.set-link.active {
  color: #ff1100;
}

.selectable {
  cursor: pointer;
  transition: box-shadow 0.2s, border 0.2s;
  max-width: 100px;
  max-height: 100px;
  border: 2px solid transparent;
}

.selectable:hover {
  border: 2px solid #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.2);
}

.selectable.selected {
  border: 2px solid #007bff;
}

.tap-area-preview {
  max-width: 200px;
  max-height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: auto;
}

.phone-preview {
  min-width: 200px;
  height: 380px;
  border: 5px solid #222;
  border-radius: 25px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #b5dcff;
}

.card {
  border-radius: 10px;
  padding: 10px;
  max-width: 255px;
  border: 2px solid #ccc;
}

.img-max-200 {
  max-width: 200px;
  max-height: 200px;
}

.richmenu-radio-label {
  flex: 1;
  display: block;
  padding: 12px;
  border: 1px solid #242323;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
}

.richmenu-radio-desc {
  display: block;
  margin-left: 26px;
  color: #242323;
}

.ellipsis {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 通知設定のポップアップCSS */
.sidebar-notify-card {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  background: #eddbd4;
  border: 1px solid rgb(37, 35, 35);
  border-radius: 10px;
  padding: 5px 10px 0px 15px;
  min-width: 135px;
  max-width: 140px;
  animation: slideIn 1.2s ease;
}

/* 画像表示用スタイル */
.ellipsis-one-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}