@charset "UTF-8";
@import url("setting.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/****************************************
 	mixin								*
*****************************************/
/****************************************
 	フォント設定							*
*****************************************/
@font-face {
  font-family: 'fontawesome';
  src: url("../fonts/fontawesome/fa-brands-400.eot");
  src: url("../fonts/fontawesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("../fonts/fontawesome/fa-brands-400.woff") format("woff"), url("../fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("../fonts/fontawesome/fa-brands-400.svg#fontawesome") format("svg");
  src: url("../fonts/fontawesome/fa-regular-400.eot");
  src: url("../fonts/fontawesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-regular-400.woff2") format("woff2"), url("../fonts/fontawesome/fa-regular-400.woff") format("woff"), url("../fonts/fontawesome/fa-regular-400.ttf") format("truetype"), url("../fonts/fontawesome/fa-regular-400.svg#fontawesome") format("svg");
  src: url("../fonts/fontawesome/fa-solid-900.eot");
  src: url("../fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("../fonts/fontawesome/fa-solid-900.woff") format("woff"), url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("../fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg");
}
/****************************************
 	基本設定								*
*****************************************/
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

body {
  font-family: "Kosugi Maru","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  background: var(--bg-rgb);
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  color: #696969;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  background: #f2f2f2;
}
body::-webkit-scrollbar {
  display: none;
}
body:not(.login) {
  min-height: 100vh;
  margin-left: 250px;
}
@media screen and (max-width: 1024px) {
  body:not(.login) {
    margin-left: auto;
  }
}

input, select, textarea, button, option {
  font-family: "Kosugi Maru","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  color: #696969;
  font-size: 1rem;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #696969;
}

.logo {
  font-family: 'Oswald', cursive;
}

input[type="submit"] {
  -webkit-appearance: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--main-rgb);
  border-radius: 20px;
}

/****************************************
 	ヘッダー								*
*****************************************/
/****************************************
 	ナビゲーション							*
*****************************************/
nav {
  width: 250px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #ffffff;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  nav {
    position: static;
    width: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }
  nav::-webkit-scrollbar {
    display: none;
  }
}
nav ul.menu {
  margin-top: 1rem;
}
nav ul.menu.mb {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav ul.menu {
    display: flex;
    align-items: center;
    margin-top: auto;
  }
  nav ul.menu .logout {
    display: none;
  }
  nav ul.menu > * {
    width: 50%;
  }
  nav ul.menu.bookmarks {
    display: flex;
  }
  nav ul.menu.bookmarks > * {
    width: 16.66%;
  }
  nav ul.menu.bookmarks > *:nth-child(n+7) {
    display: none;
  }
}
nav ul.menu li a {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: #9b9b9b;
}
@media screen and (max-width: 1024px) {
  nav ul.menu li a {
    justify-content: center;
  }
}
nav ul.menu li a i {
  font-size: 1.5rem;
  margin-right: .5rem;
}
@media screen and (max-width: 1024px) {
  nav ul.menu li a i {
    font-size: 2rem;
  }
}
nav ul.menu li a:hover {
  background: #E9FCFD;
}
nav ul.menu li a.active {
  color: #16a5bc;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  nav ul.menu li a span {
    display: none;
  }
}
nav ul.menu li a.profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
nav ul.menu li a.profile .data_wrap {
  display: flex;
  flex-direction: column;
  margin-left: .4rem;
  flex-grow: 2;
}
nav ul.menu li a.profile .data_wrap .title {
  color: #0a0a0a;
  margin-bottom: .4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav ul.menu li a.profile .data_wrap .date_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: .7rem;
}

/****************************************
 	メイン								*
*****************************************/
main {
  position: relative;
}
main.main {
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  main.main {
    padding: .5rem;
  }
}
main#top {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
main#top article {
  width: 50%;
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  main#top article {
    margin-bottom: 2rem;
    padding: .5rem;
  }
}
main#top article section {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
main#top article section .image {
  width: 100%;
  height: 160px;
  position: relative;
}
main#top article section .image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
main#top article section .image .count {
  position: absolute;
  left: .5rem;
  bottom: .5rem;
}
main#top article section .body {
  text-align: center;
  padding: .5rem;
  box-sizing: border-box;
}
main#top article section .body .title {
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main#top article section .body .date {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: .8rem;
}
main.bookmark_edit article {
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
}
main.bookmark_edit article .body {
  border: solid 1px #f2f2f2;
  padding: .5rem;
}
main.bookmark_edit article section .title {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem;
}
main.bookmark_edit article section label {
  display: flex;
  align-items: center;
  padding: .2rem;
}
main.bookmark_edit article section label + label {
  margin: 0;
}
main.bookmark_edit article section label span {
  display: inline-block;
}
main.bookmark_edit article section label .label_name {
  padding: 1rem;
  white-space: nowrap;
  width: 75px;
}
main.bookmark_edit article section label .input_wrap {
  flex-grow: 2;
}
main.bookmark_edit article section label .input_wrap input {
  padding: .5rem;
  background: #f2f2f2;
}
main.bookmark_edit article section label .input_wrap input:focus {
  box-shadow: 0 0 0 0;
}
main.bookmark_edit article section label .input_wrap input:invalid {
  border-color: #e2e8f0;
}
main.bookmark_edit article section label .input_wrap + .input_wrap {
  padding: .2rem 0;
}
main.bookmark_edit article section .footer {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
}
main.view {
  min-width: 300px;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
main.view::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 414px) {
  main.view {
    min-width: 600px;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }
  main.view::-webkit-scrollbar {
    display: none;
  }
}
main.view article {
  max-width: 550px;
  margin: 0 auto;
  background: #ffffff;
}
main.view article section {
  position: relative;
}
main.view article section .title {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 414px) {
  main.view article section .title {
    font-size: 1.2rem;
  }
}
main.view article section .title .menu {
  display: flex;
}
main.view article section .title .menu > * {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
main.view article section .title .menu > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.view article section .title .menu > * + * {
  margin-left: .5rem;
}
main.view article section .item_wrap {
  display: flex;
  align-items: center;
  padding: .2rem;
  border: solid 1px #f2f2f2;
  box-sizing: border-box;
  width: 100%;
}
main.view article section .item_wrap + .item_wrap {
  margin: 0;
}
main.view article section .item_wrap span {
  display: inline-block;
}
main.view article section .item_wrap .label_name {
  padding: 1rem;
  white-space: nowrap;
  box-sizing: border-box;
}
main.view article section .item_wrap .data_wrap {
  flex-grow: 2;
  display: flex;
  align-items: end;
  padding: 1rem;
  word-break: break-word;
  word-break: break-all;
  box-sizing: border-box;
}
main.view article section .item_wrap .data_wrap a {
  color: #16a5bc;
}
main.view article section .item_wrap .data_wrap + .data_wrap {
  padding: .2rem 0;
}
main.view article section .item_wrap .data_wrap img {
  width: 100%;
}
main.view article section .item_wrap .day {
  color: #16a5bc;
  font-size: 20px;
  text-align: right;
}
main.view article section .item_wrap .day .end_time {
  font-size: 10pt;
}
main.view article section .item_wrap .day + * {
  padding-left: 1rem;
}
main.view article section .images {
  display: flex;
  flex-wrap: wrap;
}
main.view article section .images .image {
  width: 20%;
  padding-top: 20%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  main.view article section .images .image {
    width: 33.33%;
    padding-top: 33.33%;
  }
}
main.view article section .images .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
main.view article section .footer {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
}
main#schedule {
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  main#schedule {
    padding: .5rem;
  }
}
main#schedule article {
  max-width: 600px;
  margin: 0 auto;
}
main#schedule .column {
  border-radius: 5px;
  background: #ffffff;
}
main#schedule .column .column_title {
  color: #16a5bc;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
