/**
 * mimir css
 */

* {
    max-width: 768px;
}

/* iPadの横向きに対応 */
@media (orientation: landscape) {
    * {
        max-width: 1366px;
    }
}

/* ラッパー */
#wrapper {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}

/* ドロワー */
#drawer {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
}
#drawer .drawer-body {
    position: absolute;
    top: 0px;
    left: -240px;
    z-index: 1;
    width: 240px;
    height: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
    transition: all 500ms ease-in-out 0s;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
#drawer .drawer-body.active {
    left: 0px;
}

.drawer_menu {
    color: black;
}

.drawer_navi_color {
    color: green;
}

/* ハンバーガーアイコン */
.hamburger {
    height: 40px;
    width: 40px;
    padding: 4px;
    float: left;
}
.hamburger div {
    margin-top: 6.5px;
    width: 100%;
    border: solid 1px #ffffff;
    border-radius: 1px;
    background-color: #ffffff;
}

/* モーダル */
#modals {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.modal {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
}
#modals .modal-wrapper {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
    transition: all 500ms ease-in-out 0s;
}
#modals .modal-wrapper .modal-body {
    display: flex;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.modal-body > div.panel {
    width: 100%;
    max-height: 100%;
}
.modal-body > div.panel .panel-body {
    max-height: 445px;
    padding: 8px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* 得意ジャンル */
.modal-body > div.panel .panel-body-genre {
    max-height: 320px;
    padding: 8px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* オーバーレイ */
.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
}

/* コンテンツ */
#contents {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ヘッダ */
#header {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 48px;
    padding: 4px;
    box-sizing: border-box;
    background-color: rgba(119, 184, 218, 1);
    align-items: center;
    justify-content: space-between;
}
#header .side button {
    width: 40px;
}
#header .center {
    text-align: center;
}

span.lessons-budge {
    position: absolute;
    color: white;
    background: red;
    padding: 1px 5px;
    font-size: 75%;
    border-radius: 6px;
    box-shadow: 0 0 3px #ddd;
    white-space: nowrap;
    top: 0;
    margin-left: 5;
}

/*ポイント*/
.point {
    margin-top: 5px;
}
.point_page {
    color: black;
    font-family: Impact;
    font-size: 18px;
    border-bottom: 1.5px solid;
}

/* フッタ */
#footer {
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 48px;
    padding: 0px;
    box-sizing: border-box;
    background-color: rgba(119, 184, 218, 1);
    align-items: center;
    justify-content: space-around;
}

.notice-budge {
    position: absolute;
    color: white;
    background: red;
    padding: 1px 5px;
    font-size: 75%;
    top: 0px;
    /* left: 0px; */
    border-radius: 6px;
    box-shadow: 0 0 3px #ddd;
    white-space: nowrap;
}

#page_top {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10;
    bottom: 110;
    background: gray;
    opacity: 0.9;
    border-radius: 50%;
    z-index: 1;
}
#page_top a {
    font-size: 22px;
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    padding: 8px 0;
    text-align: center;
    color: white;
    font-weight: 900;
}

#page_top_search {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 5;
    bottom: 55;
    background: #337ab7;
    opacity: 0.9;
    border-radius: 50%;
    z-index: 2;
}
#page_top_search i {
    font-size: 22px;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
    padding: 14px 0;
    text-align: center;
    color: white;
    font-weight: 900;
}

/* メイン */
#main {
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    padding: 10px 8px;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

/* 画像ボタン */
.img-button {
    float: left;
    height: 100%;
    padding: 4px;
    border: none;
    background: transparent;
}
.img-button img {
    max-width: 100%;
    max-height: 100%;
}
.img-button .circle {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    object-fit: cover;
}

/* ヘッダーmimirアイコン */
.img-top {
    float: left;
    height: 100%;
    padding: 4px;
    border: none;
}

/* モック用画像 */
.mock {
    width: 100%;
}

/* 区切り線 */
span.separator {
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #93c4db, #2f80b8);
    margin: 8px 0px;
}

