@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@charset "utf-8";
/**
 * default.css
 *
 * @package    WFR-gaten
 * @copyright  Copyright (c) 2023 RM Co., Ltd.
 * @version    2.1.231001
 */
:root {
  --icon-color: #967148;
  --icon-hover: #ae8456;
  --font-color: #008c88;
  --font-hover: #60d2cf;
  --border-color: #cad1dc;
  --tool-font-color: #448782;
  --tool-back-color: #d1f2f1;
  --tool-border-color: #9bd3cf;
  --tool-back-hover: #e1fffe;
  --tool-border-hover: #9bd3cf;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body.wfr {
  display: flex;
  flex-direction: row-reverse;
  min-width: 600px;
}
.wfr-side *,
.wfr-head *,
.dialog * {
  font-family: 'Noto Sans JP',Meiryo,Arial Unicode MS,Hiragino Sans,Hiragino Kaku Gothic Std,MS Gothic,sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #ea6c06;
  border: none;
  border-radius: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  transition: 0.2s;
  cursor: pointer;
}
.button:hover {
  opacity: 0.8;
}
.button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: none;
  border-radius: 22px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  transition: 0.2s;
  cursor: pointer;
}
.button2:hover {
  border: none;
  background: #666;
}
.check input[type="checkbox"] {
  display: none;
}
.check input[type="checkbox"] + label {
  padding: 0 0 0 25px;
  position: relative;
}
.check input[type="checkbox"] + label::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background: url(../img/check.png) no-repeat center / 17px;
  position: absolute;
  top: 7px;
  left: 0;
}
.check input[type="checkbox"]:checked + label::before {
  background: url(../img/checked.png) no-repeat center / 17px;
}
.radio {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 6px !important;
  width: 360px!important;
  height: 45px!important;
  background: #a1d6d1;
  border-radius: 10px;
  border: none!important;
}
.radio:hover {
	background: rgb(161 214 209 / 91%);
}
.radio input[type="radio"] {
  display: none;
}
.radio input[type="radio"] + label {
  margin: 0 !important;
  width: 170px !important;
  height: 35px !important;
  background: none!important;
  border-radius: 6px!important;
  color: var(--tool-font-color)!important;
  text-align: center!important;
  line-height: 35px!important;
  font-weight: 500!important;
}
.radio input[type="radio"]:checked + label {
  background: #fff!important;
  color: #5a5a5a!important;
}
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
ul li {
  list-style: none;
}
::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background-color: #868686;
  border-radius: 5px;
}
.mCSB_scrollTools_vertical {
  background: #CAD1DC!important;
}
.mCSB_dragger_bar {
  background-color: #fff!important;
  box-shadow: 2px 2px 1px 1px #adb7c3;
}
.mCSB_draggerRail {
  background: transparent!important;
}
.mCSB_buttonUp {
  background-position: -32px -72px!important;
  opacity: 1!important;
}
.mCSB_buttonDown {
  background-position: -32px -92px!important;
  opacity: 1!important;
}
/*----------------------------------------------------------------------
div.progress
------------------------------------------------------------------------*/
div.progress {
  display: none;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 0px 10px 1px #6868682e;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 215;
}
div.progress img {
	width: 120px;
}
div.progress2 {
  display: none;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 0px 10px 1px #6868682e;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 215;
}
div.progress2 img {
	width: 120px;
}
div.progress2 p {
  display: none;
}
/*----------------------------------------------------------------------
div.dialog
------------------------------------------------------------------------*/
div.dialog {
  display: none;
  padding-top: 35px;
  background: linear-gradient(90deg, rgb(35 24 21), rgb(114 113 113));
  overflow: hidden;
  box-shadow: 2px 2px 10px 1px #686868;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 210;
}
div.dialog h2 {
  display: none;
  line-height: 35px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 0;
  left: 20px;
}
div.dialog h2 span {
  font-size: 12px;
}
div.dialog h2 i {
  display: inline-block;
  margin: 0 5px;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-size: 20px;
}
div.dialog > div {
  padding: 20px 10px;
  min-height: 80px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  color: #000;
}
div.dialog > a {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/dialog_close.png) no-repeat center / 12px;
  text-indent: -9999px;
  overflow: hidden;
  color: #fff;
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
}
div.dialog > a:hover {
  opacity: 0.8;
}
div.message {
  z-index: 214;
}
div.message > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
div.window {
  width: 94%;
  max-width: 1060px;
  height: calc(100vh - 120px);
  z-index: 202;
}
div.window > div {
  display: flex;
  width: 100%;
  height: 100%;
}
div.window.tab > div {
  flex-direction: column;
  padding: 0;
}
div.window.tab ul.tab-link {
  display: flex;
  align-items: flex-end;
  padding-left: 20px;
  width: 100%;
  height: 47px;
  background: #c2c2c2;
}
div.window.tab ul.tab-link li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 160px;
  height: 30px;
  background: #eeefef;
  border-radius: 6px 6px 0 0;
  color: #9f9fa0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: 1.3s;
}
div.window.tab ul.tab-link li:hover {
  background: #c9cacb;
  color: #898989;
}
div.window.tab ul.tab-link li.on,
div.window.tab ul.tab-link li.on:hover {
  background: #fff;
  font-weight: 500;
  color: #231815;
}
div.window.tab div.tab-page {
  display: flex;
  padding: 20px 10px;
  width: 100%;
  height: 100%;
  min-height: 80px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
div.window div.shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 34px);
  background: rgb(0 0 0 / 80%);
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 1;
}
div.window div.range div.shield {
  height: calc(100% + 10px);
  top: 0;
}
div.window div.shield h1 {
  margin-bottom: 30px;
  border-bottom: 1px solid #E55555;
  line-height: 28px;
  font-size: 22px;
  font-weight: 500;
  color: #E55555;
}
div.window div.shield p {
  line-height: 25px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
div.resource {
  margin: 0 15px 0 10px;
  width: 300px;
  min-width: 300px;
  overflow-y: scroll;
}
div.resource div.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 23px 30px 0;
}
div.resource label {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
div.resource label i {
  display: inline-block;
  margin: 0 5px;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-size: 26px;
}
div.resource a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  width: 80px;
  height: 30px;
  background: var(--tool-back-color);
  border: 1px solid var(--tool-border-color);
  border-radius: 5px;
  font-size: 13px;
  color: var(--tool-font-color);
  cursor: pointer;
}
div.resource a:hover {
  background: var(--tool-back-hover);
  border: 1px solid var(--tool-border-hover);
}
div.resource ul {
  margin-top: 30px;
}
div.resource ul li {
  display: flex;
  align-items center;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: #dfeffc;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #2e6e9e;
  cursor: pointer;
}
div.resource ul li:hover {
  background: #d0e5f5;
  border: 1px solid #79b7e7;
}
div.resource ul li.on {
  background: #79b7e7;
  border: 1px solid #46aeff;
  color: #fff;
}
div.resource div.list > p {
  color: var(--tool-font-color);
}
div.resource div.list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  margin-right: 20px;
  border: 3px solid #fff;
  background: url(../img/canvas.png) repeat;
  transition: 1.3s ease 0s;
  position: relative;
  top: 100px;
  opacity: 0;
}
div.resource div.list > div.moved {
  top: 0;
  opacity: 1;
}
div.resource div.list > div:hover {
  border: 3px solid #f27089;
}
div.resource div.list > div img {
  object-fit: scale-down;
}
div.resource div.list > div img:hover {
}
div.resource div.addrs {
  display: flex;
  flex-direction: column;
}
div.resource div.addrs label {
  margin: 20px 0;
  font-size: 15px;
  line-height: 20px;
}
div.resource div.addrs div.list {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}
div.resource div.addrs input {
  margin-bottom: 10px;
  padding: 5px 5px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}