main#schedule .column .column_body {
  display: flex;
  align-items: stretch;
}
main#schedule .column .column_body .day {
  padding: 1rem 0 1rem 1rem;
  color: #16a5bc;
  font-size: 20px;
  text-align: right;
}
main#schedule .column .column_body .day .end_time {
  font-size: 10pt;
}
main#schedule .column .column_body .day + * {
  padding-left: 1rem;
}
main#schedule .column .column_body .title {
  margin: 1rem;
  max-height: 2rem;
  overflow: hidden;
  flex-grow: 2;
}
main#schedule .column .column_body .image {
  position: relative;
  width: 120px;
}
main#schedule .column .column_body img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main#schedule .column + .column {
  margin-top: 1.5rem;
}
@media screen and (min-width: 414px) {
  main.edit {
    min-width: 300px;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }
  main.edit::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  main.edit {
    padding: 0;
  }
}
main.edit article {
  max-width: 550px;
  margin: 0 auto;
  background: #ffffff;
}
main.edit article section {
  position: relative;
}
main.edit article section .title {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 414px) {
  main.edit article section .title {
    font-size: 1.2rem;
  }
}
main.edit article section .title .menu {
  display: flex;
}
main.edit article section .title .menu > * {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
main.edit article section .title .menu > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.edit article section .title .menu > * + * {
  margin-left: .5rem;
}
@media screen and (max-width: 414px) {
  main.edit article section .title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 52px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 414px) {
  main.edit article section .body {
    padding-top: 52px;
    padding-bottom: 52px;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    overflow: auto;
    height: calc(90vh - 104px);
    box-sizing: border-box;
  }
  main.edit article section .body::-webkit-scrollbar {
    display: none;
  }
}
main.edit article section label {
  display: flex;
  align-items: center;
  padding: .2rem;
  border: solid 1px #f2f2f2;
}
main.edit article section label + label {
  margin: 0;
}
main.edit article section label span {
  display: inline-block;
}
main.edit article section label .label_name {
  padding: 1rem;
  white-space: nowrap;
  width: 75px;
}
main.edit article section label .input_wrap {
  flex-grow: 2;
  display: flex;
  align-items: end;
}
main.edit article section label .input_wrap input, main.edit article section label .input_wrap select, main.edit article section label .input_wrap textarea {
  padding: .5rem;
  background: #f2f2f2;
  box-sizing: border-box;
}
main.edit article section label .input_wrap input:focus, main.edit article section label .input_wrap select:focus, main.edit article section label .input_wrap textarea:focus {
  box-shadow: 0 0 0 0;
}
main.edit article section label .input_wrap input:invalid, main.edit article section label .input_wrap select:invalid, main.edit article section label .input_wrap textarea:invalid {
  border-color: #e2e8f0;
}
main.edit article section label .input_wrap + .input_wrap {
  padding: .2rem 0;
}
main.edit article section label .input_wrap img {
  width: 100%;
}
main.edit article section .footer {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
}
@media screen and (max-width: 414px) {
  main.edit article section .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 52px;
    box-sizing: border-box;
  }
}
main.edit article section [data-image] {
  position: relative;
  cursor: pointer;
}
main.edit article section [data-image]:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
main.edit article section [data-image]:hover:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f00d";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
main.edit article section [data-image] img {
  width: 100%;
}
main#checklist {
  padding: 2rem;
}
@media screen and (max-width: 1024px) {
  main#checklist {
    padding: .5rem;
  }
}
main#checklist article {
  max-width: 600px;
  margin: 0 auto;
}
main#checklist article section .menus {
  display: flex;
  justify-content: space-between;
}
main#checklist article section .menus .menu_wrap ul {
  display: flex;
  flex-wrap: wrap;
}
main#checklist article section .menus .menu_wrap ul li {
  padding: .5rem;
  border-radius: 20px;
  background: #ffffff;
  margin-right: .5rem;
  margin-bottom: .5rem;
  color: #16a5bc;
}
main#checklist article section .menus .menu_wrap ul li.open {
  background: #16a5bc;
  color: #ffffff;
}
main#checklist article section .menus .menu_wrap ul li:hover {
  opacity: .5;
}
main#checklist article section .menus .option a i {
  width: 50px;
  height: 50px;
  position: relative;
  font-size: 1.5rem;
  background: #ffffff;
  border-radius: 50%;
}
main#checklist article section .menus .option a i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main#checklist article section .body .check_card {
  background: #ffffff;
  border-radius: 5px;
}
main#checklist article section .body .check_card .page_name {
  font-size: 1.3rem;
  padding: .5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #16a5bc;
}
main#checklist article section .body .check_card .group > p {
  padding: 1rem;
  color: #16a5bc;
}
main#checklist article section .body .check_card .group .checklist ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main#checklist article section .body .check_card .group .checklist ul li label {
  padding: .8rem 1.5rem .8rem 4rem;
  flex-grow: 2;
  position: relative;
  cursor: pointer;
}
main#checklist article section .body .check_card .group .checklist ul li label:hover {
  background: rgba(22, 165, 188, 0.1);
}
main#checklist article section .body .check_card .group .checklist ul li label span {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
}
main#checklist article section .body .check_card .group .checklist ul li label b {
  top: auto;
}
main#checklist article section .body .check_card .group .checklist ul li a {
  padding: .5rem;
}
main#checklist article section .body .check_card .group + .group {
  margin-top: 2rem;
}
main#checkpage {
  padding: 2rem;
}
@media screen and (max-width: 414px) {
  main#checkpage {
    padding: .5rem;
  }
}
main#checkpage article {
  max-width: 600px;
  margin: 0 auto;
}
main#checkpage article section > p {
  margin-bottom: 1rem;
}
main#checkpage article section .content .page_card {
  overflow: hidden;
  border-radius: 5px;
}
main#checkpage article section .content .page_card > p a {
  display: block;
  background: #16a5bc;
  color: #ffffff;
  padding: 1.2rem 1rem;
}
main#checkpage article section .content .page_card ul li a {
  padding: 1.2rem 1rem;
  display: block;
  background: #ffffff;
}
main#checkpage article section .content .page_card + .page_card {
  margin-top: 1.5rem;
}
@media screen and (max-width: 414px) {
  main.checkedit {
    padding: 0;
  }
}
main.checkedit article {
  margin: 0 auto;
  background: #ffffff;
}
@media screen and (min-width: 414px) {
  main.checkedit article {
    min-width: 550px;
  }
}
main.checkedit article section {
  position: relative;
}
main.checkedit article section .title {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #f2f2f2;
}
main.checkedit article section .title .menu {
  display: flex;
}
main.checkedit article section .title .menu > * {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
main.checkedit article section .title .menu > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.checkedit article section .title .menu > * + * {
  margin-left: .5rem;
}
@media screen and (max-width: 414px) {
  main.checkedit article section .title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 52px;
    box-sizing: border-box;
  }
}
main.checkedit article section .tabs {
  display: flex;
  margin-bottom: .5rem;
}
main.checkedit article section .tabs .tab {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  color: #16a5bc;
  text-align: center;
  cursor: pointer;
}
main.checkedit article section .tabs .tab.open {
  border-bottom: 1px solid #16a5bc;
}
main.checkedit article section .body .content_wrap {
  display: none;
}
main.checkedit article section .body .content_wrap.open {
  display: block;
}
@media screen and (max-width: 414px) {
  main.checkedit article section .body {
    padding: 52px 0;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    overflow: auto;
    box-sizing: border-box;
  }
  main.checkedit article section .body::-webkit-scrollbar {
    display: none;
  }
}
main.checkedit article section .item_wrap {
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
}
main.checkedit article section .item_wrap.checkbox {
  padding: 2rem;
}
main.checkedit article section .item_wrap label {
  border: none;
}
main.checkedit article section label {
  display: flex;
  align-items: center;
  padding: .5rem;
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
}
@media screen and (max-width: 414px) {
  main.checkedit article section label {
    flex-direction: column;
  }
}
main.checkedit article section label + label {
  margin: 0;
}
main.checkedit article section label span {
  display: block;
}
@media screen and (max-width: 414px) {
  main.checkedit article section label > * {
    width: 100%;
    box-sizing: border-box;
  }
}
main.checkedit article section label .label_name {
  padding: 1rem;
  white-space: nowrap;
}
main.checkedit article section label .input_wrap {
  flex-grow: 2;
  display: flex;
  align-items: end;
}
main.checkedit article section label .input_wrap input, main.checkedit article section label .input_wrap select, main.checkedit article section label .input_wrap textarea {
  padding: .5rem;
  background: #f2f2f2;
  box-sizing: border-box;
}
main.checkedit article section label .input_wrap input:focus, main.checkedit article section label .input_wrap select:focus, main.checkedit article section label .input_wrap textarea:focus {
  box-shadow: 0 0 0 0;
}
main.checkedit article section label .input_wrap input:invalid, main.checkedit article section label .input_wrap select:invalid, main.checkedit article section label .input_wrap textarea:invalid {
  border-color: #e2e8f0;
}
main.checkedit article section label .input_wrap + .input_wrap {
  padding: .2rem 0;
}
main.checkedit article section label .input_wrap img {
  width: 100%;
}
main.checkedit article section .footer {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
}
@media screen and (max-width: 414px) {
  main.checkedit article section .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 52px;
    box-sizing: border-box;
  }
}
main.checkedit article section [data-image] {
  position: relative;
  cursor: pointer;
}
main.checkedit article section [data-image]:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
main.checkedit article section [data-image]:hover:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f00d";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
main.checkedit article section [data-image] img {
  width: 100%;
}
main#memos article section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
}
@media screen and (max-width: 414px) {
  main#memos article section {
    padding: .5rem;
  }
}
main#memos article section .memo {
  display: block;
  background: #ffffff;
  border-radius: 5px;
}
main#memos article section .memo .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1rem;
  border-bottom: 2px solid #f2f2f2;
}
main#memos article section .memo .header .date {
  font-size: 1.2rem;
  color: #b9b9b9;
}
main#memos article section .memo .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
main#memos article section .memo .content .image {
  width: 100px;
  height: 100px;
  margin-left: 20px;
  position: relative;
}
main#memos article section .memo .content .image .image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 1.5rem;
}
main#memos article section .memo .content .image .image_overlay i {
  margin-right: .2rem;
}
main#memos article section .memo .content .image img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}
main#memos article section .memo + .memo {
  margin-top: 1.5rem;
}
@media screen and (max-width: 414px) {
  main.memoedit {
    padding: 0;
  }
}
main.memoedit article {
  margin: 0 auto;
  background: #ffffff;
}
@media screen and (min-width: 414px) {
  main.memoedit article {
    min-width: 550px;
  }
}
main.memoedit article section {
  position: relative;
}
main.memoedit article section .title {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #f2f2f2;
}
main.memoedit article section .title .menu {
  display: flex;
}
main.memoedit article section .title .menu > * {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
main.memoedit article section .title .menu > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.memoedit article section .title .menu > * + * {
  margin-left: .5rem;
}
@media screen and (max-width: 414px) {
  main.memoedit article section .title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 52px;
    box-sizing: border-box;
    z-index: 5;
  }
}
main.memoedit article section .tabs {
  display: flex;
  margin-bottom: .5rem;
}
main.memoedit article section .tabs .tab {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  color: #16a5bc;
  text-align: center;
  cursor: pointer;
}
main.memoedit article section .tabs .tab.open {
  border-bottom: 1px solid #16a5bc;
}
main.memoedit article section .body .content_wrap {
  display: none;
}
main.memoedit article section .body .content_wrap.open {
  display: block;
}
main.memoedit article section .body .content_wrap .images {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
main.memoedit article section .body .content_wrap .images .image {
  position: relative;
  width: 33.33%;
  padding-top: 33.33%;
}
@media screen and (max-width: 414px) {
  main.memoedit article section .body .content_wrap .images .image {
    width: 50%;
    padding-top: 50%;
  }
}
main.memoedit article section .body .content_wrap .images .image i {
  padding: .5rem;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  z-index: 2;
}
main.memoedit article section .body .content_wrap .images .image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 414px) {
  main.memoedit article section .body {
    max-height: 90vh;
    padding: 52px 0;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    overflow: auto;
    box-sizing: border-box;
  }
  main.memoedit article section .body::-webkit-scrollbar {
    display: none;
  }
}
main.memoedit article section .item_wrap {
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
}
main.memoedit article section .item_wrap.checkbox {
  padding: 2rem;
}
main.memoedit article section .item_wrap label {
  border: none;
}
main.memoedit article section label {
  display: flex;
  align-items: center;
  padding: .5rem;
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
}
@media screen and (max-width: 414px) {
  main.memoedit article section label {
    flex-direction: column;
  }
}
main.memoedit article section label + label {
  margin: 0;
}
main.memoedit article section label span {
  display: block;
}
@media screen and (max-width: 414px) {
  main.memoedit article section label > * {
    width: 100%;
    box-sizing: border-box;
  }
}
main.memoedit article section label .label_name {
  padding: 1rem;
  white-space: nowrap;
}
main.memoedit article section label .input_wrap {
  flex-grow: 2;
  display: flex;
  align-items: end;
}
main.memoedit article section label .input_wrap input, main.memoedit article section label .input_wrap select, main.memoedit article section label .input_wrap textarea {
  padding: .5rem;
  background: #f2f2f2;
  box-sizing: border-box;
}
main.memoedit article section label .input_wrap input:focus, main.memoedit article section label .input_wrap select:focus, main.memoedit article section label .input_wrap textarea:focus {
  box-shadow: 0 0 0 0;
}
main.memoedit article section label .input_wrap input:invalid, main.memoedit article section label .input_wrap select:invalid, main.memoedit article section label .input_wrap textarea:invalid {
  border-color: #e2e8f0;
}
main.memoedit article section label .input_wrap + .input_wrap {
  padding: .2rem 0;
}
main.memoedit article section label .input_wrap img {
  width: 100%;
}
main.memoedit article section .footer {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
}
@media screen and (max-width: 414px) {
  main.memoedit article section .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 52px;
    box-sizing: border-box;
    z-index: 5;
  }
}
main.memoedit article section .footer .button, main.memoedit article section .footer button {
  white-space: nowrap;
}
main.memoedit article section [data-image] {
  position: relative;
  cursor: pointer;
}
main.memoedit article section [data-image]:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
main.memoedit article section [data-image]:hover:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f00d";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
main.memoedit article section [data-image] img {
  width: 100%;
}
main#scraps article section {
  padding: 1rem 1rem 0 0;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 414px) {
  main#scraps article section {
    padding: 1rem 1rem 0 0;
  }
}
main#scraps article section .scrap {
  display: inline-block;
  width: calc(20% - 1rem);
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 414px) {
  main#scraps article section .scrap {
    width: calc(50% - 1rem);
  }
}
main#scraps article section .scrap .thumbnail {
  display: flex;
  flex-wrap: wrap;
}
main#scraps article section .scrap .thumbnail .image {
  width: 50%;
  padding-top: 50%;
  position: relative;
}
main#scraps article section .scrap .thumbnail .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
main#scraps article section .scrap .noimage {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
main#scraps article section .scrap .noimage > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
main#scraps article section .scrap .noimage i {
  font-size: 3rem;
}
main#scraps article section .scrap .noimage i + p {
  margin-top: .5rem;
  white-space: nowrap;
  font-size: .7rem;
}
main#scraps article section .scrap .name {
  font-size: 1.1rem;
  padding: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