/* 講師パネル */
.teacher-panel-wrapper {
    height: 80px;
    margin: 8px;
    padding: 4px;
    border: solid 2px rgba(192, 192, 192, 1);
    border-radius: 8px;
}
.teacher-panel-body {
    margin: 0px;
}
.teacher-panel-grid {
    height: 100%;
    padding: 4px;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}
.teacher-image {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 60px;
    height: 60px;
    margin: 4px;
    border-radius: 50%;
    background-color: green;
}

.row.teacher {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 0px;
    margin-left: 0px;
}
.row.hr {
    margin: 0px;
    padding: 0px;
}
.row.teacheract {
    margin-right: 0px;
    margin-left: 0px;
    text-align: right;
}
.favorite {
    margin-right: 0px;
    margin-left: 0px;
    text-align: right;
}
.row.teacherspace {
    height: 10px;
}
.teacher-panel-grid2 {
    padding: 4px;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}
.teacher-image2 {
    z-index: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: green;
    text-align: center;
}

.teacher-badge {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin: 4px;
    border-radius: 50%;
    background-color: red;
}

.teacher-element {
    box-sizing: border-box;
    white-space: nowrap;
}

.teacher-element2 {
    margin: 10px, 0, 10px, 0 !important;
}

.teacher-element-name {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 75%;
}
.teacher-element-attribute {
    min-width: 30%;
    margin: 2px 0;
    padding: 3px 10px;
    text-align: center;
    font-size: 10px;
    border: #808080 1px solid;
    border-radius: 5px;
    /* display: inline-block;
    margin-top: 2px;
    margin-bottom: 4px;
    border: solid 1px rgba(192, 192, 192, 1);
    border-radius: 4px;
    padding: 2px;
    /*margin-left: 2px;*/
    /* text-align: center;
    box-sizing: border-box; */
    width: auto;
}

.teacher-element-size {
    height: 15px;
    width: 50px;
}

.over-text-hidden-content {
    height: 15px;
    /* width: 200px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.over-text-content {
    padding-bottom: 20px;
}
/*
.teacher-element-attribute.appeal
{
    border-color: rgba(255,0,0, 1);
    color: rgba(255,0,0, 1);
}
*/
.teacher-element-attribute.appeal {
    background-image: url("../images/heart.png");
    background-repeat: no-repeat;
    border-color: rgba(255, 0, 0, 1);
    color: rgba(255, 0, 0, 1);
    vertical-align: middle;
}
.teacher-evaluation {
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.teacher-evaluation div {
    display: inline-block;
    vertical-align: middle;
    width: 70px;
}

.teacher-follow {
    height: 30px;
    text-align: center;
}

.teacher-inf {
    text-align: center;
    margin: 0px;
    padding: 0px;
}
ul {
    list-style-type: none;
}
hr {
    height: 1px;
    border: none;
    border-top: 1px #000000 solid;
    margin: 7px 0px 7px 0px;
}

/* 改行表示 */
.newLine {
    white-space: pre-wrap;
}

/* アコーディオンパネル */
.accordion {
    margin: 8px;
}
.accordion .panel-heading,
.accordion .panel-body {
    padding: 8px;
}
.accordion .panel-title span {
    vertical-align: middle;
}
.accordion .reset-select {
    margin-left: 8px;
}
.accordion .accordion-toggle {
    font-weight: bolder;
    margin-left: 8px;
    color: rgba(169, 169, 169, 1);
    float: right;
}
.accordion .accordion-toggle::before {
    content: "▲";
}
.accordion .accordion-toggle.collapsed::before {
    content: "▼";
}

/* ----------------------------------------------
    リクエスト一覧
------------------------------------------------ */

/* リクエスト一覧の一行分 */
.info-box {
    margin: 5px 0;
    padding: 5px;
    color: #333;
    background: #ffffff;
    border: 2px solid #d2d6de;
    -webkit-border-radius: 12px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -moz-border-radius: 12px; /* Firefox 1-3.6 */
    border-radius: 12px; /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.20); */
    cursor: pointer;
}

.info-box:hover {
    border-color: #adadad;
}

.info-box-icon {
    width: 64px;
    height: 64px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    font-size: 0px;
}

.info-box-tools .label {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
}

/*  依頼NG、期限切れボタン*/
.digitalize-btn-out {
    color: white;
    background-color: #adadad;
    border-color: #adadad;
}

/* .info-box .info-box-icon .info-box-icon-img {
    background-color: #337ab7;
} */

/* ----------------------------------------------
    講師プロフィール系
------------------------------------------------ */
.config-image {
    float: right;
    width: 15%;
}

.teacher-profile-image {
    z-index: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    object-fit: cover;
}

.teacher-profile-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 2.5em; /* 24px */
    color: #808080;
}