div.resource + div {
  display: flex;
  flex-direction: column;
	padding: 0 10px 0 30px;
  width: 715px;
  min-width: 600px;
  height: 100%;
  border-left: 1px solid #b6b6b6;
}
div.resource + div form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
  height: calc(100% - 64px);
}
div.resource + div div.bottom {
  display: flex;
  justify-content: space-between;
  margin: 0 15px 0 10px;
  height: 44px;
}
div.resource + div div.view {
  padding-right: 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
div.resource + div div.upload {
  margin: 0;
  width: 100% !important;
  height: 220px !important;
}
div.resource + div input[type="text"],
div.resource + div input.file {
  width: 100%;
}
div.resource + div textarea {
  width: 100% !important;
  height: calc(2 * 18px + 12px);
  min-height: calc(2 * 18px + 12px);
}
div.resource + div div.layout {
  margin: 0 0 20px !important;
  padding: 10px;
  width: 100%;
  max-width: 100%;
  background: #d1f2f1;
}
div.resource + div div.layout ul li {
  display: flex;
  align-items: center;
  margin: 0;
}
div.resource + div div.layout ul li label {
  font-weight: 400;
}
div.child {
  width: 700px;
  max-width: 90%;
  max-height: calc(100vh - 100px);
  z-index: 213;
}
div.child > div {
  width: 100%;
  height: 100%;
}
/*----------------------------------------------------------------------
div.gmenu
------------------------------------------------------------------------*/
div.gmenu {
  padding: 15px;
  width: 654px;
  max-width: 94%;
  background: #fff;
  border: none;
  border-radius: 15px;
}
div.gmenu > a {
  width: 12px;
  height: 12px;
  background: url(../img/icon_close.png) no-repeat center/100%;
  position: absolute;
  top: 20px;
  right: 20px;
}
div.gmenu > a:hover {
  opacity: 0.5;
}
div.gmenu > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 0 0;
  max-height: calc(100vh - 120px);
  background: #fff;
}
div.gmenu article {
  margin: 0 0 4px;
  width: 400px;
  min-height: 240px;
  background: url(../img/logo_menu.png) no-repeat;
  background-size: 100%;
  background-position: center center;
}
div.gmenu nav {
  display: flex;
  flex-direction: column;
  width: 390px;
}
div.gmenu nav ul:first-child li {
	height: 49px;
}
div.gmenu nav ul {
  display: flex;
  flex-wrap: wrap;
	justify-content: center;
  width: 100%;
}
div.gmenu nav ul + ul {
  margin-top: 33px;
}
div.gmenu nav ul:first-of-type li {
	margin: 3px 0 15px;
  width: 100%;
	height: 46px;
	background: #fbb03b;
	border-radius: 6px;
	position: relative;
}
div.gmenu nav ul:first-of-type li span {
	display: block;
	width: 100%;
	height: 46px;
	background: #ffc700;
  border-radius: 6px;
  text-align: center;
  line-height: 46px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
	position: absolute;
  top: -3px;
	left: 0;
}
div.gmenu nav ul:first-of-type li:hover span{
  top: 0;
}
div.gmenu nav ul:last-of-type li {
	margin: 0 0 20px;
  width: calc((100% - 34px) / 2);
}
div.gmenu nav ul:last-of-type li:nth-child(even) {
  margin-left: 34px;
}
div.gmenu nav ul:last-of-type li:nth-child(-2n) {
	margin-top: 24px;
}
div.gmenu nav ul:last-of-type li:last-child {
	background: #fff;
	border: 2px solid #000;
	color: #000;
	font-weight: 500;
}
div.gmenu nav ul:last-of-type li:last-child:hover {
	background: #f0f0f0;
}
div.gmenu nav ul:last-of-type li.end {
	margin-top: 7px;
}
div.gmenu nav ul:last-of-type li.end2 {
	margin-top: 20px;
}
div.gmenu nav ul:last-of-type li {
  width: calc(50% - 28px);
}
div.gmenu nav ul div.submenu {
  margin: 0 60px;
  width: 100%;
}
div.gmenu nav ul div.submenu li {
  margin: 0 0 24px;
  background: #fbb03b;
}
div.gmenu nav dl {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
  height: 38px;
}
div.gmenu nav dl dt {
  width: calc(100% - 264px);
  font-size: 14px;
  font-weight: 500;
  color: #EF6C00;
}
div.gmenu nav dl dd {
  width: 264px;
}
div.gmenu nav > div {
	margin: 45px 0 20px;
  color: #666;
  text-align: center;
}
div.gmenu nav > div p {
  font-size: 13px;
	font-weight: 400;
  line-height: 180%;
}
.switch input {
  display: none;
}
.switch input + label {
  display: block;
  width: 100%;
  height: 38px;
  border: 2px solid #c6691a;
  border-radius: 22px;
  position: relative;
}
.switch input + label::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "簡単モード";
  width: calc(50% - 4px);
  height: 28px;
  background: linear-gradient(90deg, rgb(239 108 0), rgb(242 149 0));
  border-radius: 20px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: 0.5s;
  z-index: 2;
}
.switch input + label::after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "プロモード";
  width: calc(50% - 4px);
  height: 28px;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #EF6C00;
  position: absolute;
  top: 3px;
  left: calc(50% + 3px);
  z-index: 1;
}
.switch input:checked + label::before {
  content: "プロモード";
  left: initial;
  left: calc(50% + 2px);
}
.switch input:checked + label::after {
  content: "簡単モード";
  left: 2px;
}
/*----------------------------------------------------------------------
.wfr-head
------------------------------------------------------------------------*/
.wfr-head {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  height: 68px;
  background: #fff;
  border-bottom: 8px solid #281d1b;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
}
.wfr-head::after {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #231815, #727171);
  position: absolute;
  left: 0;
  bottom: -8px;
  z-index: 201;
}
.wfr-head div {
  width: auto;
  height: 68px;
  position: relative;
}
.wfr-head div::before {
  display: block;
  content: "";
  width: 55px;
  height: 55px;
  background: url(../img/icon_logo.png) no-repeat center / 50px;
  position: absolute;
  top: 5px;
  left: 20px;
}
.wfr-head div:hover::before {
  transform: rotate(-10deg);
}
.wfr-head div h1 {
  padding: 0 20px 0 98px;
  line-height: 63px;
  font-size: 18px;
  font-weight: 500;
  color: #231815;
  cursor: pointer;
}
.wfr-head nav {
  display: flex;
  align-items: center;
  margin: 5px 15px 0 0;
  height: 55px;
}
.wfr-head a {
  display: block;
  margin-right: 12px;
  width: 80px;
  height: 30px;
  background: no-repeat center top / 80px auto;
  text-indent: -9999px;
  cursor: pointer;
}
.wfr-head a:hover {
  background-position: center bottom;
}
.wfr-head a.menu {
  background-image: url(../img/button_menu.png);
}
.wfr-head a.list {
  background-image: url(../img/button_order.png);
}
.wfr-head a.write {
  background-image: url(../img/button_write.png);
}
.wfr-head a.conf {
  background-image: url(../img/button_config.png);
  display: none;
}
/*----------------------------------------------------------------------
div.side
------------------------------------------------------------------------*/
.wfr-side {
  display: none;
  padding: 15px 10px;
  min-width: 280px;
  max-width: 280px;
  height: auto;
  max-height: calc(100vh - 160px);
  background: rgb(3 3 3 / 67%);
  border-radius: 6px;
  box-shadow: 5px 5px 10px 0px rgb(88 88 88 / 70%);
  position: absolute;
  top: 70px;
  right: 20px;
  z-index: 200;
}
.wfr-side > a {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/dialog_close2.png) no-repeat center / 15px;
  text-indent: -9999px;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}