main#scrap_view .appbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #ffffff;
}
main#scrap_view .appbar > a {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
main#scrap_view .appbar + article section {
  padding-top: 50px;
  padding-left: 2px;
  display: flex;
  flex-wrap: wrap;
}
main#scrap_view .appbar + article section .image {
  width: calc(10% - 2px);
  padding-top: calc(10% - 2px);
  margin-right: 2px;
  margin-bottom: 2px;
  position: relative;
}
@media screen and (max-width: 414px) {
  main#scrap_view .appbar + article section .image {
    width: calc(25% - 2px);
    padding-top: calc(25% - 2px);
  }
}
main#scrap_view .appbar + article section .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.bookmark_view article {
  padding: 2rem;
}
main.bookmark_view article section {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
main.bookmark_view article section .title {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
}
main.bookmark_view article section .image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
main.bookmark_view article section .name {
  padding: 1rem;
}
main.bookmark_view article section .date {
  padding: 1rem;
}
main.bookmark_view article section .small {
  font-size: .8rem;
  margin-bottom: .5rem;
}
main#profile {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
main#profile article {
  padding: .5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}
@media screen and (min-width: 1024px) {
  main#profile article {
    padding: 2rem;
  }
}
main#profile article .container {
  box-sizing: border-box;
  width: 400px;
  background: #fff;
}
@media screen and (max-width: 414px) {
  main#profile article .container {
    width: 100%;
  }
}
main#profile article .container .header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  border-bottom: 2px solid #f2f2f2;
}
main#profile article .container .body .image_wrap {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
main#profile article .container .body .image_wrap img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}
main#profile article .container .body .alignment {
  padding: .5rem 1rem;
}
main#profile article .container .body .alignment > p {
  font-size: .8rem;
}
main#profile article .container .body .alignment .mail {
  padding: .3rem 0;
  display: flex;
  align-content: center;
}
main#profile article .container .body .alignment .mail i {
  font-size: 1.2rem;
}
main#profile article .container .body .alignment .mail span {
  margin-left: .5rem;
}
main#profile article .container .body .delete {
  display: block;
  width: 100%;
  padding: .5rem;
  box-sizing: border-box;
  text-align: center;
  margin-top: 1rem;
}

/****************************************
 	サイド								*
*****************************************/
/****************************************
 	フッター								*
*****************************************/
/****************************************
 	ログイン・ログアウト					*
*****************************************/
#login {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#login h3 {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  font-weight: bold;
}
#login .regist {
  font-size: .8rem;
  padding: 0 2rem;
}
#login .regist a {
  font-size: 1rem;
  color: #2196f3;
}
#login .content {
  background: #ffffff;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 10px 5px rgba(74, 74, 74, 0.55);
}
@media screen and (min-width: 1024px) {
  #login .content {
    min-width: 500px;
  }
}
#login .content > * {
  box-sizing: border-box;
}
#login .content .logo_container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#login .content .logo_container .logo_wrap {
  width: 100%;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  background: var(--main-rgb);
  color: #ffffff;
  position: relative;
  border-bottom-right-radius: 4rem;
}
#login .content .logo_container .logo_wrap .logo {
  padding: .5rem;
  font-size: 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  #login .content .logo_container .logo_wrap .logo {
    font-size: 3rem;
  }
}
@media screen and (max-width: 414px) {
  #login .content .logo_container .logo_wrap .logo {
    font-size: 4rem;
  }
}
#login .content .logo_container .logo_wrap:before, #login .content .logo_container .logo_wrap:after {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 100%;
  left: 0;
}
#login .content .logo_container .logo_wrap:before {
  background: var(--main-rgb);
}
#login .content .logo_container .logo_wrap:after {
  background: #ffffff;
  border-radius: 90px 0 0 0;
  -moz-border-radius: 90px 0 0 0;
  -webkit-border-radius: 90px 0 0 0;
}
#login .content .input_container {
  padding: 1rem 2rem;
}
#login .content .input_container > *:not(.alert) {
  padding: 1rem 0;
}
#login .content .input_container .alert {
  margin-bottom: 1rem;
}
#login .content .input_container .input-underline label {
  color: #454545;
  position: relative;
  padding-bottom: .1rem;
  width: 100%;
}
#login .content .input_container .input-underline label input[type=text],
#login .content .input_container .input-underline label input[type=password] {
  border: 1px solid;
  width: 100%;
  font-size: 1.2rem;
  background: transparent;
  padding: .8rem .5rem;
  box-sizing: border-box;
}
#login .content .input_container .input-underline label input[type=text] ~ .explanation,
#login .content .input_container .input-underline label input[type=password] ~ .explanation {
  cursor: text;
  position: absolute;
  transition: 0.5s all;
  background: #ffffff;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
#login .content .input_container .input-underline label input[type=text]:focus,
#login .content .input_container .input-underline label input[type=password]:focus {
  color: #2196f3;
  border: 2px solid;
}
#login .content .input_container .input-underline label input[type=text]:focus ~ i,
#login .content .input_container .input-underline label input[type=password]:focus ~ i {
  color: #2196f3;
}
#login .content .input_container .input-underline label input[type=text]:focus ~ .explanation,
#login .content .input_container .input-underline label input[type=password]:focus ~ .explanation {
  color: #2196f3;
  top: -0.3rem;
  font-size: 0.8rem;
  transform: none;
}
#login .content .input_container .input-underline label input[type=text]:valid ~ .explanation,
#login .content .input_container .input-underline label input[type=password]:valid ~ .explanation {
  top: -0.3rem;
  font-size: 0.8rem;
  transform: none;
}
#login .content .input_container .input-underline label input[type=text]:valid ~ .line,
#login .content .input_container .input-underline label input[type=password]:valid ~ .line {
  color: var(--sub-rgb);
  width: 100%;
}
#login .content .input_container .input-underline label input[type=text]:focus,
#login .content .input_container .input-underline label input[type=password]:focus {
  box-shadow: none;
}
#login .content .input_container .input-underline label input[type=text] .error,
#login .content .input_container .input-underline label input[type=password] .error {
  position: absolute;
}
#login .content .input_container .buttons {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#login .content .input_container .buttons > *:nth-child(n+2) {
  margin-top: 10px;
}
#login .content .input_container .buttons .button, #login .content .input_container .buttons button {
  width: 100%;
  position: relative;
  border: 2px solid #2196f3;
  background: #2196f3;
  overflow: hidden;
  transition: .5s all;
  padding: 1rem;
  color: #fff;
}
#login .content .input_container .buttons .button span, #login .content .input_container .buttons button span {
  position: relative;
}
#login .content input[type=text],
#login .content input[type=password] {
  border: none;
  outline: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  #login .content {
    width: 70%;
  }
}
@media screen and (max-width: 414px) {
  #login .content {
    width: 95%;
    display: block;
  }
  #login .content > * {
    width: 100%;
  }
}