.profile-hr {
    height: 0px;
    border: none;
    border-top: 1px #808080 solid;
    margin: 7px 0px 0px 0px;
}

.school-info {
    font-size: 14px;
    color: #808080;
}

.introdaction {
    font-size: 9px;
    padding-left: 10px;
    margin: 15px;
    color: #808080;
}

.device-select {
    display: inline-block;
}

.student-introdaction {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #808080;
}

.student-porpose {
    color: #808080;
}

.row {
    margin: auto;
}

/* ----------------------------------------------
    お知らせ一覧系
------------------------------------------------ */

.notification {
    padding-left: 20px;
    padding-right: 20px;
}

.guest_name {
    font-size: 14px;
    margin: 0px;
    padding-top: 5px;
    padding-left: 10px;
    left: 0;
    bottom: 0;
    color: #808080;
}

.notice-lesson_date {
    font-size: 14px;
    margin: 0px;
    padding-bottom: 5px;
    padding-left: 5px;
    left: 0;
    bottom: 0;
    color: #808080;
}

.published-date {
    font-size: 12px;
    margin-bottom: 5px;
    left: 0;
    bottom: 0;
    color: #808080;
}

.notice-profile-name-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    display: inline-block;
}

.img-new {
    /* float: right; */
    height: 45px;
    position: absolute;
    right: 0px;
}

.notice-hr {
    height: 0px;
    border: none;
    border-top: 1px #808080 solid;
    margin: 7px 0px 0px 0px;
}

.item-inner-notice-content {
    margin: 10px 0 5px 0;
}

.mngr-label {
    font-size: 16px;
    align-content: left;
    font-weight: 600;
    margin-bottom: 10px;
    color: #34c734;
}

.mngr-label-detail {
    font-size: 16px;
    align-content: left;
    font-weight: 600;
    margin-bottom: 5px;
    color: #34c734;
}

.notice-request {
    color: dodgerblue;
}
.notice-begin {
    color: deeppink;
}
.notice-lesson {
    color: black;
}

.notice-cancel {
    color: #c7c434;
}

.grid-notice-first {
    width: 75px;
}

.notice-grid {
    width: 85%;
}

.notice-created {
    float: right;
    position: absolute;
    right: 3;
}

.list-margin {
    margin: -2px 0px !important;
}

.notification-detail {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px !important;
    align-content: left;
    font-weight: 0;
}

.notification-detail-date {
    margin-top: 15px;
    font-size: 12px !important;
    align-content: right;
    font-weight: 0;
    color: #808080;
}

a.item-inner-content-text.notification-detail {
    text-decoration: underline;
}

@media screen and (min-width: 769px) {
    .bottom-right {
        position: fixed;
        bottom: 60;
        left: 595;
    }
}
@media screen and (max-width: 768px) {
    .bottom-right {
        position: fixed;
        bottom: 60;
        right: 20;
    }
}

/* ----------------------------------------------
    ポイント購入
------------------------------------------------ */

.point-title {
    display: inline-block;
    margin-left: 20px;
    color: #808080;
    text-align: center;
}

.current-point {
    color: #808080;
}

.point-value {
    /*padding:0px;*/
    margin: 6px;
    padding-top: 5px;
    padding-left: 20px;
    left: 0;
    bottom: 0;
    color: #808080;
}

.point-price {
    margin: 6px;
    padding: 2px, 0px, 2px, 0px;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    width: 100%;
}

/* ----------------------------------------------
    授業結果
------------------------------------------------ */
.result {
    margin-top: 10px;
}

