@charset "utf-8";

/* Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Playfair Display */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Noto Sans JP */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");

/* Noto Sans Myanmar */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Bodoni 72 */
@font-face {
  font-family: bodoni72;
  font-weight: normal;
  font-style: normal;
  src: url("./font/bodoni72/Bodoni72C\ Regular.otf") format("opentype");
}
@font-face {
  font-family: bodoni72;
  font-weight: normal;
  font-style: italic;
  src: url("./font/bodoni72/Bodoni72C\ Italic.otf") format("opentype");
}
@font-face {
  font-family: bodoni72;
  font-weight: bold;
  font-style: normal;
  src: url("./font/bodoni72/Bodoni72C\ Bold.otf") format("opentype");
}
@font-face {
  font-family: bodoni72;
  font-weight: bold;
  font-style: italic;
  src: url("font/bodoni72/Bodoni72C\ BoldItalic.otf") format("opentype");
}

/* GT Walsheim Trial */
@font-face {
  font-family: "GT Walsheim Condensed Medium Trial";
  font-weight: normal;
  font-style: normal;
  src: url("font/GT-Walsheim-Trial/GT-Walsheim-Condensed-Medium-Trial.woff2") format("woff2");
}
@font-face {
  font-family: "GT Walsheim Regular Trial";
  font-weight: normal;
  font-style: normal;
  src: url("font/GT-Walsheim-Trial/GT-Walsheim-Regular-Trial.woff2") format("woff2");
}
@font-face {
  font-family: "GT Walsheim Medium Trial";
  font-weight: normal;
  font-style: normal;
  src: url("font/GT-Walsheim-Trial/GT-Walsheim-Medium-Trial.woff2") format("woff2");
}
@font-face {
  font-family: "GT Walsheim Regular Oblique Trial";
  font-weight: normal;
  font-style: normal;
  src: url("font/GT-Walsheim-Trial/GT-Walsheim-Regular-Oblique-Trial.woff2") format("woff2");
}

/* Quiche Sana */
@font-face {
  font-family: "Quiche Sans";
  font-weight: normal;
  font-style: normal;
  src: url("font/quiche-sans/quichesans-regular.otf") format("opentype");
}
@font-face {
  font-family: "Quiche Sans";
  font-weight: bold;
  font-style: normal;
  src: url("font/quiche-sans/quichesans-bold.otf") format("opentype");
}
@font-face {
  font-family: "Quiche Sans";
  font-weight: normal;
  font-style: italic;
  src: url("font/quiche-sans/quichesans-italic.otf") format("opentype");
}

:root {
  --theme-color: #e0bfb6;
  --theme-color-light: #e6d3cc;
}