/****************************************
 	ハンバーグメニュー						*
*****************************************/
.hamburger-button {
  padding: 1rem;
  box-sizing: border-box;
  height: 4rem;
  cursor: pointer;
  background: var(--main-rgb);
  color: #ffffff;
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger-button {
    display: block;
  }
}
.hamburger-button .wrap {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 100%;
}
.hamburger-button .wrap:before, .hamburger-button .wrap:after {
  content: '';
}
.hamburger-button .wrap:before, .hamburger-button .wrap:after, .hamburger-button .wrap span {
  transition: .5s all;
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #ffffff;
}
.hamburger-button .wrap:before {
  top: 0;
}
.hamburger-button .wrap span {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-button .wrap:after {
  bottom: 0;
}
.hamburger-button.open .wrap:before, .hamburger-button.open .wrap:after {
  width: 15px;
}
.hamburger-button.open .wrap:before {
  -webkit-transform: translateY(0.5rem) rotate(-45deg);
  transform: translateY(0.5rem) rotate(-45deg);
}
.hamburger-button.open .wrap:after {
  -webkit-transform: translateY(-0.5rem) rotate(45deg);
  transform: translateY(-0.5rem) rotate(45deg);
}

/****************************************
 	フォロワー情報一覧						*
*****************************************/
.followers {
  display: flex;
  justify-content: space-evenly;
  padding: 1rem;
}
.followers > * {
  background: #ffffff;
  padding: 2rem;
  flex-basis: 25%;
}
.followers .intelligence {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.followers .intelligence i {
  font-size: 4rem;
}
.followers .intelligence .quantity {
  text-align: right;
}
.followers .intelligence .quantity .count {
  font-size: 1.5rem;
}
@media screen and (max-width: 414px) {
  .followers {
    flex-wrap: wrap;
  }
  .followers > * {
    margin-top: .5rem;
    flex-basis: 70%;
  }
}

/****************************************
 	カード形								*
*****************************************/
.card {
  display: block;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 10px 5px rgba(74, 74, 74, 0.55);
}
.card.round {
  --radius-px: 10px;
  border-radius: var(--radius-px);
}
.card.round > *:first-child {
  border-top-left-radius: var(--radius-px);
  border-top-right-radius: var(--radius-px);
}
.card.round > *:first-child .icons, .card.round > *:first-child i {
  border-top-right-radius: var(--radius-px);
}
.card.round > *:last-child {
  border-bottom-left-radius: var(--radius-px);
  border-bottom-right-radius: var(--radius-px);
}
.card .card_title {
  padding: 1rem;
  position: relative;
  background: var(--main-rgb);
  display: flex;
}
.card .card_title h1 {
  color: var(--font-rgb);
  font-size: 1.2rem;
}
@media screen and (max-width: 414px) {
  .card .card_title h1 {
    text-align: left;
  }
}
.card .card_title > i,
.card .card_title .icons {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  padding: 1rem;
  cursor: pointer;
  color: #fff;
}
.card .card_title > i:hover,
.card .card_title .icons:hover {
  background: var(--main-dark-rgb);
}
.card .card_title .icons:after {
  font-family: 'fontawesome';
  content: '\f0dd';
}
.card .card_title .menu-list {
  right: 0;
}
.card .card_body {
  overflow-x: auto;
}
.card .card_body > .wrap {
  padding: 1rem;
}
.card .card_body .input_container {
  padding: 1rem;
}
@media screen and (max-width: 414px) {
  .card .card_body .input_container {
    padding: 0;
    margin-bottom: 1rem;
  }
}
.card .card_body .input_container label {
  display: block;
  margin-bottom: .3rem;
}
.card .card_body .input_container label.required:before {
  content: '必須';
  padding: .3rem .6rem;
  background: #da4f49;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  margin-right: 7px;
}
.card .card_body .input_container label.option:before {
  content: '任意';
  padding: .3rem .6rem;
  background: #e0e0e0;
  display: inline-block;
  border-radius: 5px;
  margin-right: 7px;
}
@media screen and (max-width: 414px) {
  .card .card_body .input_container input[type=text] {
    width: 100%;
    box-sizing: border-box;
  }
}
.card .card_body .account_view {
  padding: 1rem;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .card .card_body .account_view {
    justify-content: center;
  }
}
@media screen and (max-width: 414px) {
  .card .card_body .account_view {
    flex-direction: column;
    align-items: center;
  }
}
.card .card_body .account_view .icon {
  width: 125px;
  height: 125px;
  border-radius: 50%;
}
.card .card_body .account_view .content {
  padding: 1rem;
}
.card .card_body .account_view .content p {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.card .card_body.talk_list .talk {
  padding: 0.5rem 0.8rem;
  box-sizing: border-box;
  position: relative;
  padding-right: 1.5rem;
}
.card .card_body.talk_list .talk:hover {
  background: rgba(137, 137, 137, 0.3);
}
.card .card_body.talk_list .talk.no_read:after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #5bb75b;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.card .card_body.talk_list .talk .wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.card .card_body.talk_list .talk .wrap .content {
  align-self: stretch;
  width: 100%;
  overflow: hidden;
  padding: 0 .5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.card .card_body.talk_list .talk .wrap .content .receive_talk {
  padding: .2rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .8rem;
}
.card .card_body.talk_list .icon {
  width: 50px;
  height: 50px;
  font-size: 50px;
  border-radius: 50%;
  background: #fff;
}
.card .card_body.profilelist .account {
  display: flex;
  align-items: center;
  color: #000;
  padding: .5rem;
}
.card .card_body.profilelist .account .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.card .card_body.profilelist .account p {
  margin-left: 1rem;
}
.card .card_body.profilelist .account:hover {
  background: rgba(137, 137, 137, 0.3);
}
.card .button_container {
  display: flex;
  padding: 1rem;
}
@media screen and (max-width: 414px) {
  .card .button_container {
    flex-direction: column;
  }
}
.card .button_container.center {
  justify-content: center;
}
.card .button_container button, .card .button_container .button {
  padding: .8rem 1.5rem;
}
.card .button_container button:not(:first-child), .card .button_container .button:not(:first-child) {
  margin-left: 1rem;
}
@media screen and (max-width: 414px) {
  .card .button_container button:not(:first-child), .card .button_container .button:not(:first-child) {
    margin-left: 0;
    margin-top: .5rem;
  }
}

.profileicon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 50px;
}
@media screen and (max-width: 414px) {
  .profileicon {
    width: 35px;
    height: 35px;
    font-size: 35px;
  }
}

/****************************************
 	リスト表示							*
*****************************************/
#list .search_result_bar,
.list .search_result_bar {
  padding: .5rem;
  display: flex;
  white-space: nowrap;
  align-items: center;
  background: var(--sub-rgba3);
}
#list .search_result_bar ul,
.list .search_result_bar ul {
  flex-grow: 2;
  overflow: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  scroll-snap-type: x proximity;
}
#list .search_result_bar ul::-webkit-scrollbar,
.list .search_result_bar ul::-webkit-scrollbar {
  display: none;
}
#list .search_result_bar ul li,
.list .search_result_bar ul li {
  display: inline-block;
  scroll-snap-align: start;
}
#list .search_result_bar > .clear,
.list .search_result_bar > .clear {
  padding: 0 .5rem;
}
#list table,
.list table {
  width: 100%;
  border-collapse: collapse;
}
#list table caption,
.list table caption {
  color: #ffffff;
  background: var(--main-rgb);
  padding: .5rem;
}
#list table thead tr th a,
.list table thead tr th a {
  padding: 1rem .8rem;
  display: block;
}
#list table thead tr th a:hover,
.list table thead tr th a:hover {
  color: #fff;
  background: var(--sub-rgb);
}
#list table thead tr th .sort:after,
.list table thead tr th .sort:after {
  font-weight: 900;
  font-family: "fontawesome";
  margin-left: 5px;
}
#list table thead tr th .sort.asc:after,
.list table thead tr th .sort.asc:after {
  content: '\f15d';
}
#list table thead tr th .sort.asc:hover:after,
.list table thead tr th .sort.asc:hover:after {
  content: '\f15e';
}
#list table thead tr th .sort.desc:after,
.list table thead tr th .sort.desc:after {
  content: '\f15e';
}
#list table thead tr th .sort.desc:hover:after,
.list table thead tr th .sort.desc:hover:after {
  content: '\f15d';
}
#list table tbody tr,
.list table tbody tr {
  border-top: 1px solid rgba(137, 137, 137, 0.2);
}
#list table tbody tr:last-child,
.list table tbody tr:last-child {
  border-bottom: 1px solid rgba(137, 137, 137, 0.2);
}
#list table tbody tr:nth-child(even),
.list table tbody tr:nth-child(even) {
  background: rgba(137, 137, 137, 0.1);
}
#list table tbody tr:hover,
.list table tbody tr:hover {
  background: rgba(137, 137, 137, 0.3);
}
#list table tbody tr td,
.list table tbody tr td {
  padding: .8rem;
}
#list table tbody tr td:not(.check):not(.nodata),
.list table tbody tr td:not(.check):not(.nodata) {
  cursor: pointer;
}
#list table tfoot tr,
.list table tfoot tr {
  background: var(--sub-rgb);
  color: var(--font-rgb);
}
#list table tfoot tr td,
.list table tfoot tr td {
  border-right: 1px solid var(--font-rgb);
  padding: 1rem;
}
#list table tfoot tr td:last-child,
.list table tfoot tr td:last-child {
  border-right: 0;
}
#list table td, #list table th,
.list table td,
.list table th {
  white-space: nowrap;
}
@media screen and (max-width: 414px) {
  #list table,
  .list table {
    font-size: .9rem;
  }
}

.nodata {
  padding: 2rem;
  text-align: center;
  font-size: 2rem;
}

/****************************************
 	詳細画面								*
*****************************************/
#view table,
.view table {
  table-layout: fixed;
  border-collapse: collapse;
}
#view table tbody tr,
.view table tbody tr {
  border-bottom: 1px solid;
  border-color: #f2f2f2;
}
#view table tbody tr:first-child,
.view table tbody tr:first-child {
  border-top: 1px solid;
}
#view table tbody tr th,
.view table tbody tr th {
  white-space: nowrap;
}
#view table tbody tr td,
.view table tbody tr td {
  width: 100%;
}
#view table tbody tr th, #view table tbody tr td,
.view table tbody tr th,
.view table tbody tr td {
  padding: 1rem;
}
@media screen and (min-width: 414px) {
  #view table,
  .view table {
    word-wrap: break-word;
    word-break: break-word;
  }
}
@media screen and (max-width: 414px) {
  #view table,
  .view table {
    width: 100%;
  }
  #view table tbody tr th,
  .view table tbody tr th {
    position: sticky;
    left: 0;
  }
  #view table tbody tr th, #view table tbody tr td,
  .view table tbody tr th,
  .view table tbody tr td {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: .8rem;
  }
  #view table tbody tr:last-child th,
  .view table tbody tr:last-child th {
    border-bottom-left-radius: 10px;
  }
}
@media screen and (max-width: 414px) {
  #view .column table,
  .view .column table {
    word-break: break-word;
    word-wrap: break-word;
  }
  #view .column table tbody tr th, #view .column table tbody tr td,
  .view .column table tbody tr th,
  .view .column table tbody tr td {
    display: block;
    box-sizing: border-box;
  }
  #view .column table tbody tr:last-child th,
  .view .column table tbody tr:last-child th {
    border-radius: 0;
  }
}

@media screen and (max-width: 414px) {
  .round #view:not(.column) table tbody tr:last-child th {
    border-bottom-left-radius: 10px;
  }
}
/****************************************
 	編集画面								*
*****************************************/
#edit table,
.edit table {
  table-layout: fixed;
  border-collapse: collapse;
}
#edit table thead tr th,
.edit table thead tr th {
  background: var(--sub-rgb);
  border: 1px solid var(--font-rgb);
  color: var(--font-rgb);
  padding: 1rem;
}
#edit table tbody tr,
.edit table tbody tr {
  border-bottom: 1px solid;
  border-color: var(--sub-rgb);
}
#edit table tbody tr:first-child,
.edit table tbody tr:first-child {
  border-top: 1px solid;
}
#edit table tbody tr th,
.edit table tbody tr th {
  white-space: nowrap;
  background: var(--sub-rgb);
  color: var(--font-rgb);
}
#edit table tbody tr th label,
.edit table tbody tr th label {
  display: block;
}
#edit table tbody tr th:after,
.edit table tbody tr th:after {
  display: inline-block;
  padding: .3rem .5rem;
  font-size: .7rem;
  color: var(--font-rgb);
  border-radius: 10%;
  margin-left: .5rem;
}
#edit table tbody tr td,
.edit table tbody tr td {
  width: 100%;
}
#edit table tbody tr td .flex > *:not(.separator),
.edit table tbody tr td .flex > *:not(.separator) {
  width: 100%;
}
#edit table tbody tr th, #edit table tbody tr td,
.edit table tbody tr th,
.edit table tbody tr td {
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
}
#edit table tbody tr.option td input[type='text']:first-of-type,
#edit table tbody tr.option td input[type='url']:first-of-type,
#edit table tbody tr.option td input[type='tel']:first-of-type,
#edit table tbody tr.option td input[type='email']:first-of-type,
#edit table tbody tr.option td input[type='number']:first-of-type,
#edit table tbody tr.option td input[type='password']:first-of-type,
#edit table tbody tr.option td input[type='file']:first-of-type,
#edit table tbody tr.option td textarea:first-of-type,
#edit table tbody tr.option td select:first-of-type,
.edit table tbody tr.option td input[type='text']:first-of-type,
.edit table tbody tr.option td input[type='url']:first-of-type,
.edit table tbody tr.option td input[type='tel']:first-of-type,
.edit table tbody tr.option td input[type='email']:first-of-type,
.edit table tbody tr.option td input[type='number']:first-of-type,
.edit table tbody tr.option td input[type='password']:first-of-type,
.edit table tbody tr.option td input[type='file']:first-of-type,
.edit table tbody tr.option td textarea:first-of-type,
.edit table tbody tr.option td select:first-of-type {
  border-left: 0.5rem solid #e0e0e0;
}
#edit table tbody tr.required td input[type='text']:first-of-type,
#edit table tbody tr.required td input[type='url']:first-of-type,
#edit table tbody tr.required td input[type='tel']:first-of-type,
#edit table tbody tr.required td input[type='email']:first-of-type,
#edit table tbody tr.required td input[type='number']:first-of-type,
#edit table tbody tr.required td input[type='password']:first-of-type,
#edit table tbody tr.required td input[type='file']:first-of-type,
#edit table tbody tr.required td textarea:first-of-type,
#edit table tbody tr.required td select:first-of-type,
.edit table tbody tr.required td input[type='text']:first-of-type,
.edit table tbody tr.required td input[type='url']:first-of-type,
.edit table tbody tr.required td input[type='tel']:first-of-type,
.edit table tbody tr.required td input[type='email']:first-of-type,
.edit table tbody tr.required td input[type='number']:first-of-type,
.edit table tbody tr.required td input[type='password']:first-of-type,
.edit table tbody tr.required td input[type='file']:first-of-type,
.edit table tbody tr.required td textarea:first-of-type,
.edit table tbody tr.required td select:first-of-type {
  border-left: 0.5rem solid #da4f49;
}
@media screen and (min-width: 414px) {
  #edit table,
  .edit table {
    word-wrap: break-word;
    word-break: break-word;
  }
}
@media screen and (max-width: 414px) {
  #edit table,
  .edit table {
    width: 100%;
  }
  #edit table tbody tr th,
  .edit table tbody tr th {
    position: sticky;
    left: 0;
  }
  #edit table tbody tr td,
  .edit table tbody tr td {
    padding-left: .8rem;
    padding-right: .5rem;
    font-size: .8rem;
  }
  #edit table tbody tr:last-child th,
  .edit table tbody tr:last-child th {
    border-bottom-left-radius: 10px;
  }
}
@media screen and (max-width: 414px) {
  #edit .column table,
  .edit .column table {
    word-break: break-word;
    word-wrap: break-word;
  }
  #edit .column table tbody tr th, #edit .column table tbody tr td,
  .edit .column table tbody tr th,
  .edit .column table tbody tr td {
    display: block;
  }
  #edit .column table tbody tr:last-child th,
  .edit .column table tbody tr:last-child th {
    border-radius: 0;
  }
}

@media screen and (max-width: 414px) {
  .round #view:not(.column) table tbody tr:last-child th {
    border-bottom-left-radius: 10px;
  }
}
/****************************************
 	検索画面								*
*****************************************/
/****************************************
 	トーク画面							*
*****************************************/
.card_body .chat {
  background: var(--sub-rgba3);
}