.top_btn {
    height: 80px;
    width: 180px;
    font-size: 18;
    font-weight: bold;
    border-radius: 5px;
    background-color: #62b2f6;
    color: white;
    margin-top: 150px;
}
/* ----------------------------------------------
    リスト系
------------------------------------------------ */
.list-row {
    margin: 5px 0;
    padding: 5px;
    color: #333;
    background: #ffffff;
    border: 2px solid #d2d6de;
    -webkit-border-radius: 12px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -moz-border-radius: 12px; /* Firefox 1-3.6 */
    border-radius: 12px; /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.20); */
    cursor: pointer;
}

.list-row:hover {
    border-color: #adadad;
}
.padding-0 {
    padding-right: 0;
    padding-left: 0;
}

.list-userimage-grid {
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.user-image {
    z-index: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #adadad;
    text-align: center;
}

.item-font {
    margin-top: 3px 0;
    margin-bottom: 5px 0;
    padding: 0px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.42857143;
    box-align: center;
}

.item-fontInfo {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.42857143;
}

/* flexの設定 --------------------------------------------------------
    中のスタイルは個別で指定しても大丈夫です
------------------------------------------------------------------- */
.flex-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inline-flex-grid {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.inline-flex-grid div {
    padding: 0 5px;
}

/* inline-blockの設定 --------------------------------------------------------
    中のスタイルは個別で指定しても大丈夫です
------------------------------------------------------------------- */
.inline-block-area {
    letter-spacing: -1em;
}

.inline-block-area div {
    display: inline-block;
    letter-spacing: normal;
    width: calc(25% - 2px);
    max-width: 100%;
    /* height: 300px; */
    /* border: 1px solid rgba(0,0,0,.1); */
    /* margin: 1px;
    padding: .8em; */
    vertical-align: top;
    overflow: hidden;
}

/* 行配置 ------------------------------------*/
.align-left {
    text-align: left;
}

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

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

/* toggle用クラス -----------------------------*/

.show {
    display: block;
}

.hide {
    display: none;
}

/* 講師登録 */
.profile-user-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    max-width: 100%;
    margin: 0 auto;
}
.identification-user-img {
    height: 250px;
    max-width: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.profile-description {
    font-size: 16px;
}

.required {
    color: red;
    font-weight: bold;
}

.profile-option {
    margin-top: 20px;
    color: limegreen;
}

input#lesson_fee {
    display: inline-block;
    width: 50%;
}

input#points {
    width: 18%;
    border: none;
    background: white;
    padding: 12px 3px;
    vertical-align: baseline;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* 金額引出画面 */
.asterisk {
    font-size: 11px;
}

/* ----------------------------------------------
    講師検索
------------------------------------------------ */
.free_word {
    margin-bottom: 6px;
}

/* 講師検索タイトル */
.panel-title.search-title {
    max-width: 100%;
    text-align: center;
}
/*各項目タイトル */
.panel-default > .panel-heading {
    color: #fff;
    background-color: #2db0c3;
}

/* 授業料選択ボタン*/
.btn-default.point-range-checkbox.focus {
    background-color: white;
}

.btn-default.point-range-checkbox.active,
.btn-default.point-range-checkbox.active.focus {
    background-color: #337ab7;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* 学部選択 */
.ul.list-group.depart {
    padding-left: 8px;
}

/* ヘッダー */
.hamburger_menu {
    font-size: 35px;
    color: white;
}
.header_name {
    position: absolute;
    left: 15%;
    color: white;
}
/* フッター */
.fas.footer_active {
    font-size: 28px;
    color: #000080;
    padding: 0;
}
.far.footer_active {
    font-size: 28px;
    color: #000080;
    padding: 0;
}

.footer_text_active {
    font-size: 10px;
    color: #000080;
}

.fas.footer_inactive {
    font-size: 28px;
    color: white;
    padding: 0;
}

.far.footer_inactive {
    font-size: 28px;
    color: white;
    padding: 0;
}

.footer_text_inactive {
    font-size: 10px;
    color: white;
}
