html,
body {
    width: 100%;
    height: 100%;
}

body {
    position: relative;
    background-color: #000;
    font-family: "SF Pro JP","SF Pro Text","SF Pro Icons","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
    font-size: 14px;
    line-height: 1.47059;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* common */
a {
    color: #fff;
    text-decoration: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

/* btn */
.btn {
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    padding: 10px 20px;
    margin: 0;
    border: none;
    pointer-events: auto;
}

.btn_primary {
    background-color: #fff;
    color: #000;
}
.btn_primary:hover {
    background-color: #e2e2e2;
}
.btn_disable {
    background-color: #808080;
    color: #000;
    /*pointer-events: none;*/
    /*cursor: not-allowed;*/
}
.btn_disable:hover {
    background-color: #808080;
}
.btn_success {
    background-color: #43da00;
    color: #fff;
}
.btn_success:hover {
    background-color: #3CC400;
}
.btn_caution {
    background-color: #f0e800;
    color: #fff;
}
.btn_caution:hover {
    background-color: #d8d000;
}
.btn_danger {
    background-color: #ea0000;
    color: #fff;
}
.btn_danger:hover {
    background-color: #d20000;
}
.btn_block {
    display: block;
}
.btn_circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    overflow: hidden;
    font-size: 25px;
    padding: 0;
}
.btn_round {
    display: inline-block;
    width: 170px;
    height: 52px;
    border-radius: 25px;
    text-align: center;
    line-height: 52px;
    overflow: hidden;
    font-size: 30px;
    padding: 0;
}
.btn_exp {
    width: 100%;
    font-size: 10px;
    text-align: center;
}


/* icon */
.icon {
    color: #fff;
}
.icon_success {
    color: #43da00;
}
.icon_caution {
    color: #f0e800;
}
.icon_danger {
    color: #d20000;
}

/* toggle_switch */
.toggle_switch {
    display: inline-block;
    height: 52px;
    border-radius: 25px;
    line-height: 52px;
    background-color: #e2e2e2;
    color: #000;
    /*padding: 0 25px;*/
}
.toggle_switch a {
    display: inline-block;
    padding: 0 30px;
    color: #4a4a4a;
}
.toggle_switch.toggle_switch_disable a {
    color: #cccccc;
}
.toggle_switch a.active {
    display: inline-block;
    height: 52px;
    border-radius: 25px;
    background-color: #ffffff;
}

/* range */
.range {
    -webkit-appearance: none;
    background: #fff;
    height: 7px;
    border-radius: 8px;
}
.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: white;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
}
.range::-ms-tooltip {
    display: none;
}
.range::-moz-range-track {
    height: 0;
}
.range::-moz-range-thumb {
    background: white;
    height: 20px;
    width: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition:
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 10px;
  line-height: 1.6;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

/* ./common */

/* ローカルビデオ */
.btn_openlocalvideo {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
}
.btn_openlocalvideo > span {
  background-color: #000;
  border-radius: 4px;
  padding: 2px 6px;
}
.localvideo_view_container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    height: 300px;
    background-color: #2C2C2D;
    box-shadow:0px 3px 3px 1px #000000;
    border-radius:4px;
    overflow: hidden;
}
.localvideo_view_container.hidden {
    display: block;
    top: -1000px !important;
}

.localvideo_view_container .btn_close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 22px;
}
.localvideo_view {
    width: 100%;
    height: 100%;
}
/* ./ローカルビデオ */

/* カメラ切替え */
.btn_changecamera_container {
    position: absolute;
    top: 20px;
    left: 0;
    color: #fff;
    width: 100%;
    text-align: center;
}
.btn_changecamera {
    margin: 0 0 5px 0;
}
/* ./カメラ切替え */