.chat {
  height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  position: relative;
}
.chat article {
  overflow-y: scroll;
  flex-grow: 2;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.chat article::-webkit-scrollbar {
  display: none;
}
.chat article section {
  position: relative;
}
.chat article section .talk {
  display: flex;
  padding: .5rem 0;
}
.chat article section .talk .icon {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.chat article section .talk .icon + * {
  margin-left: 1rem;
}
.chat article section .talk i.icon {
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.chat article section .talk i.icon.none {
  background: transparent;
}
.chat article section .talk i.icon.none ~ .message:before {
  content: none;
}
.chat article section .talk i.icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chat article section .talk .message,
.chat article section .talk .image,
.chat article section .talk .video {
  border-radius: 10px;
}
.chat article section .talk .imege,
.chat article section .talk .video {
  overflow: hidden;
}
.chat article section .talk .image > * {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.chat article section .talk .image img {
  width: 220px;
}
@media screen and (max-width: 1024px) {
  .chat article section .talk .image img {
    max-width: 200px;
  }
}
@media screen and (max-width: 414px) {
  .chat article section .talk .image img {
    max-width: 150px;
  }
}
.chat article section .talk .sticker > * {
  display: block;
}
.chat article section .talk .sticker img {
  max-width: 220px;
}
@media screen and (max-width: 1024px) {
  .chat article section .talk .sticker img {
    max-width: 200px;
  }
}
@media screen and (max-width: 414px) {
  .chat article section .talk .sticker img {
    max-width: 150px;
  }
}
.chat article section .talk .video {
  background: #000000;
}
.chat article section .talk .video > * {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.chat article section .talk .video a {
  position: relative;
}
.chat article section .talk .video canvas {
  display: none;
  border-radius: 10px;
}
.chat article section .talk .video video {
  width: 300px;
}
@media screen and (max-width: 414px) {
  .chat article section .talk .video video {
    max-width: 200px;
  }
}
.chat article section .talk .message {
  max-width: 70%;
  position: relative;
  background: #fff;
  padding: .5rem 1rem;
  box-sizing: border-box;
  word-break: break-all;
}
.chat article section .talk .message .emoji {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: bottom;
}
.chat article section .talk .message:before {
  content: '';
  position: absolute;
  top: 0.75rem;
  right: 100%;
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-right-color: #fff;
  border-left: 0;
  border-top: 0;
  margin-left: 0.375rem;
}
.chat article section .talk.send {
  justify-content: flex-end;
}
.chat article section .talk.send .message {
  background: #6fe56f;
  color: #000000;
}
.chat article section .talk.send .message:before {
  left: auto;
  right: 0;
  border: 0.5rem solid transparent;
  border-left-color: #6fe56f;
  border-right: 0;
  border-top: 0;
  margin-right: -0.375rem;
}
.chat .talk_input_area {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .chat .talk_input_area {
    z-index: 10;
  }
}
.chat .talk_input_area .content_wrap {
  position: relative;
  z-index: 1;
}
.chat .talk_input_area .content_wrap .option_bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #f3f3f3;
}
@media screen and (min-width: 1024px) {
  .chat .talk_input_area .content_wrap .option_bar {
    padding: 0 .5rem;
  }
}
.chat .talk_input_area .content_wrap .option_bar > * > *:not(textarea) {
  cursor: pointer;
}
.chat .talk_input_area .content_wrap .option_bar .left {
  display: flex;
}
.chat .talk_input_area .content_wrap .option_bar .left > * {
  padding: .5rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .chat .talk_input_area .content_wrap .option_bar .left > * {
    font-size: 1.5rem;
  }
}
.chat .talk_input_area .content_wrap .option_bar .center {
  flex-grow: 2;
  align-self: center;
}
@media screen and (min-width: 414px) {
  .chat .talk_input_area .content_wrap .option_bar .center {
    display: none;
  }
}
.chat .talk_input_area .content_wrap .option_bar .center .textarea {
  min-height: 2rem;
  padding: .3rem;
  box-sizing: border-box;
}
.chat .talk_input_area .content_wrap .option_bar .right {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .chat .talk_input_area .content_wrap .option_bar .right [data-type] {
    display: none;
  }
}
.chat .talk_input_area .content_wrap .option_bar .right > * {
  padding: .5rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .chat .talk_input_area .content_wrap .option_bar .right > * {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 414px) {
  .chat .talk_input_area .content_wrap > * {
    display: none;
  }
}
.chat .talk_input_area .content_wrap .textarea {
  width: 100%;
  border-radius: 0;
  padding: .5rem;
  resize: none;
  line-height: 1.2rem;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.chat .talk_input_area .content_wrap .textarea::-webkit-scrollbar {
  display: none;
}
.chat .talk_input_area .content_wrap .textarea:focus {
  box-shadow: 0 0;
}
.chat .talk_input_area .option_wrap {
  position: absolute;
  transition: .5s top;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.chat .talk_input_area .option_wrap .content .bar {
  background: #f3f3f3;
}
.chat .talk_input_area .option_wrap .content .bar.icons {
  display: flex;
  align-items: center;
}
.chat .talk_input_area .option_wrap .content .bar.title {
  padding: 1rem;
}
.chat .talk_input_area .option_wrap .content .bar .switch {
  padding: 0 .3rem;
}
.chat .talk_input_area .option_wrap .content .bar .switch label input[type="checkbox"] + span {
  --swich_width: 40px;
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch) {
  flex-grow: 2;
  display: none;
  border-bottom: 1px solid #f3f3f3;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch)::-webkit-scrollbar {
  display: none;
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch).open {
  display: flex;
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch) .select_package {
  min-width: 45px;
  width: 45px;
  height: 35px;
  cursor: pointer;
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch) .select_package.select {
  background: #fff;
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch) .select_package:hover {
  background: #fff;
}
.chat .talk_input_area .option_wrap .content .bar > *:not(.switch) .select_package .select_icon {
  width: 100%;
  height: 100%;
}
.chat .talk_input_area .option_wrap .content > [class*="content"] {
  height: 300px;
  padding: 1rem;
  overflow-x: auto;
  display: none;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.chat .talk_input_area .option_wrap .content > [class*="content"]::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 414px) {
  .chat .talk_input_area .option_wrap .content > [class*="content"] {
    height: 200px;
  }
}
.chat .talk_input_area .option_wrap .content > [class*="content"].open {
  display: block;
}
.chat .talk_input_area .option_wrap .content .sticker_content .package {
  display: none;
}
.chat .talk_input_area .option_wrap .content .sticker_content .package.open {
  display: block;
}
.chat .talk_input_area .option_wrap .content .sticker_content .package .sticker_wrap {
  cursor: pointer;
  width: 8%;
  height: 100px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .chat .talk_input_area .option_wrap .content .sticker_content .package .sticker_wrap {
    width: 10%;
  }
}
@media screen and (max-width: 414px) {
  .chat .talk_input_area .option_wrap .content .sticker_content .package .sticker_wrap {
    width: 20%;
  }
}
.chat .talk_input_area .option_wrap .content .sticker_content .package .sticker_wrap:hover {
  background: #d5d5d5;
}
.chat .talk_input_area .option_wrap .content .sticker_content .package .sticker_wrap [data-type] {
  width: 100%;
  height: 100%;
}
.chat .talk_input_area .option_wrap .content .emoji_content .package {
  display: none;
}
.chat .talk_input_area .option_wrap .content .emoji_content .package.open {
  display: block;
}
.chat .talk_input_area .option_wrap .content .emoji_content .package .emoji_wrap {
  --emoji-size: 40px;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
  width: var(--emoji-size);
  height: var(--emoji-size);
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .chat .talk_input_area .option_wrap .content .emoji_content .package .emoji_wrap {
    --emoji-size: 45px;
  }
}
@media screen and (max-width: 414px) {
  .chat .talk_input_area .option_wrap .content .emoji_content .package .emoji_wrap {
    --emoji-size: 50px;
  }
}
.chat .talk_input_area .option_wrap .content .emoji_content .package .emoji_wrap:hover {
  background: #d5d5d5;
}
.chat .talk_input_area .option_wrap .content .emoji_content .package .emoji_wrap [data-type] {
  width: 100%;
  height: 100%;
}
.chat .talk_input_area .option_wrap .content .fixed_form_content .fixed_form_wrap {
  padding: .3rem;
  display: inline-block;
}
.chat .talk_input_area textarea[name="message"] {
  display: none;
}

/****************************************
 	カレンダー							*
*****************************************/
#calendar .month {
  text-align: center;
  background: var(--main-rgb);
  color: var(--font-rgb);
  width: 100%;
  position: relative;
}
#calendar .month p {
  font-size: 2rem;
}
#calendar .month .month_select {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98%;
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 414px) {
  #calendar .month .month_select {
    width: 95%;
  }
}
#calendar .month .month_select .prev, #calendar .month .month_select .next {
  color: var(--main-rgb);
  font-family: 'fontawesome';
  font-weight: 900;
  padding: .6rem .8rem;
  background: var(--font-rgb);
  border-radius: 50%;
}
#calendar .month .month_select .prev:before {
  content: "\f104";
}
#calendar .month .month_select .next:before {
  content: "\f105";
}
#calendar table {
  width: 100%;
  background: #ffffff;
  height: 50vh;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 2px solid #ffffff;
}
@media screen and (max-width: 414px) {
  #calendar table {
    height: 50vh;
  }
}
#calendar table thead tr {
  background: var(--main-rgb);
  color: var(--font-rgb);
}
#calendar table thead tr td {
  padding: 1rem 0;
  text-align: center;
}
#calendar table tbody tr td {
  border: 1px solid rgba(137, 137, 137, 0.3);
}
#calendar table tbody tr td.sat {
  background: rgba(73, 175, 205, 0.1);
}
#calendar table tbody tr td.sat a {
  color: #49afcd;
}
#calendar table tbody tr td.sun {
  background: rgba(218, 79, 73, 0.1);
}
#calendar table tbody tr td.sun a {
  color: #da4f49;
}
#calendar table tbody tr td > * {
  height: 100%;
  color: #898989;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 414px) {
  #calendar table tbody tr td > * {
    padding: .2rem;
  }
}
#calendar table tbody tr td > *:hover {
  background: rgba(54, 54, 54, 0.1);
}
#calendar table tbody tr td > * > * {
  padding: .2rem;
}
#calendar table tbody tr td > * .day_wrap {
  text-align: center;
}
#calendar table tbody tr td > * .day_wrap .day {
  padding: .5rem;
  display: inline-block;
  border-radius: 50%;
}
@media screen and (max-width: 414px) {
  #calendar table tbody tr td > * .day_wrap .day {
    padding: .3rem;
  }
}
#calendar table tbody tr td > * .day_wrap .day.today {
  width: 1rem;
  height: 1rem;
  background: #da4f49;
  color: #fff;
}
#calendar table tbody tr td > * .booking_wrap span {
  display: block;
  padding: .3rem;
  border-radius: 5px;
  color: transparent;
}
#calendar table tbody tr td > * .booking_wrap .booking {
  color: #ffffff;
  background: var(--sub-rgb);
  text-align: center;
  max-width: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #calendar table tbody tr td > * .booking_wrap .booking {
    font-size: 0;
  }
}
#calendar table tbody tr td:first-child {
  border-left: none;
}
#calendar table tbody tr td:last-child {
  border-right: none;
}

