@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* =========================================================
 base
========================================================= */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  -webkit-text-size-adjust: 100%;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
}

a {
  color: #3366CC;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================================
 material icons
========================================================= */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/webedi/public/iconfont/MaterialIcons-Regular-e79bfd88537def476913f3ed52f4f4b3.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(/webedi/public/iconfont/MaterialIcons-Regular-570eb83859dc23dd0eec423a49e147fe.woff2) format("woff2"), url(/webedi/public/iconfont/MaterialIcons-Regular-012cf6a10129e2275d79d6adac7f3b02.woff) format("woff"), url(/webedi/public/iconfont/MaterialIcons-Regular-a37b0c01c0baf1888ca812cc0508f6e2.ttf) format("truetype");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  vertical-align: middle;
}

/* =========================================================
 module
========================================================= */
/* common
--------------------------------------------------------- */
.text-center {
  text-align: center;
}

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

.text-orange {
  color: #FF4000;
}

.text-red {
  color: #E00013;
}

.text-grey {
  color: #8C8C8C;
}

.text-blue {
  color: #3366CC;
}

.text-green {
  color: #008000;
}

.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-16 {
  font-size: 16px;
}

.text-24 {
  font-size: 24px;
}

.text-hidden {
  visibility: hidden;
}

.text-none {
  display: none !important;
}

.text-inline {
  display: inline !important;
}

.list-basic > li {
  display: block;
  padding-left: calc(1em * 1.7);
}

.list-basic > li:before {
  content: "●";
  width: calc(1em * 1.7);
  margin-left: calc(-1em * 1.7);
  display: block;
  float: left;
  text-align: center;
  color: #8C8C8C;
}

.list-notice > li {
  display: block;
  padding-left: calc(1em * 1.7);
}

.list-notice > li:before {
  content: "※";
  width: calc(1em * 1.7);
  margin-left: calc(-1em * 1.7);
  display: block;
  float: left;
  text-align: center;
}

.list-number {
  list-style: none;
  counter-reset: listnumber;
}

.list-number > li {
  display: block;
  padding-left: calc(1em * 1.7);
}

.list-number > li:before {
  counter-increment: listnumber;
  content: counter(listnumber) ".";
  width: calc(1em * 1.7);
  margin-left: calc(-1em * 1.7);
  display: block;
  float: left;
  text-align: center;
}

.margin-top--0 {
  margin-top: 0px !important;
}
.margin-left--0 {
  margin-left: 0px !important;
}

.margin-top--2 {
  margin-top: 2px !important;
}

.margin-top--4 {
  margin-top: 4px !important;
}

.margin-top--6 {
  margin-top: 6px !important;
}

.margin-top--8 {
  margin-top: 8px !important;
}

.margin-top--10 {
  margin-top: 10px !important;
}

.margin-top--12 {
  margin-top: 12px !important;
}

.margin-top--14 {
  margin-top: 14px !important;
}

.margin-top--16 {
  margin-top: 16px !important;
}

.margin-top--18 {
  margin-top: 18px !important;
}

.margin-top--20 {
  margin-top: 20px !important;
}

.margin-top--22 {
  margin-top: 22px !important;
}

.margin-top--24 {
  margin-top: 24px !important;
}

.margin-top--26 {
  margin-top: 26px !important;
}

.margin-top--28 {
  margin-top: 28px !important;
}

.margin-top--30 {
  margin-top: 30px !important;
}

.margin-top--32 {
  margin-top: 32px !important;
}

.margin-top--34 {
  margin-top: 34px !important;
}

.margin-top--36 {
  margin-top: 36px !important;
}

.margin-top--38 {
  margin-top: 38px !important;
}

.margin-top--40 {
  margin-top: 40px !important;
}

.padding-top--0 {
  padding-top: 0 !important;
}

.padding-right--0 {
  padding-right: 0 !important;
}

.padding-bottom--0 {
  padding-bottom: 0 !important;
}

.padding-left--0 {
  padding-left: 0 !important;
}

.padding-left--16 {
  padding-left: 16px !important;
}

.border-top--none {
  border-top: none !important;
}

.border-right--none {
  border-right: none !important;
}

.border-bottom--none {
  border-bottom: none !important;
}

.border-left--none {
  border-left: none !important;
}

.background--white {
  background: #FFF !important;
  -webkit-filter: none !important;
          filter: none !important;
}

.ime--active {
  ime-mode: active;
}

.ime--inactive {
  ime-mode: inactive;
}

.ime--disabled {
  ime-mode: disabled;
}

.show-data--after:after {
  content: attr(data-string) "";
}

.show-data--before:before {
  content: attr(data-string) "";
}

.background--light-blue {
  background-color: #c8e6ff;
}