/* 操作パネル */
.control_panel {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /*height: 220px;*/
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.control_panel .inner {
    width: 940px;
    margin: 0 auto;
    padding: 25px 25px 10px 25px;
}
.room_info {
    margin: 0 0 20px 0;
    padding: 0;
}
.room_info dt {
    font-size: 12px;
    margin: 0 0 5px 0;
}
.room_info dd {
    font-size: 22px;
    font-weight: bold;
}
.room_info .room_name {
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
}
.room_info .room_state {
    display: none;
}
.room_info .room_edit {
  width: 100%;
  display: flex;
}
.room_info .room_edit .inputs {
  width: 70%;
}
.room_info .room_edit .inputs input {
  width: 99%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  margin: 0;
  height: 40px;
  padding: 0 5px;
}
.room_info .room_edit .btns {
  width: 30%;
  display: flex;
  justify-content: space-between;
}
.room_info .room_edit .btns .btn {
  width: 49%;
  font-size: 14px;
  font-weight: normal;
  padding-left: 0;
  padding-right: 0;
}

ul.control_items {
    margin: 0 0 0 -25px;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content:center;
}
.control_items li {
    position: relative;
    margin: 0 0 0 25px;
    padding: 0 0 20px 0;
}

.control_items li .btn_exp {
    position: absolute;
    top: 80%;
    left: 0;
    /*white-space: nowrap;*/
    flex: 1;
}
.control_items .range_volume {
    width: 140px;
    vertical-align: top;
    margin-top: 22px;
}
.control_panel .terms {
    width: 940px;
    margin: 0 auto;
    padding: 0 25px 10px 25px;
    text-align: right;
    font-size: 12px;
    text-decoration: underline;

}
/* ./操作パネル */

/* アラート */
.alert_container {
    position: absolute;
    min-width: 940px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex; /* 子要素をflexboxで揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;
}
.alert {
    width: 250px;
    padding: 40px 20px 20px 20px;
    border-radius: 4px;
    background-color: #4a4a4a;
    margin: auto;
}
@media all and (-ms-high-contrast:none){
  .alert { margin: 0; } /* IE10 */
}
.alert .icons {
    text-align: center;
    margin: 0 0 25px 0;
}
.alert .icon {
    font-size: 40px;
}
.alert .title {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px 0;
}
.alert .text {
    text-align: center;
    font-size: 12px;
    margin: 0 0 10px 0;
    /*color: #808080;*/
    color: #fff;
}
.alert .btns {
    padding: 15px 0 0 0;
}
.alert .btn_block {
    margin: 0 0 5px 0;
}
.alert .require {
  color: red;
}
.alert .alert_form_input {
  margin: 0 0 5px 0;
}
.alert .alert_form_input label,
.alert .alert_form_input p {
  display: inline-block;
  margin: 0 0 5px 0;
  font-size: 12px;
}
.alert .alert_form_input input[type="text"],
.alert .alert_form_input input[type="email"],
.alert .alert_form_input input[type="tel"],
.alert .alert_form_input input[type="password"],
.alert .alert_form_input input[type="date"],
.alert .alert_form_input textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 36px;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  padding: 5px;
  vertical-align: top;
}
.alert .alert_form_input textarea {
  height: 5em;
}
.alert .alert_form_input input[type="text"]::placeholder,
.alert .alert_form_input input[type="email"]::placeholder,
.alert .alert_form_input input[type="tel"]::placeholder,
.alert .alert_form_input input[type="password"]::placeholder,
.alert .alert_form_input input[type="date"]::placeholder,
.alert .alert_form_input textarea::placeholder {
  padding: 2px 0 0 0;
  font-size: 14px;
}
.alert .alert_form_input select {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  padding: 5px;
  background-color: #fff;
}
.alert .alert_form_error {
  font-size: 12px;
  text-align: center;
  color: red;
}
/* ./アラート */

/* 通話開始アラート */

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

/* ./通話開始アラート */

/* 新規通話URL発行アラート */
.newidalert {
  width: 320px;
}
.newidalert .newidalert_form_password{
  margin: 0 0 15px 0;
}
#alert_confirm_email div,
#alert_confirm_comment div {
  background-color: #333333;
  padding: 5px;
  border-radius: 4px;
}
#alert_confirm_comment div {
  height: 15em;
  overflow: auto;
  white-space: pre;
}

/* ./新規通話URL発行アラート */

/* 通話リクエストアラート */
.callrequestalert {
  width: 320px;
}
.callrequestalert .alert_form_input input.date {
  width: 65%;
  margin-right: 3%;
}
.callrequestalert .alert_form_input select {
  width: 32%;
}


/* ./通話リクエストアラート */

/* メイン */
.container {
    position: relative;
    min-width: 940px;
    height: 100%;
    padding: 40px 0 0 0;
}
.audio_view_container{
    width: calc(100% - 60px);
    height: calc(100% - 40px);
    background-color: #222222;
    margin: 0 auto;
}
.audio_view_container .inner {
    width: 100%;
    height: 100%;
    display: flex; /* 子要素をflexboxで揃える */
    flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;
}
.audio_view {
    width: 250px;
    margin: 0 auto;
}
.audio_view .logo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 5px solid #3c3c3c;
    text-align: center;
    padding: 35px 0 0 0;
    margin: 0 auto 30px auto;
}
.audio_view .logo .title {
    font-size: 20px;
    color: #808080;
    margin: 0 0 15px 0;
}
.audio_view .logo .icon span {
    font-size: 68px;
    color: #4a4a4a;
}
.audio_view .text {
    color: #4a4a4a;
    font-size: 12px;
    text-align: center;
}