/****************************************
 	ページネーション						*
*****************************************/
.pagination {
  display: flex;
  padding: 1rem;
}
.pagination.center {
  justify-content: center;
}
.pagination .page-item {
  margin: 0 .2rem;
}
.pagination .page-item .page-link {
  padding: .5rem;
  color: var(--main-rgb);
  border: 1px solid var(--main-rgb);
  border-radius: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  text-align: center;
}
.pagination .page-item.active a, .pagination .page-item:hover a {
  background: var(--main-rgb);
  color: #ffffff;
}

/****************************************
 	モーダル								*
*****************************************/
.overlay {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
#modal .modal_lay {
  background: rgba(0, 0, 0, 0.8);
  animation: fadeIn .5s ease 0s 1 normal;
  z-index: 98;
}
#modal .modal_content {
  max-width: 80vw;
  max-height: 80vh;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  position: relative;
  z-index: 99;
}
#modal .modal_content::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 414px) {
  #modal .modal_content {
    width: 90vw;
    max-height: 90vh;
  }
}
#modal .modal_content .delete {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  border-radius: 50%;
  background: #fff;
  font-size: 2rem;
  cursor: pointer;
}
#modal .modal_content .delete:before {
  font-family: 'fontawesome';
  content: '\f057';
}

@keyframes fadeIn {
  /*animation-nameで設定した値を書く*/
  0% {
    opacity: 0;
  }
  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時は不透明度100%*/
}
/****************************************
 	パンクず							*
*****************************************/
.breadcrumb {
  background: var(--main-rgb);
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li a {
  padding: .5rem;
  color: var(--font-rgb);
  display: block;
}
.breadcrumb ul li a i {
  padding-right: .5rem;
}

/****************************************
 	debug用								*
*****************************************/
.cake-sql-log th, .cake-sql-log td {
  padding: 1rem;
  border: 1px solid #7d7d7d;
}
.cake-sql-log thead th {
  background: var(--main-rgb);
  color: var(--font-rgb);
}
.cake-sql-log tbody tr td:not(:nth-child(2)) {
  background: var(--main-rgb);
  color: var(--font-rgb);
}

/****************************************
 	共通クラス							*
*****************************************/
.float_button {
  position: fixed;
  right: 0;
  bottom: 2rem;
  padding: .5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  background: #ffffff;
  box-shadow: -1px 1px 6px -2px #c7c7c7;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  color: #16a5bc;
}
.float_button i {
  font-size: 2rem;
}
.float_button i + span {
  margin-left: .5rem;
}
@media screen and (max-width: 414px) {
  .float_button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-radius: 50%;
    padding: 1rem;
  }
  .float_button span {
    display: none;
  }
}