.wfr-side > a:hover {
  opacity: 0.8;
}
.wfr-side > div {
  display: flex;
  flex-direction: column;
}
.wfr-side label {
  display: block;
  margin: 20px 22px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.wfr-side div > a {
  display: block;
  margin: 20px 22px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
}
.wfr-side div > a:hover {
  text-decoration: underline;
}
.wfr-side div.wfr-listwrap {
  width: 100%;
	height: auto;
  max-height: calc(100vh - 320px);
  overflow-y: auto;
}
.wfr-side ul.wfr-list li {
  display: flex;
  align-items: center;
  margin: 0 22px 7px;
  padding: 5px 5px 5px 15px;
  min-height: 42px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  color: #000;
  cursor: move;
  position: relative;
}
.wfr-side ul.wfr-list li:hover {
  box-shadow: 0px 0px 2px 1px rgb(88 88 88 / 80%);
}
.wfr-side ul.wfr-list li input {
  width: calc(100% - 60px);
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 12px;
  border: none;
  outline: none;
}
.wfr-side ul.wfr-list li a {
  display: block;
  width: 48px;
  height: 25px;
  line-height: 24px;
  background-color: #e45454 !important;
  border-radius: 4px;
  box-shadow: none !important;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 8px;
}
.wfr-side ul.wfr-list li a:nth-of-type(2) {
  right: 64px;
}
.wfr-side ul.wfr-list li a:hover {
  background-color: rgb(242 112 137 / 100%) !important;
  box-shadow: none !important;
}
.wfr-side ul.wfr-config {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  min-height: 100px;
}
.wfr-side ul.wfr-config li {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
/*----------------------------------------------------------------------
div.wrap
------------------------------------------------------------------------*/
div.wfr-wrap {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 68px 0 0 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
div.wfr-wrap > section.wrap {
  padding-top: 0 !important;
}
div.wfr-header,
div.wfr-footer {
  position: relative;
}
div.wfr-header > header.hide {
  height: 102px !important;
}
div.wfr-edit {
  xmin-height: 200px;
  position: relative;
}
div.wfr-disabled {
  height: 51px;
  background: #595959;
  border-bottom: 1px solid #6d6d6d;
  position: relative;
}
div.wfr-disabled p {
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
div.wfr-empty {
  height: 100px!important;
  background: rgb(124 124 124 / 30%)!important;
  position: relative;
}
div.wfr-empty p {
  line-height: 100px;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
div.wfr-menu {
  display: flex;
  flex-direction: column!important;
  align-items: initial!important;
  justify-content: space-between!important;
  padding: 10px 0!important;
  width: 80px!important;
  background: none!important;
  overflow: initial!important;
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 99;
}
div.wfr-menu > div {
  display: flex;
  flex-direction: column!important;
  align-items: initial!important;
  justify-content: initial!important;
  padding: 0!important;
  width: 80px!important;
}
div.wfr-header div.wfr-menu {
  z-index: 101;
}
div.wfr-footer div.wfr-menu {
  padding: 5px 0 !important;
}
div.wfr-disabled div.wfr-menu {
  padding: 5px 0 !important;
}
div.wfr-menu a {
  margin: 5px 0;
  padding: 5px;
  background-color: rgb(0 0 0 / 72%);
  border-radius: 6px;
  box-shadow: 0 0 1px 1px #6f6f6f;
  font-family: 'Noto Sans JP',Meiryo,Arial Unicode MS,Hiragino Sans,Hiragino Kaku Gothic Std,MS Gothic,sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
div.wfr-menu a:hover {
  background-color: rgb(0 0 0 / 82%);
  box-shadow: 0 0 1px 1px #fff;
}
div.wfr-menu a.remove {
  background-color: #fff !important;
  box-shadow: 0 0 1px 2px #fbb03b;
  color: #ffa124 !important;
  font-weight: bold;
}
div.wfr-menu a.remove:hover {
  background-color: #fff9e7 !important;
  text-shadow: none;
}
div.wfr-disabled div.wfr-menu a {
  padding: 3px;
  background-color: #e45454;
  box-shadow: 0 0 1px 1px #db4646;
}
div.wfr-disabled div.wfr-menu a:hover {
  background-color: #e55c5c;
}
div.wfr-menu a.banner {
	background-color: #ffc700;
  box-shadow: 0 0 1px 1px #fbb03b;
  color: #333;
  font-weight: bold;
}
div.wfr-menu a.banner:hover {
  background-color: #ffcd1d;
  box-shadow: 0 0 1px 1px #fbb03b;
}
/*----------------------------------------------------------------------
form.wfr
------------------------------------------------------------------------*/
form.file {
  display: none!important;
}
form.wfr {
  display: block;
}
form.wfr img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  border: 0px;
}
form.wfr dl {
  margin-bottom: 20px;
}
form.wfr dl dt {
  padding-bottom: 2px;
}
form.wfr dl dd {
  display: flex;
  flex-direction: column;
  position: relative;
}
form.wfr div.edit-data-title dl {
  display: flex;
  margin: 20px 0 0;
  padding: 5px;
}
form.wfr div.edit-data-title dl dt {
  margin-right: 5px;
  padding: 0 5px;
  width: 200px;
}
form.wfr div.edit-data-title dl dd {
  margin-right: 5px;
  padding: 0 5px;
  width: calc(100% - 210px - 60px);
}
form.wfr div.edit-data dl {
  display: flex;
  margin: 0;
  padding: 5px;
  cursor: move;
}
form.wfr div.edit-data dl:hover {
  background: var(--tool-back-hover);
}
form.wfr div.edit-data dl dt {
  display: flex;
  margin-right: 5px;
  padding: 5px;
  width: 200px;
  background: #fff;
  border: 1px solid var(--border-color);
}
form.wfr div.edit-data dl dt span {
  cursor: pointer;
  position: relative;
  top: -4px;
}
form.wfr div.edit-data dl dd {
  margin-right: 5px;
  padding: 5px;
  width: calc(100% - 210px - 60px);
  background: #fff;
  border: 1px solid var(--border-color);
}
form.wfr div.edit-data textarea {
  width: 100%;
  height: 100%;
  min-height: calc(2 * 18px + 12px);
  border: none;
  resize: vertical;
}
form.wfr div.edit-data dl.hide,
form.wfr div.edit-data dl.hide dt,
form.wfr div.edit-data dl.hide dd,
form.wfr div.edit-data dl.hide textarea {
  background: #e6e6e6;
  color: #c8c8c8;
}
form.wfr div.edit-data a,
form.wfr div.edit-data + a {
  display: block;
  margin: 20px auto;
  width: 60px;
  height: 30px;
  background: url(../img/button_delete.png) no-repeat center top / 60px auto;
  border-radius: initial;
  text-indent: -9999px;
  transition: initial;
  cursor: pointer;
}
form.wfr div.edit-data a:hover,
form.wfr div.edit-data + a:hover {
  background-position: center bottom;
}
form.wfr div.edit-data a.hide {
  background-image: url(../img/button_hide.png);
}
form.wfr div.edit-data a.show {
  background-image: url(../img/button_show.png);
}
form.wfr div.edit-data + a {
  width: 150px;
  height: 35px;
  background: url(../img/button_add_line.png) no-repeat center top / 150px auto;
}
div.iconview {
  padding: 30px 10px 10px;
  width: 500px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.iconview ul {
  display: flex;
  flex-wrap: wrap;
}
div.iconview ul li {
  display: block;
  margin: 5px;
  width: 60px;
  height: 60px;
}
div.iconview ul li span {
  font-size: 60px!important;
  color: #666!important;
  cursor: pointer;
}
div.iconview ul li span:hover {
  color: #000!important;
}
div.iconview a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-family: cursive;
  font-size: 16px;
  font-weight: 700;
  color: var(--border-color);
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
div.iconview a:hover {
  color: #79b7e7;
}
form.wfr div.list > div {
  display: flex;
  justify-content: space-between;
}
form.wfr div.list > div > div:not(.mCustomScrollBox) {
  display: flex;
}
form.wfr div.list select {
  min-width: 80px;
  height: 35px;
}
form.wfr div.list a:not(.mCSB_buttonUp, .mCSB_buttonDown) {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 135px;
  height: 35px;
  background: linear-gradient(0deg, #9cc1ed, #9cbef1,#cbdff4);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 2px 2px 0 #7795c8, -2px 2px 0 #7795c8, 2px -2px 0 #7795c8, -2px -2px 0 #7795c8;
  color: #fff;
  cursor: pointer;
}
form.wfr div.list a span {
  font-size: 14px;
  line-height: 33px;
}
form.wfr div.list a span:first-child {
  margin-right: 5px;
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
}
form.wfr div.list a.add,
form.wfr div.list a.add,
form.wfr div.list a.add {
  display: block;
  margin-right: 10px;
  width: 150px;
  height: 35px;
  background: url(../img/button_add_line.png) no-repeat center top / 150px auto;
  border: none;
  border-radius: initail;
  transition: initial;
  text-indent: -9999px;
  cursor: pointer;
}
form.wfr div.list a.add:hover,
form.wfr div.list a.add:hover,
form.wfr div.list a.add:hover {
  background-position: center bottom;
}
form.wfr div.list a.add.blog {
  background-image: url(../img/button_add_blog.png);
}
form.wfr div.list a.add.staff {
  background-image: url(../img/button_add_staff.png);
  background-size: 170px auto;
  width: 170px;
}
form.wfr div.list a.add.work {
  background-image: url(../img/button_add_work.png);
  background-size: 170px auto;
  width: 170px;
}
form.wfr div.list table a:not(.mCSB_buttonUp, .mCSB_buttonDown) {
  margin: 5px 0;
  width: 60px;
  height: 30px;
  background: url(../img/button_edit.png) no-repeat center top / 60px auto;
  text-indent: -9999px;
}
form.wfr div.list table a:hover {
  background-position: center bottom;
}
form.wfr div.list table a.remove {
  background-image: url(../img/button_delete.png);
}
form.wfr div.list table a.hide {
  background-image: url(../img/button_hide.png);
}
form.wfr div.list table a.show {
  background-image: url(../img/button_show.png);
}
form.wfr div.list a.disabled {
  background: #f1f1f1;
  border: 1px solid #ccc;
  color: #ccc;
  text-shadow: 2px 2px 0 #e7e7e7, -2px 2px 0 #e7e7e7, 2px -2px 0 #e7e7e7, -2px -2px 0 #e7e7e7;
}
form.wfr div.list a.disabled:hover {
  box-shadow: none;
}
form.wfr div.list a span {
  font-size: 14px;
  line-height: 30px;
}
form.wfr div.list div.pager {
  display: flex;
}
form.wfr div.list div.pager a {
  width: 35px;
  background-repeat: no-repeat;
  background-position:  center;
  background-size: 12px;
  text-indent: -9999px;
}
form.wfr div.list div.pager a.prev {
  background-image: url(../img/prev.png);
}
form.wfr div.list div.pager a.next {
  background-image: url(../img/next.png);
}
form.wfr div.list div.pager select {
  margin: 0;
}
form.wfr div.list label {
  display: block;
  margin-top: 10px;
  color: var(--tool-font-color);
}
form.wfr div.list img {
  display: block;
}
form.wfr div.list.range {
  margin-bottom: 30px;
}
form.wfr div.list.range div.table {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  padding: 0px 20px 10px 20px;
  height: 320px;
  border: 3px solid var(--border-color);
  overflow-y: scroll;
}
form.wfr div.list.range div.table::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
}
form.wfr div.list table {
  margin: 10px 0;
  width: 100%;
  border-spacing: 0 10px;
}
form.wfr div.list table thead tr td {
  color: var(--tool-font-color);
  font-weight: 400;
  text-align: center;
}
form.wfr div.list table tbody tr td {
  padding: 10px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
form.wfr div.list table tbody tr td:first-child {
  width: 150px;
  border-left: 1px solid var(--border-color);
  border-radius: 5px 0 0 5px;
  text-align: center;
}
form.wfr div.list table tbody tr td:last-child {
  width: 100px;
  border-right: 1px solid var(--border-color);
  border-radius: 0 5px 5px 0;
}
form.wfr div.list table.sortable tbody tr td {
  cursor: move;
}
form.wfr div.list table.sortable tbody tr:hover td {
  background: var(--tool-back-hover);
}
form.wfr div.list table tr td img,
form.wfr div.list table tr td video {
  max-height: 150px;
}
form.wfr div.list table tr td p {
  font-size: 14px;
  line-height: 26px;
}
form.wfr div.list table tr td p:first-child {
  font-size: 14px;
  line-height: 1;
}
form.wfr div.list table tr td p:last-child {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.5;
}
form.wfr div.flex {
  display: flex;
}
form.wfr div.flex > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
form.wfr div.upload {
  display: flex;
  align-items: center;
  width: 260px;
  height: 220px;
  border: 3px solid var(--border-color);
  cursor: copy;
}
.dialog.mode-expert form.wfr div.upload.current {
  border: 3px solid #ea6c06;
}
form.wfr div.upload.drag {
  background: #f3f3f3;
}
form.wfr div.upload ul li a,
div.videolist div.videos div.media div a {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/button_close.png) no-repeat center top / 20px auto;
  border-radius: initail;
  text-indent: -9999px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
form.wfr div.upload ul li a:hover,
div.videolist div.videos div.media div a:hover {
  background-position: center bottom;
}
form.wfr textarea {
  width: 100%;
  height: 80px;
  min-height: 60px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  outline: none;
  resize: vertical;
}
form.wfr select {
  font-size: 15px;
  font-weight: 400;
  outline: none;
}
form.wfr input[type="text"],
form.wfr input[type="password"] {
  margin: 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  vertical-align: middle;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
form.wfr input.text_email {
  background-image: url(../img/icon_mail.png);
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 16px;
}
form.wfr input.text_id {
}
form.wfr input.text_password {
}
form.wfr input.passwd {
  padding-right: 50px;
}
form.wfr input.passwd + a {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/icon_eye.png) no-repeat center center;
  background-size: 20px;
  position: relative;
  top: 0;
  left: -35px;
  cursor: pointer;
}
form.wfr input.passwd + a.open {
  background-image: url(../img/icon_eyeopen.png);
}
div.bottom {
  display: flex;
  justify-content: space-between;
}
div.bottom > div {
  display: flex;
}
div.bottom a {
  min-width: 120px;
}
div.bottom a:nth-child(n+2) {
  margin-left: 20px;
}
a.back {
  background: #a8a8a8 !important;
}
a.remove {
  background: #ff4747;
  color: #fff !important;
}
a.remove:hover {
  background: #ff4747;
  text-shadow: 0px 0px 6px #ffb6b6;
}
a.publish {
  background: #008c88 !important;
}
a.publish:hover {
  background: #01b5b0 !important;
}
form.wfr.center {
  border: 2px solid #81d8d0;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.view > label {
  padding-left: 10px;
}
div.range {
  margin-bottom: 20px;
  padding: 0 8px 0 10px;
  position: relative;
}
div.range div.indent {
  margin-left: 160px;
  margin-bottom: 30px;
}
div.range div.nest div.indent {
  margin: 8px 0 0;
}
div.range div.group > div:first-child {
  margin-top: 60px;
  width: 100%;
  height: 3px;
  background: var(--border-color);
  position: relative;
}
div.range div.group > div:first-child label {
  padding: 0 10px;
  background: #fff;
  position: absolute;
  left: 40px;
  top: calc(50% - 2px);
  transform: translateY(-50%);
}
div.range div.group > div:last-child {
  padding: 20px;
}
div.range ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 20px;
  min-height: 30px;
  line-height: 30px;
}
div.range div.indent li {
  margin-top: 12px;
}
div.range div.indent.font li:nth-child(2) {
  display: none;
}
div.range ul li label {
  min-width: 160px;
  line-height: 30px;
}
div.range ul li label:nth-child(n+2) {
  margin-right: 20px;
  min-width: 80px;
}
div.range ul li label span {
  display: block;
  font-size: 12px;
}
div.range ul p {
  display: block;
  margin-left: 165px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--tool-font-color);
}
div.range ul li > div {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  width: 520px;
  border: 1px solid var(--border-color);
}
div.range ul li div label {
  display: block;
  margin: 5px 0;
  width: 120px;
}
div.range ul li.radio label:nth-child(n+2) {
  width: 150px;
}
div.range input {
  padding: 5px 5px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
div.range .ui-spinner {
  margin-right: 10px;
  width: 80px;
}
.ui-widget.ui-widget-content {
  border: 1px solid var(--border-color) !important;
}
.ui-widget-content a {
  background: var(--tool-back-color) !important;
}
.ui-widget-content a:hover {
  background: var(--tool-back-hover) !important;
}
.ui-icon, .ui-widget-content .ui-icon {
  background-image: url(../img/ui-icons.png) !important;
}
div.range .ui-spinner input[type="text"] {
  padding: 5px 30px 5px 5px;
  width: 100%;
  border: none;
  text-align: right;
}
div.range div.slider {
  margin: 0 20px;
  width: 100%;
}
div.range div.slider span {
  outline: none;
}
div.range input[type=radio] {
  margin-right: 10px;
}
div.range input[type=checkbox] {
  margin-right: 10px;
}
div.range input.file + a,
div.range a.text,
div.range a.fonts,
div.range a.default {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  width: 80px;
  height: 30px;
  background: var(--tool-back-color);
  border: 1px solid var(--tool-border-color);
  border-radius: 5px;
  font-size: 13px;
  color: var(--tool-font-color);
  cursor: pointer;
}
div.range a.fonts {
  width: 50px;
}
div.range a.default {
  width: 50px;
}
div.range input.file + a:hover,
div.range a.text:hover,
div.range a.fonts:hover,
div.range a.default:hover {
  background: var(--tool-back-hover);
  border: 1px solid var(--tool-border-hover);
}
div.range input[type=color] {
  margin-left: 10px;
  padding: 0;
  width: 44px;
  height: 30px;
}
div.range textarea {
  padding: 5px;
  border: 1px solid var(--border-color);
}
div.range select {
  padding: 0 5px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
div.range *::placeholder {
  color: #ccc;
  font-weight: 300;
}
div.select ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid var(--border-color);
}
div.select ul li {
  display: flex;
  flex-direction: column;
  width: 50%;
}
div.select ul li > div:first-child {
  width: 100%;
}
div.select ul li > div:first-child label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 30px;
}
div.select ul li > div:first-child input[type="radio"] {
  margin-right: 10px;
}
div.select ul li > div:first-child label span {
  font-weight: 500;
  position: relative;
  top: -1px;
}
div.select ul li > div:last-child {
  padding: 0 10px 10px;
  width: 100%;
}
div.select ul li > div:last-child > div {
  background: #cad1dc;
  background: rgb(202 209 220 / 68%);
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
div.select img.item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.select div.logo.bottom {
  width: 240px;
  height: 205px;
  background: transparent;
  overflow: hidden;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
div.select div.logo.bottom::after {
  display: block;
  content: "";
  width: 150px;
  height: 150px;
  /* background: #fff; */
  border-radius: 20% 0% 100%;
  position: absolute;
  top: 30px;
  left: 45px;
  transform: rotate(45deg);
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 52%);
}
.bottom2 {
  display: block;
  content: "";
  width: 150px;
  height: 150px;
  border-radius: 20% 0% 100%;
  position: absolute;
  top: 30px;
  left: 45px;
  transform: rotate(45deg);
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 52%);
}
div.select div.logo.bottom img.item {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
div.select div.logo.left-c {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: -100px;
  left: -100px;
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 52%);
}
div.select div.logo.left-c img.item {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  top: initial;
  left: initial;
  bottom: 18%;
  right: 18%;
  transform: initial;
  z-index: 1;
}
div.select div.logo.right-c {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: -100px;
  right: -100px;
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 52%);
}
div.select div.logo.right-c img.item {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  top: initial;
  bottom: 18%;
  left: 18%;
  transform: initial;
  z-index: 1;
}
div.select div.logo.left-r {
  width: 200px;
  height: 200px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  top: -100px;
  left: -100px;
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 52%);
}
div.select div.logo.left-r img.item {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  top: 75%;
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
div.select div.logo.right-r {
  width: 200px;
  height: 200px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  top: -100px;
  right: -100px;
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 52%);
}
div.select div.logo.right-r img.item {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  top: 75%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
div.image {
  margin-bottom: 50px;
}
.canvas {
  background: url(../img/canvas.png) repeat;
}
.canvas img {
  object-fit: scale-down;
}
/*----------------------------------------------------------------------
layer
------------------------------------------------------------------------*/
body.signin {
	background: url(../img/bglogin.png);
}
body.signin div.center * {
	font-family: 'Noto Sans JP', sans-serif;
}
body.signin div.center {
  width: 1000px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.signin div.center img {
	display: block;
	margin: 0 auto 150px;
	padding: 20px 150px;
	width: 100%;
	border: 3px solid #000;
}
body.signin div.center form {
	margin: 0 auto;
	width: 500px;
	margin: 0 auto;
}
body.signin div.center form dl {
	margin-bottom: 3.2%
}
body.signin div.center form input {
	padding: 10px 20px;
	height: 40px;
	background: #fff;
	border: none;
	border-radius: 10px;
}
body.signin .button {
  width: 100%;
  background: #000;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
}
body.signin div.center form a {
  display: block;
  font-size: 13px;
  text-decoration: underline;
  color: #000;
  cursor: pointer;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}
body.signin div.center form a:hover {
  color: #666;
}
body.index {
  background: #f6f8fa url(/gaten/img/bg.png) !important;
}
body.setup {
  background: #f6f8fa url(/gaten/img/bg.png) !important;
}
body.setup section {
  display: block;
  padding: 4px;
  width: 650px;
  background: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.setup form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 0 90px;
  background: #fff;
}
body.setup article {
  margin: 0;
  width: 500px;
  height: 200px;
  background: url(../img/logo_menu.png) no-repeat;
  background-size: 100%;
  background-position: center center;
}
body.setup form div {
  width: 100%;
}
body.setup p {
  color: rgb(166,166,166);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
body.setup img {
  margin: 20px 0 30px;
  width: 130px;
}
div.dialog div.detail_section div.range textarea {
	width: 425px !important;
}
div.dialog div.detail2_section div.range textarea {
	width: 425px !important;
}
div.dialog div.flow_section div.range textarea {
	width: 425px !important;
}
div.example div.data dl,
div.fontslist dl {
	border: 1px solid var(--tool-border-color) !important;
}
div.example div.data dl dt,
div.fontslist dl dt {
	color: var(--tool-font-color) !important;
}
div.request div.message p {
  margin-bottom: 20px;
  border: none !important;
	color: var(--tool-font-color) !important;
}
div.request table tbody td {
	color: var(--tool-font-color) !important;
}
div.videolist p {
	color: var(--tool-font-color) !important;
}
div.videolist div.list > ul li {
	background: var(--tool-back-color) !important;
  border: 1px solid var(--tool-border-color) !important;
	color: var(--tool-font-color) !important;
}
div.videolist div.list > ul li:hover,
div.videolist div.list > ul li.current {
	background: var(--tool-back-hover) !important;
}