.remote_video_view_container {
    width: calc(100% - 60px);
    height: calc(100% - 40px);
    background-color: #000000;
    margin: 0 auto;
}
.remote_video_view_container .inner {
    width: 100%;
    height: 100%;
    position:relative;
    overflow: hidden;
}
.remote_video_view {
    width: 100%;
    height: 100%;
}

#stalker, #pointer{
  border-radius:50%;
  background-color:red;
  position:absolute;
}
#stalker{
  width:14px;
  height:14px;
}
#pointer{
  width:6px;
  height:6px;
}
#laser_off{
  position:absolute;
  left:40px;
  bottom:40px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5px;
  flex-direction:column;
}

.mute_view_container {
    width: calc(100% - 60px);
    height: calc(100% - 40px);
    background-color: #000000;
    margin: 0 auto;
}

.mute_view_container .inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.mute_view_container .cover {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
}
.mute_view_container .mute_view_header {
    text-align: center;
    height: 120px;
}
.mute_view_container .mute_view_header_text {
    margin: 0 0 10px 0;
}
.mute_view_container .mute_view_header .btn {
  height: 60px;
  margin: 0 10px 20px 0;
}
.mute_view_container .mute_view_contents {
    position: relative;
    width: 100%;
    height: calc(100% - 220px);
}
.mute_view_container .youtube_container {
    position: relative;
    width: 100%;
    height: 100%;
}
.mute_view_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    background-color: #ffffff;
}
.mute_view_container .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* ./メイン */

@keyframes anim_fadein {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@keyframes anim_fadeout {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
        display: none;
    }
}
@keyframes anim_fadeinfadeout {
    0% {
        opacity:0;
    }
    10% {
        opacity:1;
    }
    90% {
        opacity:1;
    }
    100% {
        opacity:0;
        display: none;
    }
}
.fadeinout {
    display: block;
    animation: anim_fadeinfadeout 2s forwards;
}
.fadein {
    display: block;
    animation: anim_fadein 1s forwards;
}
.fadeout {
    display: block;
    animation: anim_fadeout 1s forwards;
}