* {
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-display: optional;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

html {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  min-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 0;
  background-color: #fff;
  background-size: contain;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
div,
span,
p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
p {
  padding: 0;
  margin: 0;
}
img {
  width: auto;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a,
span,
i,
b,
u,
strong,
strike,
sup,
sub {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.noselect,
.no-select {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
}

.fade-in {
  transition: transform 0.5s ease-in-out 0.5s, opacity 0.5s ease-in-out 0.5s;
}
.fade-in-pre {
  opacity: 0;
  transform: translateY(60px);
}

input {
  display: inline-block;
  width: auto;
  height: 45px;
  padding: 6px 6px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  transition: all ease-in-out 0.2s;
}
input[type=radio] {
  height: auto;
  margin-right: 10px;
}
input:disabled {
  cursor: not-allowed;
}
label {
  margin-right: 30px;
  color: #5d5d5d;
  cursor: pointer;
}
select {
  display: inline-block;
  width: auto;
  height: 45px;
  padding: 6px 6px;
  padding-right: 24px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  background-image: url("/image/icon-dropdown.png");
  background-size: auto 10px;
  background-position: calc(100% - 5px) center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:invalid {
  color: #9e9e9e;
}
select:invalid option {
  color: var(--theme-color-grey);
}
textarea {
  display: inline-block;
  width: auto;
  height: 240px;
  padding: 12px 12px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border-radius: 3px;
  resize: none;
  transition: all ease-in-out 0.2s;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #dddddd;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--theme-color-light);
}

::-moz-selection {
  /* Code for Firefox */
  background: var(--theme-color);
  color: #fff;
}
::selection {
  background: var(--theme-color);
  color: #fff;
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/* input:focus::-webkit-input-placeholder {
  color: var(--theme-color-light);
}
input:focus:-moz-placeholder {
  color: var(--theme-color-light);
}
input:focus::-moz-placeholder {
  color: var(--theme-color-light);
}
input:focus:-ms-input-placeholder {
  color: var(--theme-color-light);
} */

button {
  display: inline-block;
  vertical-align: middle;
  padding: 0.5em 1.5em 0.5em 1.5em;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: var(--theme-color);
  background-size: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
  -webkit-appearance: value;
  -moz-appearance: value;
  appearance: value;
  transition: all ease-in-out 0.2s;
}
button:hover {
  background-color: var(--theme-color);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
button.s {
  padding: 0.4em 1.2em 0.3em 1.2em;
  font-size: 12px;
  background-size: 12px;
}
button.load {
  color: rgba(0, 0, 0, 0) !important;
  background-image: url("/image/load.gif");
  cursor: not-allowed;
}
button:disabled {
  color: #9e9e9e !important;
  cursor: not-allowed;
}

section {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 60px 0;
}
section .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
section .title {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}
section .list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.row {
  display: inline-block;
  width: 100%;
}
i.empty {
  display: inline-block;
  width: 100%;
  padding: 60px 0;
  color: #8d8d8d;
  font-size: 14px;
  text-align: center;
}
.form-warn {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  color: #f00;
  font-size: 12px;
  text-align: center;
}

/* nav top */
nav.top {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 8px 15px;
  background-color: #FFF;
  box-shadow: 0 0 2px rgba(0, 0 ,0, .25);
}
nav.top .logo {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 240px;
  height: 100%;
  padding: 5px 0;
}
nav.top .logo img {
  display: inline-block;
  width: auto;
  height: 100%;
}
nav.top .search {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 100%;
  margin-right: auto;
  padding: 8px 12px;
  background-color: #F0F0F0;
  border-radius: 8px;
  transition: all ease-in-out .2s;
}
nav.top .search.focus {
  background-color: #FFF;
  box-shadow: 0 0 4px rgba(0, 0, 0, .25);
}
nav.top .search .search-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url('/image/icon-search.png');
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color ease-in-out .1s;
}
nav.top .search .option-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url('/image/search-option.png');
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color ease-in-out .1s;
}
nav.top .search .image-search-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url('/image/icon-image-search.png');
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color ease-in-out .1s;
}
nav.top .search input[name=search] {
  flex: 1;
  width: auto;
  background-color: transparent;
}
nav.top .search .filter-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url('/image/icon-filter.png');
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
  transition: background ease-in-out .1s;
}
nav.top .search .filter-icon.load {
  background-image: url('/image/load.gif');
}
nav.top .button {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color ease-in-out .1s;
}
nav.top .button.help-button {
  margin-left: auto;
  background-image: url('/image/nav-help.png');
}
nav.top .button.setting-button {
  background-image: url('/image/nav-setting.png');
}
nav.top .button.account-button {
  background-image: url('/image/nav-account.png');
}
nav.top .button .dropdown {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  width: 280px;
  height: auto;
  padding: 5px 0;
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
  z-index: 1;
}
nav.top .button:focus .dropdown {
  display: inline-flex;
}
nav.top .button .dropdown .item {
  width: 100%;
  padding: 8px 15px;
  color: #000;
  font-size: 12px;
  text-align: left;
  transition: background-color ease-in-out .1s;
}
nav.top .button .dropdown .item:hover {
  background-color: #F0F0F0;
}

.content {
  display: inline-flex;
  flex: 1;
  flex-direction: row;
  width: 100%;
  margin-top: 3px;
  overflow: hidden;
}
.page {
  display: inline-flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  overflow: auto;
}


/* Tab view */
.page .tab-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page .tab-list::-webkit-scrollbar {
  display: none;
}
.page .tab-list .line {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-index: 0;
}
.page .tab-list .tab-head {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-right: 1px;
  padding: 10px 18px;
  background-color: #FFF;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
  transition: background-color ease-in-out .2s;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
     -moz-user-select: none; /* Old versions of Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none; 
}
.page .tab-list .tab-head:hover {
  background-color: #F9F9F9;
}
.page .tab-list .tab-head.selected {
  margin-bottom: -1px;
  border: 1px solid #ccc;
  border-bottom: 1px solid #FFF;
  z-index: 1;
}
.page .tab-list .tab-head .name {
  margin-right: auto;
  color: #000;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page .tab-list .tab-head.selected .name {
  font-weight: 600;
}
.page .tab-list .tab-head .close {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background-image: url('../image/icon-exit.png');
  background-size: auto 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.page .tab-plane {
  display: inline-flex;
  flex: 1 1 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 15px;
  overflow: auto;
}
.page .tab-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border-radius: 5px;
  overflow-x: hidden;
  overflow-y: auto;
}
.page .tab-content [data-auth] {
  display: none;
}


.upload-dialog {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 360px;
  height: auto;
  max-height: 480px;
  background-color: #FFF;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
  z-index: 1;
}
.upload-dialog .top {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 18px;
  background-color: #2e2e2e;
}
.upload-dialog .top .title {
  flex: 1;
  color: #FFF;
  font-size: 12px;
  text-align: left;
}
.upload-dialog .top .close {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('/image/icon-cross-white.png');
  background-size: auto 15px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.upload-dialog .body {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.upload-dialog .body .file-list {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.upload-dialog .body .file-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #DDD;
  border-radius: 5px;
  cursor: pointer;
}
.upload-dialog .body .file-item .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 15px;
  background-image: url('/image/menu-album.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.upload-dialog .body .file-item .name {
  flex: 1;
  color: #3e3e3e;
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-dialog .body .file-item .size {
  display: none;
}
.upload-dialog .body .file-item .status {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('/image/icon-tick.png');
  background-size: auto 15px;
  background-position: center;
  background-repeat: no-repeat;
}



/* Smartphones (portrait) */
@media only screen and (max-width: 480px) {
  body {
    min-width: 0;
  }
  nav.top .search,
  nav.top .button,
  nav.menu {
    display: none;
  }
}

/* Smartphones (Landscape) / Tablet (portrait) */
@media only screen and (min-width: 481px) and (max-width: 800px) {
}

/* Tablet (Landscape) */
@media only screen and (min-width: 801px) and (max-width: 1200px) {
}

/* Laptop */
@media only screen and (min-width: 1201px) and (max-width: 1600px) {
}

/* Desktop */
@media only screen and (min-width: 1601px) {
}