.menu-list[data-menushow] {
  position: absolute;
  top: 80%;
  visibility: hidden;
  transition: .1s all;
  opacity: 0;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}
.menu-list[data-menushow].open {
  top: 100%;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.menu-list[data-menushow] li > * {
  padding: 1rem;
  display: flex;
  cursor: pointer;
  font-size: 1.1rem;
}
.menu-list[data-menushow] li > * i {
  margin-right: .3rem;
}
.menu-list[data-menushow] .overlay + * {
  position: relative;
  z-index: 2;
}

.primary {
  color: #006dcc;
}

.success {
  color: #5bb75b;
}

.info {
  color: #49afcd;
}

.warning {
  color: #faa732;
}

.danger {
  color: #da4f49;
}

.inverse {
  color: #363636;
}

.clear {
  color: #e0e0e0;
}

.white {
  color: #fff;
}

.bg_primary {
  background: #006dcc;
  color: #fff;
}
.bg_primary.hover:hover {
  background: #005299;
}

.bg_success {
  background: #5bb75b;
  color: #fff;
}
.bg_success.hover:hover {
  background: #449b44;
}

.bg_info {
  background: #49afcd;
  color: #fff;
}
.bg_info.hover:hover {
  background: #3195b2;
}

.bg_warning {
  background: #faa732;
  color: #000;
}
.bg_warning.hover:hover {
  background: #f39106;
}

.bg_danger {
  background: #da4f49;
  color: #fff;
}
.bg_danger.hover:hover {
  background: #c72f29;
}

.bg_inverse {
  background: #363636;
  color: #fff;
}
.bg_inverse.hover:hover {
  background: #1d1d1d;
}

.bg_clear {
  background: #e0e0e0;
  color: #000;
}
.bg_clear.hover:hover {
  background: #c7c7c7;
}

.bg_white {
  background: #fff;
  color: #000;
}
.bg_white.hover:hover {
  background: #e6e6e6;
}

.badge {
  padding: .5rem;
  font-size: .7rem;
  border-radius: 5px;
}
.badge.primary {
  background: #006dcc;
  color: #fff;
}
.badge.success {
  background: #5bb75b;
  color: #fff;
}
.badge.info {
  background: #49afcd;
  color: #fff;
}
.badge.warning {
  background: #faa732;
  color: #000;
}
.badge.danger {
  background: #da4f49;
  color: #fff;
}
.badge.inverse {
  background: #363636;
  color: #fff;
}
.badge.clear {
  background: #e0e0e0;
  color: #000;
}
.badge.white {
  background: #fff;
  color: #000;
}
.badge * .badge {
  margin-left: .5rem;
}

button, .button {
  display: inline-block;
  font-size: 1rem;
  padding: .5rem .7rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #898989;
  color: #fff;
  text-align: center;
}
button:focus, .button:focus {
  outline: 0;
}
button:hover, .button:hover {
  background: #636363;
}

button.primary, .button.primary {
  background: #006dcc;
  color: #fff;
}
button.primary:hover, .button.primary:hover {
  background: #005299;
}

button.success, .button.success {
  background: #5bb75b;
  color: #fff;
}
button.success:hover, .button.success:hover {
  background: #449b44;
}

button.info, .button.info {
  background: #49afcd;
  color: #fff;
}
button.info:hover, .button.info:hover {
  background: #3195b2;
}

button.warning, .button.warning {
  background: #faa732;
  color: #000;
}
button.warning:hover, .button.warning:hover {
  background: #f39106;
}

button.danger, .button.danger {
  background: #da4f49;
  color: #fff;
}
button.danger:hover, .button.danger:hover {
  background: #c72f29;
}

button.inverse, .button.inverse {
  background: #363636;
  color: #fff;
}
button.inverse:hover, .button.inverse:hover {
  background: #1d1d1d;
}

button.clear, .button.clear {
  background: #e0e0e0;
  color: #000;
}
button.clear:hover, .button.clear:hover {
  background: #c7c7c7;
}

button.white, .button.white {
  background: #fff;
  color: #000;
}
button.white:hover, .button.white:hover {
  background: #e6e6e6;
}

.w100 {
  width: 100px !important;
}

.w10rem {
  width: 10rem !important;
}

.w110 {
  width: 110px !important;
}

.w11rem {
  width: 11rem !important;
}

.w120 {
  width: 120px !important;
}

.w12rem {
  width: 12rem !important;
}

.w130 {
  width: 130px !important;
}

.w13rem {
  width: 13rem !important;
}

.w140 {
  width: 140px !important;
}

.w14rem {
  width: 14rem !important;
}

.w150 {
  width: 150px !important;
}

.w15rem {
  width: 15rem !important;
}

.w160 {
  width: 160px !important;
}

.w16rem {
  width: 16rem !important;
}

.w170 {
  width: 170px !important;
}

.w17rem {
  width: 17rem !important;
}

.w180 {
  width: 180px !important;
}

.w18rem {
  width: 18rem !important;
}

.w190 {
  width: 190px !important;
}

.w19rem {
  width: 19rem !important;
}

.w200 {
  width: 200px !important;
}

.w20rem {
  width: 20rem !important;
}

.w210 {
  width: 210px !important;
}

.w21rem {
  width: 21rem !important;
}

.w220 {
  width: 220px !important;
}

.w22rem {
  width: 22rem !important;
}

.w230 {
  width: 230px !important;
}

.w23rem {
  width: 23rem !important;
}

.w240 {
  width: 240px !important;
}

.w24rem {
  width: 24rem !important;
}

.w250 {
  width: 250px !important;
}

.w25rem {
  width: 25rem !important;
}

.w260 {
  width: 260px !important;
}

.w26rem {
  width: 26rem !important;
}

.w270 {
  width: 270px !important;
}

.w27rem {
  width: 27rem !important;
}

.w280 {
  width: 280px !important;
}

.w28rem {
  width: 28rem !important;
}

.w290 {
  width: 290px !important;
}

.w29rem {
  width: 29rem !important;
}

.w300 {
  width: 300px !important;
}

.w30rem {
  width: 30rem !important;
}

.w310 {
  width: 310px !important;
}

.w31rem {
  width: 31rem !important;
}

.w320 {
  width: 320px !important;
}

.w32rem {
  width: 32rem !important;
}

.w330 {
  width: 330px !important;
}

.w33rem {
  width: 33rem !important;
}

.w340 {
  width: 340px !important;
}

.w34rem {
  width: 34rem !important;
}

.w350 {
  width: 350px !important;
}

.w35rem {
  width: 35rem !important;
}

.w360 {
  width: 360px !important;
}

.w36rem {
  width: 36rem !important;
}

.w370 {
  width: 370px !important;
}

.w37rem {
  width: 37rem !important;
}

.w380 {
  width: 380px !important;
}

.w38rem {
  width: 38rem !important;
}

.w390 {
  width: 390px !important;
}

.w39rem {
  width: 39rem !important;
}

.w400 {
  width: 400px !important;
}

.w40rem {
  width: 40rem !important;
}

.w410 {
  width: 410px !important;
}

.w41rem {
  width: 41rem !important;
}

.w420 {
  width: 420px !important;
}

.w42rem {
  width: 42rem !important;
}

.w430 {
  width: 430px !important;
}

.w43rem {
  width: 43rem !important;
}

.w440 {
  width: 440px !important;
}

.w44rem {
  width: 44rem !important;
}

.w450 {
  width: 450px !important;
}

.w45rem {
  width: 45rem !important;
}

.w460 {
  width: 460px !important;
}

.w46rem {
  width: 46rem !important;
}

.w470 {
  width: 470px !important;
}

.w47rem {
  width: 47rem !important;
}

.w480 {
  width: 480px !important;
}

.w48rem {
  width: 48rem !important;
}

.w490 {
  width: 490px !important;
}

.w49rem {
  width: 49rem !important;
}

.w500 {
  width: 500px !important;
}

.w50rem {
  width: 50rem !important;
}

.w1rem {
  width: 1rem !important;
}

.w2rem {
  width: 2rem !important;
}

.w3rem {
  width: 3rem !important;
}

.w4rem {
  width: 4rem !important;
}

.w5rem {
  width: 5rem !important;
}

.w6rem {
  width: 6rem !important;
}

.w7rem {
  width: 7rem !important;
}

.w8rem {
  width: 8rem !important;
}

.w9rem {
  width: 9rem !important;
}

.w10rem {
  width: 10rem !important;
}

.w11rem {
  width: 11rem !important;
}

.w12rem {
  width: 12rem !important;
}

.w13rem {
  width: 13rem !important;
}

.w14rem {
  width: 14rem !important;
}

.w15rem {
  width: 15rem !important;
}

.w16rem {
  width: 16rem !important;
}

.w17rem {
  width: 17rem !important;
}

.w18rem {
  width: 18rem !important;
}

.w19rem {
  width: 19rem !important;
}

.w20rem {
  width: 20rem !important;
}

.alert {
  display: block;
  padding: 1rem;
  position: relative;
}
.alert .alert-delete {
  background: transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.alert.primary {
  background: #006dcc;
  color: #fff;
}
.alert.primary .alert-delete {
  color: #fff;
}

.alert.success {
  background: #5bb75b;
  color: #fff;
}
.alert.success .alert-delete {
  color: #fff;
}

.alert.info {
  background: #49afcd;
  color: #fff;
}
.alert.info .alert-delete {
  color: #fff;
}

.alert.warning {
  background: #faa732;
  color: #000;
}
.alert.warning .alert-delete {
  color: #000;
}

.alert.danger {
  background: #da4f49;
  color: #fff;
}
.alert.danger .alert-delete {
  color: #fff;
}

.alert.inverse {
  background: #363636;
  color: #fff;
}
.alert.inverse .alert-delete {
  color: #fff;
}

.alert.clear {
  background: #e0e0e0;
  color: #000;
}
.alert.clear .alert-delete {
  color: #000;
}

.alert.white {
  background: #fff;
  color: #000;
}
.alert.white .alert-delete {
  color: #000;
}

.col1 {
  width: 8.33333% !important;
}
@media screen and (max-width: 414px) {
  .col1 {
    width: 100% !important;
  }
}

.col2 {
  width: 16.66667% !important;
}
@media screen and (max-width: 414px) {
  .col2 {
    width: 100% !important;
  }
}

.col3 {
  width: 25% !important;
}
@media screen and (max-width: 414px) {
  .col3 {
    width: 100% !important;
  }
}

.col4 {
  width: 33.33333% !important;
}
@media screen and (max-width: 414px) {
  .col4 {
    width: 100% !important;
  }
}

.col5 {
  width: 41.66667% !important;
}
@media screen and (max-width: 414px) {
  .col5 {
    width: 100% !important;
  }
}

.col6 {
  width: 50% !important;
}
@media screen and (max-width: 414px) {
  .col6 {
    width: 100% !important;
  }
}

.col7 {
  width: 58.33333% !important;
}
@media screen and (max-width: 414px) {
  .col7 {
    width: 100% !important;
  }
}

.col8 {
  width: 66.66667% !important;
}
@media screen and (max-width: 414px) {
  .col8 {
    width: 100% !important;
  }
}

.col9 {
  width: 75% !important;
}
@media screen and (max-width: 414px) {
  .col9 {
    width: 100% !important;
  }
}

.col10 {
  width: 83.33333% !important;
}
@media screen and (max-width: 414px) {
  .col10 {
    width: 100% !important;
  }
}

.col11 {
  width: 91.66667% !important;
}
@media screen and (max-width: 414px) {
  .col11 {
    width: 100% !important;
  }
}

.col12 {
  width: 100% !important;
}
@media screen and (max-width: 414px) {
  .col12 {
    width: 100% !important;
  }
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.tc {
  text-align: center;
}

/****************************************
 	フォームパーツ						*
*****************************************/
input[type='text'],
input[type='url'],
input[type='tel'],
input[type='email'],
input[type='number'],
input[type='password'],
input[type='file'],
textarea,
select,
.textarea[contenteditable="true"] {
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  font-size: 1em;
  padding: .8rem;
  box-sizing: border-box;
}
input[type='text']:invalid,
input[type='url']:invalid,
input[type='tel']:invalid,
input[type='email']:invalid,
input[type='number']:invalid,
input[type='password']:invalid,
input[type='file']:invalid,
textarea:invalid,
select:invalid,
.textarea[contenteditable="true"]:invalid {
  border-color: #da4f49;
}
input[type='text']:focus,
input[type='url']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='file']:focus,
textarea:focus,
select:focus,
.textarea[contenteditable="true"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--main-rgba4);
}
input[type='text']:disabled,
input[type='url']:disabled,
input[type='tel']:disabled,
input[type='email']:disabled,
input[type='number']:disabled,
input[type='password']:disabled,
input[type='file']:disabled,
textarea:disabled,
select:disabled,
.textarea[contenteditable="true"]:disabled {
  color: #e3e3e3;
  pointer-events: none;
}
input[type='text']::placeholder,
input[type='url']::placeholder,
input[type='tel']::placeholder,
input[type='email']::placeholder,
input[type='number']::placeholder,
input[type='password']::placeholder,
input[type='file']::placeholder,
textarea::placeholder,
select::placeholder,
.textarea[contenteditable="true"]::placeholder {
  color: #bbb;
}

@media screen and (max-width: 414px) {
  input[type='text'],
  input[type='url'],
  input[type='tel'],
  input[type='email'],
  input[type='number'],
  input[type='password'],
  input[type='file'] {
    width: 100%;
  }
}
textarea {
  height: 100px;
}

.textarea[contenteditable="true"] {
  min-height: 100px;
  color: #696969;
  background: #fff;
}
.textarea[contenteditable="true"]:empty:before {
  color: #adadad;
  content: attr(placeholder);
  pointer-events: none;
  display: block;
  /* For Firefox */
}
.textarea[contenteditable="true"] .emoji {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 .1rem;
  vertical-align: text-bottom;
}
.textarea[contenteditable="true"] .emoji img {
  width: 100%;
  height: 100%;
  display: inline;
}
.textarea[contenteditable="true"] .emoji + .emoji {
  margin-left: 0;
}

label {
  display: inline-block;
}
label input[type=radio],
label input[type=checkbox] {
  display: none;
}
label input[type=radio] + span,
label input[type=checkbox] + span {
  transition: ease-out .5s;
  display: inline-block;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 900;
  font-family: "fontawesome";
}
label input[type=radio] + span:after,
label input[type=checkbox] + span:after {
  color: #ffffff;
  font-size: .7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
label input[type=radio] + span + b,
label input[type=checkbox] + span + b {
  margin-left: 3px;
  position: relative;
}
label input[type=radio]:disabled + span,
label input[type=checkbox]:disabled + span {
  background-color: #d5d5d5;
  cursor: no-drop;
}
label input[type=radio]:checked + span,
label input[type=checkbox]:checked + span {
  background-color: var(--main-rgb);
  border-color: rgba(100, 100, 100, 0.8);
}
label input[type=checkbox]:checked + span:after {
  content: '\f00c';
}
label input[type=radio] + span {
  border-radius: 50%;
}
label input[type=radio]:checked + span:after {
  content: '';
  background: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
label + label {
  margin-left: 8px;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

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

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

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

.j-between {
  justify-content: space-between;
}

.j-around {
  justify-content: space-around;
}

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

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

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

.separator {
  font-size: 1rem;
  padding: 0 .3rem;
}

.error {
  font-size: .8rem;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #da4f49;
}

.noscrollbar {
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 414px) {
  .mb-none {
    display: none;
  }
}
input {
  font-size: 1rem;
}

.informaition {
  padding: 1rem;
}

.switch label input[type="checkbox"],
.switch label input[type="radio"] {
  display: none;
}
.switch label input[type="checkbox"]:checked + span,
.switch label input[type="radio"]:checked + span {
  background-color: var(--main-rgb);
}
.switch label input[type="checkbox"]:checked + span:after,
.switch label input[type="radio"]:checked + span:after {
  left: 50%;
  background-color: #fff;
}
.switch label input[type="checkbox"] + span,
.switch label input[type="radio"] + span {
  --swich_width: 50px;
  display: block;
  width: var(--swich_width);
  height: calc(var(--swich_width) / 2);
  position: relative;
  border-radius: calc(var(--swich_width) / 2);
  border: 2px solid var(--main-rgb);
  background: #fff;
  cursor: pointer;
  transition: .5s background-color;
}
.switch label input[type="checkbox"] + span:after,
.switch label input[type="radio"] + span:after {
  content: '';
  width: calc(var(--swich_width) / 2);
  height: calc(var(--swich_width) / 2);
  display: block;
  background: var(--main-rgb);
  border-radius: 50%;
  position: absolute;
  transition: .5s left;
  left: 0;
  top: 0;
  transform: none;
}
.switch b {
  display: none;
}