/*@media screen and (max-width: 559px) {*/
@media screen and (orientation: portrait) {
    .mobile .container {
        min-width: 0px;
    }
    .mobile .btn_changecamera_container {
        top: 8px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile .btn_changecamera {
        width: 25px;
        height: 25px;
        border-radius: 4px;
        font-size: 12px;
        line-height: 25px;
    }

    .mobile .audio_view_container{
        width: calc(100% - 60px);
    }
    .mobile .remote_video_view_container {
        width: calc(100% - 60px);
    }
    .mobile .mute_view_container {
        width: calc(100% - 60px);
    }

    .mobile .alert_container {
        min-width: 0px;
    }

    .mobile .btn_sideMenuOpen {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 25px;
      height: 25px;
      border-radius: 4px;
      font-size: 12px;
      line-height: 25px;
    }

    .mobile .btn_openlocalvideo {
      top: 8px;
      right: 8px;
      width: 25px;
      height: 25px;
      border-radius: 4px;
      font-size: 12px;
      line-height: 25px;
  }
  .mobile .btn_openlocalvideo > span {
      background-color: #fff;
  }
  .mobile .btn_openlocalvideo .fa {
      color: #000;
  }
    .mobile .localvideo_view_container {
        top: 8px;
        right: 8px;
        width: 100px;
        height: 100px;
        z-index: 100;
    }
    .mobile .localvideo_view_container .btn_close {
        top: 2px;
        right: 10px;
    }
    .mobile .control_panel .inner {
        width: 100%;
    }
    .mobile .control_panel .terms {
        width: 100%;
    }
    .mobile .room_info .room_edit {
      display: flex;
      flex-direction: column;
    }
    .mobile .room_info .room_edit .inputs {
      width: 100%;
      margin: 0 0 10px 0;
    }
    .mobile .room_info .room_edit .inputs input {
      width: 100%;
    }
    .mobile .room_info .room_edit .btns {
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
    .mobile .room_info .room_edit .btns .btn {
      width: 49%;
      font-size: 14px;
      font-weight: normal;
    }

    .mobile .mute_view_container .mute_view_header {
      text-align: center;
      height: 190px;
    }
    .mobile .mute_view_container .mute_view_header .btn {
      width: 190px;
      margin: 0 0 10px 0;
    }
    .mobile .mute_view_container .mute_view_header #mute_view_alert_btn_reminder {
      height: auto;
    }
    .mobile .mute_view_container .mute_view_contents {
        position: relative;
        width: 100%;
        height: calc(100% - 290px);
    }
    
    .mobile .schedule_memoFile{
      position: absolute;
      top: 40px;
      left: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      height: calc(100% - 40px);
    }
    .mobile .btn_sideMenuClose {
      display: none;
    }
    .mobile .schedule {
      width: 100%;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 1rem 1rem 100px 1rem;
    }
    .mobile .memoFile {
      width: 100%;
      height: 100%;
    }
    .mobile .plan input[type="text"],
    .mobile .time select{
      font-size: 17px;
    }
    .mobile .s_title{
      font-size: 19px;
    }
    .mobile .dayAndTime .days p.gray{
      font-size: 15px;
    }
    .mobile .s_title_new{
      font-size: 14px;
    }
    .mobile .explain_btn p{
      font-size: 15px;
      padding-left: 22px;
    }
    .mobile .explain_btn i{
      font-size: 20px;
    }
    .mobile .plan i{
      font-size: 20px;
      line-height: 35px;
    }
    .mobile .schedule a.category{
      width: 37%;
      height: 2rem;
      line-height: 31px;
      font-size: 13px;
    }
    .mobile div.sideMenu{
      height: auto;
      width: 100%;
      border: 0;
      display: block;
      background: #2b2c2e;
    }
    .mobile .sideMenu i{
      margin-bottom: 0;
      margin-left: 90%;
    }
    .mobile .sideMenu .btn_swich a{
      width: 34%;
      justify-content: space-between;
      font-size: 16px;
      height: 2rem;
      font-weight: bold;
      line-height: 30px;
      margin: 40px auto 20px auto;
    }
    .mobile .sideMenu .btn_swich{
      display: flex;
    }
    .mobile .hello-week {
      width: 100%;
      margin: 0;
    }
    .mobile .hello-week .month .day{
      font-size: 16px;
    }

    .mobile .memoFile .textarea_memo{
      height: 89%;
    }
    .mobile .memoFile textarea{
      height: 100%;
      font-size: 16px;
      padding: .5rem ;
    }

}

@media screen and (orientation: landscape) {
    body.mobile {
        width: 100%;
        height: calc(100% - 50px);
    }

    .mobile .container {
        min-width: 0px;
    }
    .mobile .btn_changecamera_container {
        top: 8px;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile .btn_changecamera {
        width: 25px;
        height: 25px;
        border-radius: 4px;
        font-size: 12px;
        line-height: 25px;
    }

    .mobile .audio_view_container{
        width: calc(100% - 60px);
        height: 100%;
    }
    .mobile .remote_video_view_container {
        width: calc(100% - 60px);
    }
    .mobile .mute_view_container {
        width: calc(100% - 60px);
    }
    .mobile .mute_view_container .mute_view_header .btn {
      width: 190px;
      margin: 0 10px 10px 0;
    }
    .mobile .mute_view_container .mute_view_contents {
        position: relative;
        width: 100%;
        height: calc(100% - 100px);
    }


    .mobile .alert_container {
        min-width: 0px;
    }

    .mobile .btn_sideMenuOpen {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 25px;
      height: 25px;
      border-radius: 4px;
      font-size: 12px;
      line-height: 25px;
    }

    .mobile .btn_openlocalvideo {
      top: 8px;
      right: 8px;
      width: 25px;
      height: 25px;
      border-radius: 4px;
      font-size: 12px;
      line-height: 25px;
  }
  .mobile .btn_openlocalvideo > span {
      background-color: #fff;
  }
  .mobile .btn_openlocalvideo .fa {
      color: #000;
  }
    .mobile .localvideo_view_container {
        top: 8px;
        right: 8px;
        width: 100px;
        height: 100px;
        z-index: 100;
    }
    .mobile .localvideo_view_container .btn_close {
        top: 2px;
        right: 10px;
    }

    .mobile .control_panel {
        /*height: 150px;*/
        width:100%;
    }
    .mobile .control_panel .inner {
        width: 100%;
        display: flex;
        align-items: flex-start;
        flex-wrap:nowrap;
    }
    .mobile .control_panel .terms {
        width: 100%;
    }
    .mobile .control_panel .room_info {
        width: 35%;
    }
    .mobile .control_panel .control_items {
        width: 65%;
        margin: 0;
        justify-content: flex-end;
    }
    .mobile .room_info .room_edit {
      display: flex;
      flex-direction: column;
    }
    .mobile .room_info .room_edit .inputs {
      width: 100%;
      margin: 0 0 10px 0;
    }
    .mobile .room_info .room_edit .inputs input {
      width: 100%;
    }
    .mobile .room_info .room_edit .btns {
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
    .mobile .room_info .room_edit .btns .btn {
      width: 49%;
      font-size: 14px;
      font-weight: normal;
    }
    
    .mobile .schedule_memoFile{
      position: absolute;
      top: 40px;
      left: 0;
      width: 43%;
      flex-direction: column;
      height: calc(100% - 40px);
      margin-bottom: 2rem;
    }
    .mobile .btn_sideMenuClose {
      display: none;
    }
    .mobile .plan input[type="text"] {
      font-size: 17px;
      line-height: 32px;
    }
    .mobile .time select{
      font-size: 17px;
    }
    .mobile .plan i{
      float: right;
      line-height: 41px;
      font-size: 26px;
    }
    .mobile .s_title{
      font-size: 18px;
    }
    .mobile .dayAndTime .days p.gray{
      font-size: 15px;
    }
    .mobile .explain_btn p{
      font-size: 13px;
      padding-left: 1.4rem;
      width: 90%;
    }
    .mobile .plan{
      width: 100%;
    }
    .mobile .explain_btn i{
      font-size: 20px;
    }
    .mobile .schedule a.category{
      width: 60%;
      height: 2rem;
      line-height: 31px;
      font-size: 13px;
    }
    .mobile .sideMenu{
      width: 100%;
      text-align: center;
      border: 0;
      height: 23%;
      background: #2b2c2e;
      display: block;
    }
    .mobile .sideMenu i{
      margin-left: 90%;
      margin-bottom: 0;
    }
    .mobile .sideMenu a{
      width: 42%;
      justify-content: space-between;
      font-size: 16px;
      height: 2rem;
      font-weight: bold;
      line-height: 30px;
    }
    .mobile .sideMenu .btn_swich{
      display: flex;
    }
    .mobile .schedule,
    .mobile .memoFile{
      width: 100%;
      height: 77%;
      margin: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 1rem 1rem 2rem 1rem;
    }
    .mobile .schedule a.add_plan,
    .mobile .memoFile a.save_memo{
      margin-top: 3rem;
      width: 60%;
      height: 3rem;
      line-height: 47px;
    }
    .mobile .hello-week{
      margin: 0;
      width: 100%;
    }
    .mobile .hello-week .day{
      font-size: 16px;
    }

    .mobile .memoFile .textarea_memo{
      height: 89%;
    }
    .mobile .memoFile textarea{
      height: 100%;
      font-size: 16px;
      padding: .5rem ;
    }

}

/* footer */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 10;
}
.footer .terms {
  text-align: right;
}
.footer .terms a {
  font-size: 12px;
  text-decoration: underline;
}

/* adachiが書いた ↓*/
.schedule_memoFile{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33%;
  background-color: #2b2c2e;
  z-index: 100;
}
.schedule_memoFile {
  display: inline-flex;
  /*-webkit-overflow-scrolling: touch;*/
  width: 420px;
}

.sideMenu{
  height: 100%;
  border-right: 1px solid #6d6d6d;
  min-width: 125px;
  display: block;
}
.sideMenu *{
  display: block;
  margin-bottom: 1rem;
}
.sideMenu i{
  font-size: 30px;
  margin-left: 1rem;
  margin-top: .5rem;
}
.btn_toDo_ch{
  font-size: 13px;
  width: 80%;
  line-height: 23px;
  margin: .8rem auto;
  height: auto;
}
.btn_toDo_ch_2{
  display: none;
}

.schedule,
.memoFile{
  padding: .7rem 1.1rem 3rem 1.1rem;
  height: 100%;
  min-width: 275px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.hello-week .day.is-scheduled:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: '　';
  width: 20px;
  height: 30px;
  border-bottom: 2px solid #CCB33F;
}
.schedule a.category{
  width: 100px;
  font-size: 10px;
  height: 23px;
  line-height: 22px;
  font-weight: bold;
}
.select_scheduleCategory {
  -webkit-appearance:none;
  appearance:none;
  width: 155px;
  padding: 5px 10px;
  border:#ccc 1px solid;
  border-radius: 25px;
  background:#fff;
  font-size: 16px;
}
.schedule a.add_plan,
.memoFile a.save_memo{
  width: 200px;
    height: 44px;
    font-size: 15px;
    font-weight: bold;
    line-height: 44px;
    margin: 1.7rem auto 1.5rem auto;
    display: block;
}
.schedule .scheduleValidationError,
.memoFile .memoSaveError {
  margin-top: 1.5rem;
  color: red;
  line-height: 1.6;
  text-align: center;
}

.memoFile .memoSaveSuccess {
  margin-top: 1.5rem;
  color: fff;
  line-height: 1.6;
  text-align: center;
}

.dayAndTime{
  margin-top: 1rem;
}

.gray{
  color: #b6b6b6;
}

.explain_btn{
  position: relative;
  margin: .5rem 0;

}
.explain_btn *{
  display: inline-block;
  color: #6d6d6d;
}
.explain_btn i{
  position: absolute;
  top: 0;
  left: 0;
}
.explain_btn p{
  padding-left: 1rem;
  font-size: 10px;
}

.plan{
  border-bottom: 3px solid #6d6d6d;
}
.plan input{
  background-color: #2b2c2e;
  border: none;
  width: 92%;
  color: #fff;
  padding: 5px 8px;
}
.plan i{
  font-size: 17px;
  float: right;
}

.dayAndTime > div{
  display: inline-block;
}
.dayAndTime .days p{
  font-size: 14px;
}
.time {
  border-bottom: 3px solid #6d6d6d;
  float: right;
  position: relative;
  padding-bottom: 5px;
}
.time select{
  background-color: #2b2c2e;
  width: 6rem;
  border: none;
  height: 19px;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 15px;
}
.time i{
  font-size: 19px;
}
.time i.fa-caret-down{
  position: absolute;
  top: 2px;
  right: 5px;
}

.s_title{
  font-size: 16px;
  margin-bottom: 10px;
}

.futurePlan{
  border-bottom: 3px solid #6d6d6d;
  position: relative;
  padding-bottom: .7rem;
  margin-bottom: .7rem;
}
.futurePlan div,
.futurePlan .btn_editSchedule {
  display: inline-block;
}
.futurePlan_day{
  position: absolute;
  top: 0;
  left: 0;
}
.futurePlan_day .month{
  width: 32px;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  margin: 0 0 3px 0;
}
.futurePlan_day .day{
  width: 32px;
  font-size: 20px;
  text-align: center;
  display: block;
  line-height: 17px;
  font-weight: bold;
}
.futurePlan_detail{
  margin-left: 2.5rem;
  width: 176px;
}
.futurePlan_detail .timesOfDay{
  font-size: 15px;
}
.futurePlan_detail .planName{
  font-weight: bold;
}
.futurePlan .btn_editSchedule {
  float: right;
  padding-top: .7rem;
  padding-right: .6rem;
  font-size: 17px;
}
.karennda{
  padding-bottom: 2rem;
}
.s_title_new{
  padding-bottom: .5rem;
  color: #B0B1B3;
  font-weight: bold;
}

.memoFile .textarea_memo {
  height: 100%;
}

.memoFile textarea{
  width: 100%;
  height: calc(100% - 138px);
  border: 0;
  background-color: #fff;
  color: #333;
}

.btn_sideMenuOpen {
  position: absolute;
    top: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    overflow: hidden;
    font-size: 25px;
    padding: 0;
    background-color: #fff;
    color: #000;
    display: block;
    z-index: 100;
}
.schedule_memoFile .scheduleMemo {
  margin: 30px 0 0 0;
  border-bottom: 3px solid #6d6d6d;
}
.schedule_memoFile .scheduleMemo textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  font-size: 16px;
  padding: 5px 8px;
  height: 5em;
  background-color: #2b2c2e;
  color: #fff;
  font-size: 16px;
}
.schedule_memoFile .scheduleMemo textarea::placeholder {
  padding: 2px 0 0 0;
  font-size: 14px;
}

.hidden {
  display: none !important;
}

.inactive {
  pointer-events: none;
}

/* 店舗別 */

body[data-store^='ab7'] .callstartalert .btns .btn,
body[data-store^='abs'] .callstartalert .btns .btn {
  background-color: #e62d0f;
}