.background--orange {
  background-color: #FBC0AB;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* layout
--------------------------------------------------------- */
.layout {
  width: 100%;
  min-width: 1264px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.layout--login {
  height: auto;
  min-height: 100%;
  min-width: 1263px;
  padding-bottom: 40px;
  overflow: visible;
  background: url(/webedi/public/images/login_background-d448e1a44238978806804686b40edc52.jpg) no-repeat center center fixed;
  background-size: cover;
}

.layout--login-pdf {
  height: auto;
  min-height: 100%;
  padding-bottom: 40px;
  overflow: visible;
  background: url(/webedi/public/images/login_pdf_background-3ec17f87ad31b8729aa10cf824cfa5b0.jpg) no-repeat center center fixed;
  background-size: cover;
}

/* grid
--------------------------------------------------------- */
.grid {
  width: 100%;
  padding: 6.5px;
}

.grid:after {
  content: "";
  display: block;
  clear: both;
}

.grid__left {
  float: left;
}

.grid__left > .grid {
  padding-right: 0;
  padding-left: 0;
}

.grid__right {
  float: right;
}

.grid__right > .grid {
  padding-right: 0;
  padding-left: 0;
}

.grid--stretch {
  display: table;
}

.grid--table-slide-wrap {
  padding-right: 16px;
  padding-left: 16px;
}

.cell {
  padding: 0 8px;
  display: table-cell;
  vertical-align: baseline;
}

.cell--fullsize-block {
  display: block;
}

.cell--spacer {
  visibility: hidden;
}

.grid--valign-center .cell {
  vertical-align: middle;
}

.grid--valign-top .cell {
    vertical-align: top;
}

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

.grid--align-center .cell {
  display: inline-block;
}

/* header
--------------------------------------------------------- */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.layout--edi .header,
.layout--wholesale .header {
  border-bottom: 1px solid #FFF;
}

.layout--rcv .header {
  border-bottom: 8px solid #E00013;
}

.layout--snd .header {
  border-bottom: 8px solid #E00013;
}

.header__system-menu {
  height: 62px;
}

.header__system-menu .grid__left {
  margin-top: 12px;
}

.layout--rcv .header__system-menu .grid__left {
  margin-top: 3px;
}

.layout--snd .header__system-menu .grid__left {
  margin-top: 3px;
}

.header__system-menu .grid__left .cell {
  vertical-align: middle;
}

.system-menu__logo {
  vertical-align: bottom;
}

.system-menu__name {
  font-size: 16px;
  font-weight: bold;
}

.system-menu__icon .material-icons {
  margin-top: 4px;
  color: #8C8C8C;
}

.system-menu__icon .material-icons:hover {
  color: #3366CC;
}

.header__system-menu .grid__right {
  margin-top: 5px;
  font-size: 13px;
}

.header__system-menu .grid__right .cell {
  vertical-align: middle;
}

.system-menu__account-icon .material-icons {
  font-size: 40px;
  color: #8C8C8C;
}

.system-nav {
  text-align: center;
  position: relative;
  z-index: 15;
}

.system-nav__text {
  color: #000;
}
.system-nav__text:hover {
  text-decoration: none;
}

.system-nav__icon {
  color: #8C8C8C;
  position: relative;
}

.system-nav__icon:hover {
  color: #3366CC;
}

a:has(.chatbot_hover) {
  display: inline-block;
}

a:has(.chatbot_hover:hover) {
  background-image: url(/webedi/public/images/chatbot_hover-68e314f041c7a99c64817c4eb2ff4b59.png);
}

.chatbot_hover:hover {
  opacity: 0;
  transition: opacity 0.1s;
}

.system-nav__icon .material-icons[data-badge]:after {
  content: attr(data-badge);
  width: 16px;
  height: 16px;
  padding-top: 2px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -2px;
  right: -7px;
  font-size: 11px;
  text-align: center;
  color: #FFF;
  background: #FF4000;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.system-nav-lv2 {
  width: 120px;
  padding: 8px 0;
  border-radius: 5px;
  display: none;
  position: absolute;
  left: calc((120px - 100%) / -2);
  background: #FFF;
  font-size: 14px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.system-nav:hover .system-nav-lv2 {
  display: block;
}

.system-nav-lv2 a {
  display: block;
}

.system-nav__icon-drawer .material-icons {
  font-size: 32px;
  color: #E00013;
}

.global-nav {
  height: 39px;
  padding: 0 16px;
  display: table;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.global-nav__item {
  height: 100%;
  border-right: 1px solid #FFF;
  display: table-cell;
  cursor: pointer;
  position: relative;
}

.layout--edi .global-nav__item {
  width: 17%;
}

.layout--wholesale .global-nav__item {
  width: 50%;
}

.global-nav__item:hover {
  background-color: #3366CC;
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.global-nav__item:first-child {
  border-left: 1px solid #FFF;
}

.global-nav__item .global-nav-lv1 {
  padding: 6px 16px 6px 50px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
}

.global-nav__item .global-nav-lv1:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #3366CC;
  display: block;
  position: absolute;
  top: 11.5px;
  left: 24px;
}

.global-nav__item .global-nav-lv1:after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 17.5px;
  left: 28px;
  border-top: 4px solid #FFF;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
}

.global-nav-lv2 {
  width: calc(100% + 2px);
  padding: 16px 0;
  margin-left: -1px;
  border: 1px solid #FFF;
  background: #c8e6ff;
  font-size: 14px;
  display: none;
  position: absolute;
  top: 39px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.global-nav__item:hover .global-nav-lv2 {
  display: block;
}

.global-nav-lv2__item a {
  padding: 0 20px;
  color: #000;
  display: block;
}

/* footer
--------------------------------------------------------- */
.footer {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 0;
}

.footer-nav {
  height: 40px;
  padding: 13px 8px;
  background: #DDD;
  font-size: 13px;
  line-height: 1.1;
}

.layout--login .footer-nav,
.layout--login-pdf .footer-nav {
  background: none;
  text-align: center;
}

.footer-link:after {
  content: "";
  display: block;
  clear: both;
}

.footer-link__item {
  float: left;
  padding: 0 8px;
  border-left: 1px solid #000;
}

.footer-link__item:first-child {
  padding-left: 0;
  border-left: none;
}

.footer-button {
  height: 72px;
  background: #FFF;
  display: table;
  -webkit-box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 -3px 1px -2px rgba(0, 0, 0, 0.2), 0 -1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.14), 0 -3px 1px -2px rgba(0, 0, 0, 0.2), 0 -1px 2px 0 rgba(0, 0, 0, 0.12);
}

.footer-button__inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.footer-button__inner .cell {
  display: inline-block;
}

.footer-button__item {
  min-width: 173px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  background: #FFF;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.footer-button__item--light-blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#4da2bc), color-stop(50%, #5bc0de), to(#aee0ee));
  background: linear-gradient(0deg, #4da2bc 0%, #5bc0de 50%, #aee0ee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AEE0EE',endColorstr='#4DA2BC' , GradientType=0);
}

.footer-button__item--light-blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#248dad), color-stop(50%, #0aa1cd), to(#87d2e6));
  background: linear-gradient(0deg, #248dad 0%, #0aa1cd 50%, #87d2e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87D2E6',endColorstr='#248DAD' , GradientType=0);
}

.footer-button__item--blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.footer-button__item--blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.footer-button__item--grey {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.footer-button__item--grey:hover {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#c8e6ff));
  background: linear-gradient(180deg, #f6f6f6 0%, #c8e6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#C8E6FF' , GradientType=0);
}

.footer-button__item[disabled] {
  color: #FFF;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  cursor: auto;
}

.footer-button__item:focus {
  border-color: #4433f9;
}

/* main
--------------------------------------------------------- */
.main {
  width: 100%;
  padding-bottom: 8px;
  overflow-y: auto;
  position: absolute;
  bottom: 40px;
  counter-reset: title;
}

.layout--edi .main,
.layout--wholesale .main {
  top: 112px;
}

.layout--rcv .main {
  top: 80px;
}

.layout--snd .main {
  top: 80px;
}

.layout--error-edi .main,
.layout--error-pdf .main {
  top: 72px;
}

.layout--login .main,
.layout--login-pdf .main {
  width: calc((100% - (16px * 4)) / 4 * 3 + 16px *3);
  min-height: calc(100% - 40px);
  padding: 32px 8px 8px;
  margin: 0 auto;
  position: static;
  overflow-y: visible;
}

.layout--footer-button .main {
  bottom: 112px;
}

/* drawer
--------------------------------------------------------- */
.drawer {
  width: 13.5%;
  overflow-y: auto;
  position: absolute;
  z-index: 30;
  top: 0;
  bottom: 0;
  left: -14%;
  background: #FFF;
  -webkit-box-shadow: 2px 0 2px 0 rgba(0, 0, 0, 0.14), 3px 0 1px -2px rgba(0, 0, 0, 0.2), 1px 0 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 2px 0 2px 0 rgba(0, 0, 0, 0.14), 3px 0 1px -2px rgba(0, 0, 0, 0.2), 1px 0 2px 0 rgba(0, 0, 0, 0.12);
}

.drawer__header {
  height: 80px;
  padding-top: 12px;
  border-bottom: 8px solid #E00013;
  margin-bottom: 16px;
}

.drawer__header .system-nav__icon .material-icons {
  font-size: 32px;
  color: #E00013;
}

.drawer-menu__item {
  padding: 0 16px;
  color: #000;
  font-size: 16px;
  line-height: 32px;
  font-weight: bold;
  display: block;
}

.drawer-menu__item:hover {
  color: #FFF;
  background: #E00013;
  text-decoration: none;
}

.overlay {
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.layout--drawer-opened .drawer {
  left: 0;
}

.layout--drawer-opened .overlay {
  display: block;
}

/* tab
--------------------------------------------------------- */
.tab {
  padding-left: 4px;
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 0;
  font-size: 13px;
  cursor: pointer;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 1px 1px 0 rgba(0, 0, 0, 0.07), 0 2px 1px -2px rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14), 0 1px 1px 0 rgba(0, 0, 0, 0.07), 0 2px 1px -2px rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tab__inner {
  height: 42px;
  padding-left: 8px;
  background: #FFF;
  display: table;
}

.tab__inner .cell {
  vertical-align: middle;
}

/* contents
--------------------------------------------------------- */
.main-title {
  padding: 8px 8px;
}

.main-title__title {
  font-size: 24px;
  font-weight: bold;
}

.main-subtitle {
  font-size: 16px;
  font-weight: bold;
}

.main-subtitle--border {
  border-left: 4px solid;
  padding-left: 12px;
}

.layout--edi .main-subtitle--border,
.layout--wholesale .main-subtitle--border,
.layout--login .main-subtitle--border {
  border-left-color: #324395;
}

.layout--rcv .main-subtitle--border,
.layout--snd .main-subtitle--border,
.layout--login-pdf .main-subtitle--border,
.layout--error-edi .main-subtitle--border,
.layout--error-pdf .main-subtitle--border {
  border-left-color: #E00013;
}

.main-subtitle-button {
  padding: 4px 10px 5px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  background: #FFF;
  display: block;
  font-weight: bold;
  color: #FFF;
  cursor: pointer;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.main-subtitle-button:hover {
  text-decoration: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.main-subtitle-button--grey {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.main-subtitle-button--grey:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#c8e6ff));
  background: linear-gradient(180deg, #f6f6f6 0%, #c8e6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#C8E6FF' , GradientType=0);
}

.main-subtitle-button[disabled] {
  color: #FFF;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  cursor: auto;
}

/* utility area
--------------------------------------------------------- */
.utility {
  padding: 8px 0;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  margin: 8px 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.utility__title {
  padding-left: 8px;
  border-left: 4px solid #324395;
  font-size: 16px;
  font-weight: bold;
}

.utility__button {
  padding: 6px 10px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  background: #FFF;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.utility__button:hover {
  text-decoration: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.utility__button--small {
  padding: 4px 16px 5px;
  font-size: 14px;
}

.utility__button--light-blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#4da2bc), color-stop(50%, #5bc0de), to(#aee0ee));
  background: linear-gradient(0deg, #4da2bc 0%, #5bc0de 50%, #aee0ee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AEE0EE',endColorstr='#4DA2BC' , GradientType=0);
}

.utility__button--light-blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#248dad), color-stop(50%, #0aa1cd), to(#87d2e6));
  background: linear-gradient(0deg, #248dad 0%, #0aa1cd 50%, #87d2e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87D2E6',endColorstr='#248DAD' , GradientType=0);
}

.utility__button--grey {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.utility__button--grey:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#c8e6ff));
  background: linear-gradient(180deg, #f6f6f6 0%, #c8e6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#C8E6FF' , GradientType=0);
}

.utility__data {
  display: none;
}

.utility--opened .utility__data {
  display: block;
}

.utility--opened .utility__hide {
  display: none;
}

.utility__textfield {
  height: 33px;
  display: table;
}

.utility__textfield-label {
  padding: 0 12px;
  height: 33px;
  border: 1px solid #bbbbbb;
  background: #f6f6f6;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}

.utility__textfield-input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: table-cell;
  height: 33px;
  padding: 0 12px;
  vertical-align: middle;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  border-left: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.utility__textfield--invalid .utility__textfield-input {
  border: 2px solid #E00013;
  color: #E00013;
}

.utility__textfield-input[type="number"]::-webkit-outer-spin-button,
.utility__textfield-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.utility__textfield-input[type="number"] {
  -moz-appearance: textfield;
}

.utility__textfield-input::-ms-clear {
  display: none;
}

.utility__textfield-invalid-message {
  display: none;
  color: #E00013;
}

.utility__textfield--invalid .utility__textfield-invalid-message {
  display: block;
}

.utility__datepicker {
  height: 33px;
  display: table;
}

.utility__datepicker-label {
  padding: 0 12px;
  height: 33px;
  border: 1px solid #bbbbbb;
  background: #f6f6f6;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}

.utility__datepicker-input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: table-cell;
  height: 33px;
  padding: 0 12px;
  vertical-align: middle;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  border-left: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.utility__datepicker--invalid .utility__datepicker-input {
  border: 2px solid #E00013;
  color: #E00013;
}

.utility__datepicker-input[type="number"]::-webkit-outer-spin-button,
.utility__datepicker-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.utility__datepicker-input[type="number"] {
  -moz-appearance: textfield;
}

.utility__datepicker-input::-ms-clear {
  display: none;
}

.utility__datepicker-invalid-message {
  display: none;
  color: #E00013;
}

.utility__datepicker--invalid .utility__datepicker-invalid-message {
  display: block;
}

.utility__pulldown {
  height: 33px;
  display: table;
  position: relative;
}

.utility__pulldown:before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 12px;
  width: 8px;
  height: 12px;
  border-top: 6px solid #8C8C8C;
  border-right: 4px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 4px solid transparent;
  pointer-events: none;
}

.utility__pulldown-label {
  padding: 0 12px;
  height: 33px;
  border: 1px solid #bbbbbb;
  background: #f6f6f6;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}

.utility__pulldown-select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 33px;
  padding: 0 29px 0 8px;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  border-left: none;
  display: table-cell;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.utility__pulldown-select::-ms-expand {
  display: none;
}

.utility__checkbox {
  height: 33px;
  display: table;
}

.utility__checkbox-label {
  padding: 0 12px;
  height: 33px;
  border: 1px solid #bbbbbb;
  background: #f6f6f6;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}

.utility__checkbox-input {
  display: table-cell;
  height: 33px;
  padding: 0 12px;
  vertical-align: middle;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  border-left: none;
  background: #FFF;
}

.utility__checkbox-input .checkbox {
  margin-left: 12px;
}

.utility__checkbox-input .checkbox:first-child {
  margin-left: 0;
}

.utility__radio {
  height: 33px;
  display: table;
}

.utility__radio-label {
  padding: 0 12px;
  height: 33px;
  border: 1px solid #bbbbbb;
  background: #f6f6f6;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}

.utility__radio-input {
  display: table-cell;
  height: 33px;
  padding: 0 12px;
  vertical-align: middle;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  border-left: none;
  background: #FFF;
}

.utility__radio-input .radio {
  margin-left: 12px;
}

.utility__radio-input .radio:first-child {
  margin-left: 0;
}

.utility__upload-textbox {
  padding: 2px 12px;
  border: 1px solid #DDD;
  background: #FFF;
  overflow-y: auto;
  cursor: pointer;
}

.utility__upload--dirty .utility__upload-textbox {
  cursor: auto;
}

.utility__upload-placeholder {
  color: #8C8C8C;
}

.utility__upload--dirty .utility__upload-placeholder {
  display: none;
}

.utility__upload-list {
  word-break: break-all;
}

.utility__upload-list li {
  padding-left: 24px;
}

.utility__upload-list--cancel {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
  margin-left: -24px;
  background: #8C8C8C;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

.utility__upload-list--cancel:before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 7px;
  left: 3px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.utility__upload-list--cancel:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 7px;
  left: 3px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.utility__upload-button {
  cursor: pointer;
}

.utility__upload-input {
//  display: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}

.utility--narrow {
  padding-right: 8px;
  padding-left: 8px;
}

.js-utility .utility__invalid-message {
  color: #E00013;
  display: none;
}

.js-utility--invalid .utility__valid-message {
  display: none;
}

.js-utility--invalid .utility__invalid-message {
  display: block;
}

/* accordion
--------------------------------------------------------- */
.accordion,
.accordion-lv2 {
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  border-left: 1px solid #DDD;
  position: relative;
}
.accordion-lv1 {
  position: relative;
}

.accordion:first-child {
  border-top: 1px solid #DDD;
}

.accordion__title {
  padding: 8px 48px 8px 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.accordion__button {
  width: 24px;
  height: 24px;
  background: #3366CC;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.accordion__button:before {
  content: "";
  display: block;
  background: #FFF;
  width: 10px;
  height: 2px;
  position: absolute;
  top: 11px;
  left: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion__button:after {
  content: "";
  display: block;
  background: #FFF;
  width: 10px;
  height: 2px;
  position: absolute;
  top: 11px;
  right: 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion--open .accordion__button:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion--open .accordion__button:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion__data,
.accordion-lv1__data,
.accordion-lv2__data {
  //padding: 0 4px 8px;
  display: none;
}

.accordion--open .accordion__data {
  display: block;
}
.accordion-lv1--open .accordion-lv1__data {
  display: block;
}
.accordion-lv2--open .accordion-lv2__data {
  display: block;
}

/* stepper area
--------------------------------------------------------- */
.stepper {
  padding: 8px 0;
  border: 1px solid #DDD;
  border-radius: 5px;
  margin: 8px 16px;
  counter-reset: stepper;
}

.stepper + .utility {
  margin-top: 16px;
}

.stepper__item {
  padding-left: 96px;
  position: relative;
  color: #8C8C8C;
}

.stepper .cell:first-child .stepper__item {
  padding-left: 0;
}

.stepper__item:before {
  content: "";
  width: 76px;
  height: 2px;
  margin-top: -1px;
  background: #DDD;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}

.stepper .cell:first-child .stepper__item:before {
  content: none;
}

.stepper__item:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #DDD;
  margin-top: -4px;
  display: block;
  position: absolute;
  left: 72px;
  top: 50%;
}

.stepper .cell:first-child .stepper__item:after {
  content: none;
}

.stepper__item span {
  height: 24px;
  padding-left: 32px;
  display: inline-block;
  position: relative;
}

.stepper__item span:before {
  counter-increment: stepper;
  content: counter(stepper);
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #8C8C8C;
  color: #FFF;
  font-weight: normal;
  text-align: center;
  line-height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

.stepper__item--active {
  color: #000;
  font-weight: bold;
}

.stepper__item--active span:before {
  background: #324395;
}

.stepper__item--checked span:before {
  content: "\E5CA";
  font-family: "Material Icons";
}

/* modal
--------------------------------------------------------- */
.modal {
  width: 90%;
  margin-left: -45%;
  position: absolute;
  z-index: 120;
  top: 64px;
  bottom: 64px;
  left: 50%;
  background: #FFF;
  display: none;
}

.modal.modal--active {
  display: block;
}

.modal-overlay {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.layout--modal-opened .modal-overlay {
  display: block;
}

.modal-main {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 72px;
  padding-bottom: 8px;
  overflow-y: auto;
}

.modal-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.modal-footer-button {
  height: 72px;
  background: #FFF;
  display: table;
}

.modal-footer-button__inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.modal-footer-button__inner .cell {
  display: inline-block;
}

.modal-footer-button__item {
  min-width: 173px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  background: #FFF;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.modal-footer-button__item--light-blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#4da2bc), color-stop(50%, #5bc0de), to(#aee0ee));
  background: linear-gradient(0deg, #4da2bc 0%, #5bc0de 50%, #aee0ee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AEE0EE',endColorstr='#4DA2BC' , GradientType=0);
}

.modal-footer-button__item--light-blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#248dad), color-stop(50%, #0aa1cd), to(#87d2e6));
  background: linear-gradient(0deg, #248dad 0%, #0aa1cd 50%, #87d2e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87D2E6',endColorstr='#248DAD' , GradientType=0);
}

.modal-footer-button__item--blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.modal-footer-button__item--blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.modal-footer-button__item--grey {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.modal-footer-button__item--grey:hover {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#c8e6ff));
  background: linear-gradient(180deg, #f6f6f6 0%, #c8e6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#C8E6FF' , GradientType=0);
}

.modal-footer-button__item[disabled] {
  color: #FFF;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  cursor: auto;
}

.modal-footer-button__item:focus {
  border-color: #4433f9;
}

/* table
--------------------------------------------------------- */
.table {
  width: 100%;
  border: 1px solid #DDD;
  table-layout: fixed;
}

.table--slide {
  border-right: none;
  border-left: none;
  position: relative;
  left: 0;
}

.table--slide .table__cell:first-child {
  border-left: none;
}

.table--slide .table__cell:last-child {
  border-right: none;
}

.table--check {
  width: 47px;
  border-left: none;
}

.table--check .table__cell:first-child {
  border-left: none;
}

.table--hide {
  display: none;
}

.table-frame {
  position: relative;
  overflow: hidden;
}

.table__row--hide {
  display: none;
}

.table__cell {
  padding: 12px;
  border: 1px solid #bbbbbb;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  min-height:44px;
}

.table__cell__4rows {
  padding-bottom: 4px;
}

.table--valign-center .table__cell {
  vertical-align: middle;
}

.table__header .table__cell {
  font-weight: bold;
  text-align: left;
  position: relative;

  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
/*
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
*/
  background-color: rgba(221,221,221,0.6);
  background-clip: padding-box;
}
.table__header .table__cell:not(:target) {
  filter: none;
}


.table__cell--sortable {
  padding-left: 30px;
  cursor: pointer;
}

.table__cell--sortable:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(0%, #f6f6f6), to(#dddddd));
  background: linear-gradient(0, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DDDDDD',endColorstr='#F6F6F6' , GradientType=0);
}

.table__cell--sortable:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 12px;
  width: 8px;
  height: 12px;
  border-top: 6px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #3366CC;
  border-left: 4px solid transparent;
  pointer-events: none;
}

.table__cell--sortable:after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  left: 12px;
  width: 8px;
  height: 12px;
  border-top: 6px solid #3366CC;
  border-right: 4px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 4px solid transparent;
  pointer-events: none;
}

.table__cell--sortable.asc:before {
  border-bottom-color: #8C8C8C;
}

.table__cell--sortable.asc:after {
  content: none;
}

.table__cell--sortable.desc:before {
  content: none;
}

.table__cell--sortable.desc:after {
  border-top-color: #8C8C8C;
}

.table__body {
  border: 1px solid #DDD;
}

.table__body .table__row:not(.table__row--no-hover):hover {
  background: #c8e6ff;
}

.table__body .table__row--hover {
  background: #c8e6ff;
}

.table__body .table__row--checked {
  background: #c8e6ff;
}

/* table__body配下にcheckbox__buttonの動作不良の対応 */
.table__body__no_select {
  border: 1px solid #DDD;
}

.table__body__no_select .table__row:not(.table__row--no-hover):hover {
  background: #c8e6ff;
}

.table__body__no_select .table__row--hover {
  background: #c8e6ff;
}

.table__body__no_select .table__row--checked {
  background: #c8e6ff;
}

.table__cell--new:before {
  content: url("/webedi/public/images/icon_new-62dff1e05d085d79b1bef08ca2568926.png");
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.table__cell--unread:before {
  content: url("/webedi/public/images/icon_unread-956bf78798a302f6c04fd55b26e48b5f.png");
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.table__cell--hide {
  display: none;
}

.table__cell--connect-vertical {
  border-top: none;
  border-bottom: none;
}

.table__readmore {
  max-height: 18px;
  overflow: hidden;
  position: relative;
  white-space: normal;
}

.table__readmore.table__readmore--2lines {
  max-height: 36px;
}

.table__readmore.table__readmore--3lines {
  max-height: 54px;
}

.table__readmore.table__readmore--opened {
  max-height: none;
}

.table__readmore-open-readmore {
  display: none;
  padding-left: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #FFF;
}

.table:not(.table--layout) .table__body .table__row:hover .table__readmore-open-readmore {
  background: #c8e6ff;
}

.table:not(.table--layout) .table__body .table__row--checked .table__readmore-open-readmore {
  background: #c8e6ff;
}

.table__readmore--active .table__readmore-open-readmore {
  display: block;
}

.table__readmore--opened .table__readmore-open-readmore {
  display: none;
}

.table__readmore-close-readmore {
  text-align: right;
  display: none;
}

.table__readmore--opened .table__readmore-close-readmore {
  display: block;
}

.table__icon-link {
  height: 24px;
  padding: 0 6px;
  border-radius: 5px;
  background: #3366CC;
  text-align: center;
  color: #FFF;
  display: inline-block;
}

.table__icon-link .material-icons {
  font-size: 20px;
}

.table__icon-link--white-back {
  background: none;
  color: #3366CC;
}

.table__icon-link--white-back .material-icons {
  font-size: 24px;
}

.table--narrow .table__cell {
  padding-right: 8px;
  padding-left: 8px;
}

.table--narrow .table__cell--sortable {
  padding-left: 32px;
}

.table--narrow .table__cell--sortable:before {
  left: 12px;
}

.table--narrow .table__cell--sortable:after {
  left: 12px;
}

.table--short .table__cell {
  padding-top: 4px;
  padding-bottom: 4px;
}

.table--short .table__cell--sortable {
  padding-left: 28px;
}

.table--short .table__cell--sortable:before {
  top: 4px;
  left: 12px;
}

.table--short .table__cell--sortable:after {
  top: 20px;
  left: 12px;
}

.table--no-break .table__cell {
  white-space: normal;
  overflow: visible;
  text-overflow: inherit;
}

.table__rows {
  display: block;
  position: relative;
  border-right: 1px solid #bbbbbb;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
}

.table__rows:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #DDD;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
  pointer-events: none;
}

.table__rows:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 6px;
  width: 12px;
  height: 16px;
  border-top: 8px solid #3366CC;
  border-right: 6px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
}

.table__rows-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 24px;
  padding: 0 32px 0 8px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  border-left: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  display: block;
  line-height: 22px;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.table__rows-select::-ms-expand {
  display: none;
}

.pager:after {
  content: "";
  display: block;
  clear: both;
}

.pager__item {
  width: 24px;
  height: 24px;
  border: 1px solid #bbbbbb;
  margin-left: 16px;
  float: left;
  color: #3366CC;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.pager__item:first-child {
  margin-left: 0;
}

.pager__item--first:before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  border-top: 6px solid transparent;
  border-right: 8px solid #3366CC;
  border-bottom: 6px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 5px;
  left: 0;
}

.pager__item--first:after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background: #3366CC;
  position: absolute;
  top: 5px;
  left: 5px;
}

.pager__item--first.pager__item--disabled:before {
  border-right-color: #8C8C8C;
}

.pager__item--first.pager__item--disabled:after {
  background: #8C8C8C;
}

.pager__item--previous:before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  border-top: 6px solid transparent;
  border-right: 8px solid #3366CC;
  border-bottom: 6px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 5px;
  left: -2px;
}

.pager__item--previous.pager__item--disabled:before {
  border-right-color: #8C8C8C;
}

.pager__item--next:before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  border-top: 6px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #3366CC;
  position: absolute;
  top: 5px;
  left: 8px;
}

.pager__item--next.pager__item--disabled:before {
  border-left-color: #8C8C8C;
}

.pager__item--last:before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  border-top: 6px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #3366CC;
  position: absolute;
  top: 5px;
  left: 6px;
}

.pager__item--last:after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background: #3366CC;
  position: absolute;
  top: 5px;
  left: 15px;
}

.pager__item--last.pager__item--disabled:before {
  border-left-color: #8C8C8C;
}

.pager__item--last.pager__item--disabled:after {
  background: #8C8C8C;
}

.pager__item--disabled {
  cursor: auto;
}

.pager__number {
  float: left;
}

.pager__number:after {
  content: "";
  display: block;
  clear: both;
}

.pager__number > li {
  margin-left: 16px;
  display: block;
  float: left;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.pager__number > li > a {
  padding: 0 5px;
  height: 24px;
  border: 1px solid #bbbbbb;
  display: block;
  color: #3366CC;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.pager__number > li.active > a {
  color: #FFF;
  cursor: auto;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#8c8c8c), to(#b2b2b2));
  background: linear-gradient(0deg, #8c8c8c 0%, #b2b2b2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#B2B2B2',endColorstr='#8C8C8C' , GradientType=0);
}

.pager__number > li.disabled > a {
  cursor: default;
}

.table__cell-title:after {
  content: "";
  display: block;
  clear: both;
}

.table__cell-title.grid {
  padding: 7px 4px;
}

.table__cell-title--no-control.grid {
  padding: 12px 4px;
}

.table-title {
  padding-left: 16px;
  font-weight: bold;
  position: relative;
  float: left;
}

.table-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 2px;
  height: 15px;
  background: black;
}

.table-title:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 2px;
  height: 15px;
  background: black;
}

.layout--edi .table-title:before,
.layout--edi .table-title:after,
.layout--wholesale .table-title:before,
.layout--wholesale .table-title:after {
  background: #324395;
}

.layout--rcv .table-title:before,
.layout--rcv .table-title:after,
.layout--snd .table-title:before,
.layout--snd .table-title:after {
  background: #E00013;
}

.table-title span {
  font-weight: normal;
}

.table-title-button {
  padding: 0 16px;
  border-radius: 5px;
  display: block;
  color: #FFF;
  float: right;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.table-title-button:hover {
  text-decoration: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.table__sidebar {
  width: 48px;
  padding-top: 12px;
  border: 1px solid #bbbbbb;
  text-align: center;
  vertical-align: top;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.table__sidebar_left {
  width: 48px;
  padding-top: 12px;
  border: 1px solid #bbbbbb;
  border-right-style: none;
  text-align: center;
  vertical-align: top;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.table__sidebar .material-icons {
  color: #8C8C8C;
}

.table__sidebar_left .material-icons {
  color: #8C8C8C;
}

.table__sidebar--active {
  cursor: pointer;
}

.table__sidebar--active .material-icons {
  color: #3366CC;
}

.table__body-header {
  text-align: left;
  font-weight: bold;
  background: #F6F6F6;
  vertical-align: middle;
  padding-top: 14px;
}

.table--layout .table__body .table__row:hover {
  background: inherit;
}

.table--layout .table__cell {
  white-space: normal;
}

.table--right-25 {
  width: 25%;
  float: right;
}

.table--left-75 {
  width: calc(75% - 16px);
  float: left;
  box-sizing: border-box;
}

.table--body-hover .table__body:hover {
  background: #c8e6ff;
}

.table__cell-input {
  padding: 8px 12px;
  vertical-align: middle;
}

.table-textfield {
  display: inline-block;
  position: relative;
}

.table-textfield__input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 32px;
  padding: 0 12px;
  vertical-align: middle;
  border: 2px solid #DDD;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.table-textfield__input[required] {
  border-color: #8C8C8C;
}

.table-textfield__input[readonly] {
  border-color: #8C8C8C;
  background: #DDD;
}

.table-textfield--invalid .table-textfield__input {
  border-color: #E00013;
  color: #E00013;
}

.table-textfield__input::-ms-clear {
  display: none;
}

.table-textfield__input[type="number"]::-webkit-outer-spin-button,
.table-textfield__input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.table-textfield__input[type="number"] {
  -moz-appearance: textfield;
}

.table-textfield__placeholder {
  position: absolute;
  top: 7.5px;
  left: 14px;
  color: #8C8C8C;
  pointer-events: none;
}

.table-textfield--active .table-textfield__placeholder {
  display: none;
}

.table-textfield--dirty .table-textfield__placeholder {
  display: none;
}

.table__cell-input.text-right .table-textfield__placeholder {
  right: 14px;
}

.table-textfield__invalid-message {
  display: none;
  color: #E00013;
}

.table-textfield--invalid .table-textfield__invalid-message {
  display: block;
}

.table-datepicker {
  display: inline-block;
  position: relative;
}

.table-datepicker__input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 32px;
  padding: 0 12px;
  vertical-align: middle;
  border: 2px solid #DDD;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.table-datepicker__input[required] {
  border-color: #8C8C8C;
}

.table-datepicker--invalid .table-datepicker__input {
  border-color: #E00013;
  color: #E00013;
}

.table-datepicker__input::-ms-clear {
  display: none;
}

.table-datepicker__placeholder {
  position: absolute;
  top: 7.5px;
  left: 14px;
  color: #8C8C8C;
  pointer-events: none;
}

.table-datepicker--active .table-datepicker__placeholder {
  display: none;
}

.table-datepicker--dirty .table-datepicker__placeholder {
  display: none;
}

.table-datepicker--invalid .material-icons {
  color: #E00013;
}

.table-datepicker__invalid-message {
  display: none;
  color: #E00013;
}

.table-datepicker--invalid .table-datepicker__invalid-message {
  display: block;
}

.table-pulldown {
  display: inline-block;
  position: relative;
}

.table-pulldown:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: 12px;
  width: 8px;
  height: 12px;
  border-top: 6px solid #8C8C8C;
  border-right: 4px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 4px solid transparent;
  pointer-events: none;
}

.table-pulldown__select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 32px;
  padding: 0 30px 0 12px;
  border: 2px solid #bbbbbb;
  color: #000;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.table-pulldown__select[required] {
  border-color: #8C8C8C;
}

.table-pulldown--required .table-pulldown__select {
  color: #8C8C8C;
}

.table-pulldown--active .table-pulldown__select {
  color: #000;
}

.table-pulldown--dirty .table-pulldown__select {
  color: #000;
}

.table-pulldown__invalid .table-pulldown__select {
  border-color: #E00013;
  color: #E00013;
}
.table-pulldown__invalid-message {
  display: none;
  color: #E00013;
}
.table-pulldown__invalid .table-pulldown__invalid-message {
  display: block;
}

.table-pulldown__select::-ms-expand {
  display: none;
}

.table-img-icon {
  display: inline-block;
}

.table-textarea {
  display: inline-block;
  position: relative;
}

.table-textarea__input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 2px 12px;
  vertical-align: middle;
  border: 2px solid #DDD;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  resize: none;
  overflow: auto;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font: inherit;
}

.table-textarea__input[required] {
  border-color: #8C8C8C;
}

.table-textarea__input[readonly] {
  border-color: #8C8C8C;
  background: #DDD;
}

.table-textarea--invalid .table-textarea__input {
  border-color: #E00013;
  color: #E00013;
}

.table-textarea__placeholder {
  position: absolute;
  top: 4px;
  left: 14px;
  color: #8C8C8C;
  pointer-events: none;
}

.table-textarea--active .table-textarea__placeholder {
  display: none;
}

.table-textarea--dirty .table-textarea__placeholder {
  display: none;
}

.table-textarea__invalid-message {
  display: none;
  color: #E00013;
}

.table-textarea--invalid .table-textarea__invalid-message {
  display: block;
}

.table-tab {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.table-tab__item {
  display: table-cell;
  padding: 12px;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-left: 1px solid #bbbbbb;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  text-decoration: none;
  border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}

.table-tab__item.table-tab__item--active {
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.table-note {
  padding: 8px 0;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  border-left: 1px solid #bbbbbb;
  display: none;
}

.table-note--active {
  display: block;
}

.table-button {
  line-height: 24px;
  padding: 0 16px;
  border-radius: 5px;
  margin-left: 16px;
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
  outline: none;
  border: 0;
  cursor: pointer;
}

.table-button:hover:not(:disabled) {
  text-decoration: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.table-button[disabled] {
  color: #FFF;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  cursor: auto;
  border: 1px solid #B2B2B2;
}

.table-button:first-child {
  margin-left: 0;
}

.table-accordion .table__body {
  display: none;
}

.table-accordion__close {
  display: none;
}

.table-accordion--opened .table__body {
  display: table-row-group;
}

.table-accordion--opened .table-accordion__open {
  display: none;
}

.table-accordion--opened .table-accordion__close {
  display: block;
}

/* radio
--------------------------------------------------------- */
.radio {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}

.radio:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #8C8C8C;
  border-radius: 50%;
}

.radio--checked:before {
  border-color: #3366CC;
}

.radio--checked:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #3366CC;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
}

.radio__button {
//  display: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}

.radio__label {
  padding-left: 8px;
}

.radio__button--focus:before {
  border-color: #4433f9;
}
.radio__button--focus:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #4433f9;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
}


/* checkbox
--------------------------------------------------------- */
.checkbox {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}

.checkbox:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #8C8C8C;
  border-radius: 20%;
}

.checkbox--checked:before {
  border-color: #3366CC;
  background: #3366CC;
}

.checkbox--checked:after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.checkbox__button {
  //display: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}

.checkbox__label {
  padding-left: 8px;
}

.checkbox__button--focus:before {
  border-color: #4433f9;
}
.checkbox__button--focus:after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* tooltip
--------------------------------------------------------- */
.tooltip {
  display: inline-block;
  position: relative;
}

.tooltip__content {
  display: none;
  padding: 0 8px;
  border: 1px solid #000;
  background: #FFF9B0;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  word-break: keep-all;
}

.tooltip:hover .tooltip__content {
  display: block;
}

/* form
--------------------------------------------------------- */
.js-form .form__invalid-message {
  color: #E00013;
  display: none;
}

.js-form--invalid .form__valid-message {
  display: none;
}

.js-form--invalid .form__invalid-message {
  display: block;
}

/* msg
--------------------------------------------------------- */
.msg {
  font-size: 17px;
  background-color: #ffe4b5;
  font-weight: bold;
}

/* =========================================================
 login
========================================================= */
.login {
  width: 100%;
}

.login:after {
  content: "";
  display: block;
  clear: both;
}

.login > .cell {
  display: block;
  float: left;
}

.login > .cell--2-of-3 {
  width: calc(100% / 3 * 1.9);
}

.login > .cell--1-of-3 {
  width: calc(100% / 3 * 1.1);
}

/* login main area
--------------------------------------------------------- */
.login-main {
  padding: 16px 0;
  border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.login-main__divider {
  width: 100%;
  height: 8px;
  margin: 8px 0;
}

.layout--login .login-main__divider {
  background: -webkit-gradient(linear, left top, right top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(90deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3366CC',endColorstr='#4DCEFF' , GradientType=1);
}

.layout--login-pdf .login-main__divider {
  background: #E00013;
  -webkit-filter: none;
          filter: none;
}

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

.login-main__buttons .cell {
  display: inline-block;
  vertical-align: middle;
}

.login-main__buttons-item {
  width: 104px;
  height: 40px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  background: #FFF;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Meiryo UI", "メイリオ", Meiryo, Verdana, "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.login-main__buttons-item--blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.login-main__buttons-item--blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.login-main__buttons-item--grey {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.login-main__buttons-item--grey:hover {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#c8e6ff));
  background: linear-gradient(180deg, #f6f6f6 0%, #c8e6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#C8E6FF' , GradientType=0);
}

/* login tab area
--------------------------------------------------------- */
.tabs {
  width: 100%;
}

.tabs__bar {
  width: 100%;
  position: relative;
}

.tabs__bar:after {
  content: "";
  display: block;
  clear: both;
}

.tabs__bar-item {
  width: 50%;
  height: 40px;
  border-radius: 5px 5px 0 0 / 5px 5px 0 0;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  line-height: 40px;
  font-weight: bold;
  display: block;
  float: left;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.tabs__bar-item:hover {
  text-decoration: none;
}

.tabs__bar-item img {
  vertical-align: middle;
}

.tabs__bar-item--active {
  background: #FFF;
  -webkit-filter: none;
          filter: none;
  color: #000;
  z-index: 20;
}

.tabs__bar-item--active img {
  display: none;
}

.tabs__bar-item--active .tabs__bar-item-icon--active {
  display: inline;
}

.tabs__bar-item:not(.tabs__bar-item--active) img {
  display: inline;
}

.tabs__bar-item:not(.tabs__bar-item--active) .tabs__bar-item-icon--active {
  display: none;
}

.tabs__contents {
  position: relative;
  z-index: 30;
  border-radius: 0 0 5px 5px;
  background: #FFF;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.tabs__panel {
  padding: 8px 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden;
}

.tabs__panel--active {
  position: relative;
  visibility: visible;
}

.tabs__button {
  width: 100%;
  height: 32px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  display: block;
  text-align: center;
  font-weight: bold;
  line-height: 30px;
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.tabs__button:hover {
  text-decoration: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.tabs__button .material-icons {
  line-height: 30px;
  margin-top: -2px;
}

/* login info area
--------------------------------------------------------- */
.info {
  width: 100%;
  padding: 8px 0;
  border-radius: 5px;
  margin-top: 16px;
  background: #FFF;
  font-size: 14px;
  line-height: 24px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}

.info__title {
  font-weight: bold;
}

.info__data {
  max-height: 48px;
  overflow: hidden;
  position: relative;
}

.info__item--opened .info__data {
  max-height: none;
}

.info__open-readmore {
  display: none;
  padding-left: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #FFF;
}

.info__item--readmore-active .info__open-readmore {
  display: block;
}

.info__item--opened .info__open-readmore {
  display: none;
}

.info__close-readmore {
  text-align: right;
  display: none;
}

.info__item--opened .info__close-readmore {
  display: block;
}

/* =========================================================
 19.html
========================================================= */
.list-edit {
  width: 100%;
  padding: 0 8px;
  display: table;
}

.list-edit__cell {
  display: table-cell;
  vertical-align: baseline;
}

.list-edit__cell .grid {
  padding-right: 0;
  padding-left: 0;
}

.list-edit__button {
  padding: 4px;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  background: #FFF;
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
  cursor: pointer;
  white-space: nowrap;
}

.list-edit__button--blue {
  color: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#3366cc), color-stop(16.15%, #356dcf), color-stop(39.47%, #3a80d9), color-stop(67.13%, #419fe8), color-stop(97.91%, #4ccbfd), to(#4dceff));
  background: linear-gradient(0deg, #3366cc 0%, #356dcf 16.15%, #3a80d9 39.47%, #419fe8 67.13%, #4ccbfd 97.91%, #4dceff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4DCEFF',endColorstr='#3366CC' , GradientType=0);
}

.list-edit__button--blue:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#324395), color-stop(17.92%, #2e4a9b), color-stop(43.81%, #235dac), color-stop(74.35%, #127cc8), to(#009ce4));
  background: linear-gradient(0deg, #324395 0%, #2e4a9b 17.92%, #235dac 43.81%, #127cc8 74.35%, #009ce4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CE4',endColorstr='#324395' , GradientType=0);
}

.list-edit__button--grey {
  color: #3366CC;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dddddd));
  background: linear-gradient(180deg, #f6f6f6 0%, #dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#DDDDDD' , GradientType=0);
}

.list-edit__button--grey:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#c8e6ff));
  background: linear-gradient(180deg, #f6f6f6 0%, #c8e6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6F6F6',endColorstr='#C8E6FF' , GradientType=0);
}

.list-edit__button--add {
  padding-left: 8px;
}

.list-edit__button--delete {
  padding-right: 8px;
}

.list-edit__button[disabled] {
  color: #FFF;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  cursor: auto;
}

.list-edit__cell-buttons--original {
  position: fixed;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.list-edit__cell-buttons--dummy {
  visibility: hidden;
}

/* =========================================================
 error page
========================================================= */
.main-title--error {
  padding-top: 72px;
}

.error-icon {
  font-size: 80px;
}

.table--error {
  width: auto;
  border: none;
}

.table--error .table__cell {
  border: none;
  text-align: left;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
          box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
  height: 28px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  line-height: 16px;
  height: 28px;
  padding: 10px;
  z-index: 3;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
}
.flatpickr-months .flatpickr-prev-month.disabled,
.flatpickr-months .flatpickr-next-month.disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  left: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  right: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57,57,57,0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57,57,57,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57,57,57,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 100;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 6.16px 0 0 0;
  line-height: 1;
  height: 28px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 100;
  color: inherit;
  display: inline-block;
  margin-left: 0;
  padding: 0;
}

.cur-month:before {
     content: "年　"
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: baseline;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
          box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
      -ms-flex-preferred-size: 14.2857143%;
          flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
          box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57,57,57,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  cursor: not-allowed;
  color: rgba(57,57,57,0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
          box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
          box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57,57,57,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f3f3;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.login-main__buttons-item[disabled] {
  color: #FFF;
  background: #DDD;
  -webkit-filter: none;
          filter: none;
  cursor: auto;
}
/* tooltip2 ログイン後新着情報登録で使用
--------------------------------------------------------- */
.tooltip2 {
  display: inline-block;
  position: relative;
}
.tooltip2__content {
  display: none;
  padding: 0 5px;
  border: 1px solid #000;
  background: #FFF9B0;
  position: absolute;
  top: 30%;
  left: 85%;
  z-index: 20;
  word-break: keep-all;
}
.tooltip2:hover .tooltip2__content {
  display: block;
}
/* テーブルで文字列を折り返して表示*/
.overflowWrap {
    white-space:normal;
    overflow:visible;
    word-break:break-all;
    word-wrap:break-word;
}
/* CMNW04010、CMNW04020で使用 */
.login > .cell--3-of-3 {
  width: calc(100%);
}


/* ==========================================================
 チュートリアル
========================================================== */
/* sec-cmn
---------------------------------------------------------- */
.section-main {
  width: 80%;
  margin: 0 auto;
}

/* section last margin */
section:last-of-type {
  margin-bottom: 0;
}


/* section-box
---------------------------------------------------------- */
.section-box {
  position: relative;
  padding: 29px 40px;
  border: 1px solid #DDD;
  border-radius: 5px;
}
  .section-box .image {
    float: left;
    width: 240px;
    text-align: center;
  }
  .section-box .text {
    overflow: hidden;
    padding: 0 10px 0 40px;
  }
    .section-box .text p { margin-top: 10px; }
    .section-box .text > .title {
      margin: -5px 0 15px 0;
      font-size: 28px;
      font-weight: bold;
    }
.section-box.next-01 { margin-bottom: 30px; }
  .section-box.next-01:after {
    position: absolute;
    left: 50%;
    bottom: -31px;
    width: 128px;
    height: 30px;
    margin-left: -64px;
    background: url(../img/bg_box_01.png) no-repeat;
    content: "";
  }
.section-box.next-02 { margin-bottom: 66px; }
  .section-box.next-02:after {
    position: absolute;
    left: 50%;
    bottom: -46px;
    z-index: -1;
    width: 178px;
    height: 46px;
    margin-left: -89px;
    background: url(../html/img/bg_box_02.png) no-repeat;
    content: "";
  }

.section-box2 {
  position: relative;
  padding: 20px 40px;
  border: 1px solid #DDD;
  border-radius: 5px;
  top:20px;
  width: 45%;
  margin:0 20px;
}

/* nav-breadcrumb
---------------------------------------------------------- */
.nav-breadcrumb {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  padding: 15px 0 15px;
  text-align: left;
}
  .nav-breadcrumb li {
    position: relative;
    float: left;
    margin-left: 13px;
    padding-left: 14px;
    background: url(../html/img/ico_breadcrumb_01.png) left center no-repeat;
    font-size: 14px;
    color: #666;
  }
  .nav-breadcrumb li:first-child {
    margin-left: 0;
    padding-left: 0;
    background: none;
  }


/* title_line
---------------------------------------------------------- */
.title_line {
  position: relative;
  width: 80%;
  margin: 0 auto;
  display: block;
  padding-bottom: 22px;
  border-bottom: 1px solid #000;
  font-size: 36px;
  font-weight: bold;
  color: #e50012;
  line-height: 1.2;
  text-align: center;
}

.title_line:after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 16px;
  height: 10px;
  margin-left: -8px;
  background: url(../html/img/ico_arrow_down_01.png) no-repeat;
  content: "";
}

.title_line {
  margin-bottom: 60px;
  padding-bottom: 33px;
  font-weight: normal;
  color: #222;
  letter-spacing: 2px
}

  .title_line:after {
    bottom: -21px;
    width: 40px;
    height: 22px;
    margin-left: -20px;
    background: url(../html/img/ico_arrow_down_02.png) no-repeat;
  }


.balloon {
  position: relative;
  width: 80%;
  margin: 25px auto 50px auto;
  display: block;
  padding: 22px 10px;
  line-height: 1.2;
  text-align: center;
  font-size: 36px;
  background: #FFF;
  border-bottom: solid 2px #324395;
  border-radius: 0px;
  box-sizing: border-box;
}

.balloon:before{
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon:after{
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #324395;
  z-index: 1;
}

.balloon p {
    margin: 0;
    padding: 0;
}

.title span {
  height: 24px;
  padding-left: 32px;
  display: inline-block;
  position: relative;
}

.title span:before {
  counter-increment: title;
  content: counter(title);
  display: block;
  font-size:18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #324395;
  color: #FFF;
  font-weight: normal;
  text-align: center;
  line-height: 22px;
  position: absolute;
  top: 6px;
  left: 0;
}

input[type="password"]:placeholder-shown {
    color: black;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
input[type="password"]::-webkit-input-placeholder {
    color: black;
}

/* Firefox 18- */
input[type="password"]:-moz-placeholder {
    color: black; opacity: 1;
}

/* Firefox 19+ */
input[type="password"]::-moz-placeholder {
    color: black; opacity: 1;
}

/* IE 10+ */
input[type="password"]:-ms-input-placeholder {
    color: black;
}