@charset 'UTF-8';

/* =====================================
  base
------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*::before,
*::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  font-size: 62.5%;
  line-height: 1.5;
  background: #fff;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', Meiryo, Helvetica, Arial, sans-serif;
  font-size: 1.6em;
  min-width: 984px;
  color: #333;
}

input,
button,
select,
optgroup,
textarea {
  font: inherit;
  color: inherit;
}

input[type='submit'],
input[type='button'],
input[type='image'],
input[type='reset'],
input[type='radio'],
input[type='checkbox'],
button,
select,
option,
label {
  cursor: pointer;
}

input[type='radio'],
input[type='checkbox'] {
  margin: -.09em .5em 0 0;
  vertical-align: middle;
}

input[type='text'],
input[type='password'],
select,
textarea {
  border: 1px solid #ccc;
}

input[type='text']:disabled,
input[type='password']:disabled,
select:disabled,
textarea:disabled {
  background: #ededed;
}

input[type='text']:disabled:-webkit-autofill,
input[type='password']:disabled:-webkit-autofill,
select:disabled:-webkit-autofill,
textarea:disabled:-webkit-autofill {
  box-shadow: 0 0 0 2em #ededed inset;
}

input[type='text'],
input[type='password'],
select {
  height: 2em;
  line-height: 2em;
}

input[type='text'],
input[type='password'],
textarea {
  width: 468px;
}

select {
  min-width: 468px;
}

textarea {
  min-height: 98px;
}

input[type='submit'],
input[type='button'],
input[type='reset'] {
  white-space: normal;
}

input[type='submit']::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='reset']::-moz-focus-inner,
button::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  display: inline-block;
}

table {
  border-collapse: collapse;
}

table th,
table td {
  vertical-align: top;
}

table th {
  text-align: left;
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

p {
  margin-top: .5em;
}

img {
  vertical-align: top;
  border: none;
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-weight: bold;
  color: #c51f42;
}

a {
  display: inline-block;
}

a:link {
  color: #0363b1;
  text-decoration: underline;
}

a:visited {
  color: #7e5eb2;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

sub,
sup {
  font-size: 1rem;
}

sub {
  vertical-align: bottom;
}

sup {
  vertical-align: top;
}

noscript > *:first-child {
  margin-top: 0;
  font-size: 1.4rem;
}

/* =====================================
  structure
------------------------------------- */
#header {
  font-size: 1.4rem;
  padding: 20px 0 10px;
}

#header > .headerIn {
  width: 984px;
  margin: 0 auto;
  display: table;
}

#header > .headerIn .logo,
#header > .headerIn .userInfo {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

#header > .headerIn .logo > img {
  vertical-align: middle;
}

#header > .headerIn .logo > img + img {
  margin-left: 10px;
}

#header > .headerIn .userInfo {
  text-align: right;
}

#header > .headerIn .userInfo .logout > .btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 4px 10px;
  min-width: 141px;
  border-radius: 4px;
}

#header > .headerIn .userInfo .logout > .btn:hover,
#header > .headerIn .userInfo .logout > .btn:focus,
#header > .headerIn .userInfo .logout > .btn:active {
  background: #ededed;
}

#header > .headerIn .userInfo .name,
#header > .headerIn .userInfo .date {
  display: inline-block;
  margin-left: 35px;
}

#contents {
  font-size: 1.4rem;
}

#contents > .contentsHdg {
  display: flex;
  flex-direction: column-reverse;
}

#contents > .contentsHdg > *:only-child {
  margin-top: 0;
}

#contents > .contentsIn {
  position: relative;
  width: 984px;
  margin: 0 auto;
  padding: 2.5em 0 4em;
}

#contents > .contentsIn > *:first-child {
  margin-top: 0;
}

#contents > .contentsIn .wNarrow {
  width: 630px;
  margin: 0 auto;
}

#contents > .contentsIn .wNarrow > *:first-child {
  margin-top: 0;
}

#footer {
  font-size: 1.4rem;
  border-top: 1px solid #e1e3e6;
  border-bottom: 1px solid #e1e3e6;
  background: #fafafa;
  padding: 15px 0;
}

#footer > .footerIn {
  width: 984px;
  margin: 0 auto;
  display: table;
}

#footer > .footerIn > .footNav {
  display: table-cell;
  width: 65%;
}

#footer > .footerIn > .footNav > *:first-child {
  margin-top: 0;
}

#footer > .footerIn > .footNav > ul {
  margin-top: .5em;
}

#footer > .footerIn > .footNav > ul li {
  display: inline-block;
  min-width: 190px;
}

#footer > .footerIn > .footNav > ul li a {
  position: relative;
  text-decoration: none;
  padding-left: 14px;
}

#footer > .footerIn > .footNav > ul li a:hover,
#footer > .footerIn > .footNav > ul li a:focus,
#footer > .footerIn > .footNav > ul li a:active {
  text-decoration: underline;
}

#footer > .footerIn > .footNav > ul li a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #0363b1;
  border-bottom: 1px solid #0363b1;
  position: absolute;
  top: .6em;
  left: 0;
  transform: rotate(-45deg);
}

#footer > .footerIn > .copyright {
  font-size: 1.2rem;
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
}

.modalHeader {
  font-size: 1.4rem;
  padding: 11px 30px;
  display: table;
  width: 100%;
}

.modalHeader .logo,
.modalHeader .close {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

.modalHeader .logo > img {
  height: 38px;
  vertical-align: middle;
}

.modalHeader .logo > img + img {
  margin-left: 7px;
}

.modalHeader .close {
  text-align: right;
}

.modalHeader .close > .btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 4px 10px;
  min-width: 117px;
  border-radius: 4px;
}

.modalHeader .close > .btn:hover,
.modalHeader .close > .btn:focus,
.modalHeader .close > .btn:active {
  background: #ededed;
}

.modalContents {
  font-size: 1.4rem;
}

.modalContents > .modalContentsIn {
  padding: 1.8em 30px 2.9em;
}

.modalContents > .modalContentsIn > *:first-child {
  margin-top: 0;
}

.modalContents .hdg01 {
  margin-top: 0;
  font-size: 2.4rem;
  padding: 10px 30px;
}

.modalContents .hdg01 > .hdgIn {
  width: auto;
}

.modalContents img {
  max-width: 100%;
}

.modalContents input[type='text'],
.modalContents input[type='password'],
.modalContents textarea {
  width: 348px;
}

.modalContents select {
  min-width: 348px;
}

.modalFooter {
  font-size: 1.4rem;
  padding: 0 30px 40px;
  text-align: center;
}

.modalFooter .close > .btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 4px 10px;
  min-width: 117px;
  border-radius: 4px;
}

.modalFooter .close > .btn:hover,
.modalFooter .close > .btn:focus,
.modalFooter .close > .btn:active {
  background: #ededed;
}

/* =====================================
  module
------------------------------------- */
.list01 {
  margin-top: .5em;
}

.list01 > li {
  margin-top: .5em;
}

.list01 > li > * {
  margin-top: .3em;
}

.list01 > li > *:first-child {
  margin-top: 0;
}

.list01 > li:first-child {
  margin-top: 0;
}

.list01.bullet > li {
  position: relative;
  padding-left: 1.4em;
}

.list01.bullet > li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #999;
  position: absolute;
  left: .5em;
  top: .65em;
}

.list01.multiline {
  margin-top: 0;
  margin-left: -2em;
}

.list01.multiline > li {
  margin-top: .5em;
  display: inline-block;
  margin-left: 2em;
}

.listNum01 {
  margin-top: .5em;
}

.listNum01 > li {
  margin-top: .5em;
  position: relative;
  padding-left: 1.9em;
}

.listNum01 > li > .num {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  text-align: right;
}

.listNum01 > li:first-child {
  margin-top: 0;
}

.listNum02 {
  margin-top: .5em;
}

.listNum02 > li {
  margin-top: .5em;
  position: relative;
  padding-left: 3.4em;
}

.listNum02 > li > .num {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.4em;
  text-align: center;
}

.listNum02 > li:first-child {
  margin-top: 0;
}

.listNote01 {
  margin-top: 1.2em;
}

.listNote01 > li {
  margin-top: .5em;
  position: relative;
  font-size: 1.2rem;
  color: #696971;
  padding-left: 1.5em;
}

.listNote01 > li > .mark {
  position: absolute;
  left: 0;
  top: 0;
}

.listNote01 > li:first-child {
  margin-top: 0;
}

.listStep01 {
  width: 984px;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 1.2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  display: table;
}

.listStep01 > li {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 20%;
}

.listStep01 > li > .stepIn {
  padding: 7px 5px 7px 15px;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.listStep01 > li > .stepIn::before,
.listStep01 > li > .stepIn::after {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -26px;
  content: '';
  display: block;
  border-style: solid;
  border-width: 26px 0 26px 11px;
  border-color: transparent;
}

.listStep01 > li > .stepIn::before {
  border-left-color: #ccc;
}

.listStep01 > li > .stepIn::after {
  margin-left: -1px;
  border-left-color: #fff;
}

.listStep01 > li:last-child > .stepIn::before,
.listStep01 > li:last-child > .stepIn::after {
  content: none;
}

.listStep01 > li.active {
  border-top: 1px solid #0474d0;
  border-bottom: 1px solid #0474d0;
  background: #0474d0;
  color: #fff;
}

.listStep01 > li.active > .stepIn::before,
.listStep01 > li.active > .stepIn::after {
  border-left-color: #0474d0;
}

.listStep01 + .hdg02 {
  margin-top: 1.2em;
}

.listCheck01 {
  margin-top: .5em;
}

.listCheck01 > li {
  position: relative;
  margin-top: .5em;
}

.listCheck01 > li > * {
  margin-top: .3em;
  padding-left: 20px;
}

.listCheck01 > li > * input[type='radio'],
.listCheck01 > li > * input[type='checkbox'] {
  position: absolute;
  left: 0;
  top: .38em;
}

.listCheck01 > li > *:first-child {
  margin-top: 0;
}

.listCheck01 > li:first-child {
  margin-top: 0;
}

.listCheck01.multiline {
  margin-top: 0;
  margin-left: -2em;
}

.listCheck01.multiline > li {
  margin-top: .5em;
  display: inline-block;
  margin-left: 2em;
}

.listBtn01 {
  margin-top: 1.5em;
  margin-left: -1.2em;
}

.listBtn01 > li {
  display: inline-block;
  margin-left: 1.2em;
}

.listBtn01 > li > *:first-child {
  margin-top: 0;
}

.listDef01 {
  margin-top: .5em;
}

.listDef01 > dt {
  margin-top: .5em;
  font-weight: bold;
}

.listDef01 > dt:first-child {
  margin-top: 0;
}

.listDef01 > dd {
  margin-top: .3em;
}

.link01 {
  margin-top: .5em;
}

.link01 > li {
  margin-top: .5em;
}

.link01 > li:first-child {
  margin-top: 0;
}

.link01 > li > a,
.link01 > a {
  position: relative;
  text-decoration: none;
  padding-left: 14px;
}

.link01 > li > a:hover,
.link01 > li > a:focus,
.link01 > li > a:active,
.link01 > a:hover,
.link01 > a:focus,
.link01 > a:active {
  text-decoration: underline;
}

.link01 > li > a::before,
.link01 > a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #0363b1;
  border-bottom: 1px solid #0363b1;
  position: absolute;
  top: .6em;
  left: 0;
  transform: rotate(-45deg);
}

.link01.anchor > li > a::before,
.link01.anchor > a::before {
  transform: rotate(45deg);
  top: .5em;
  left: 1px;
}

.link01.top > li > a::before,
.link01.top > a::before {
  transform: rotate(-135deg);
  top: .7em;
  left: 1px;
}

.link01.multiline {
  margin-top: 0;
  margin-left: -2em;
}

.link01.multiline > li {
  margin-top: .5em;
  display: inline-block;
  margin-left: 2em;
}

.btn01 {
  margin-top: 1.5em;
}

.btn01 > .btn {
  text-align: center;
  display: inline-block;
  background-color: #fff;
  background-repeat: no-repeat;
  border: 2px solid #ccc;
  border-radius: 4px;
  padding: 7px 40px;
  color: #0363b1;
  display: inline-block;
}

.btn01 > .btn:link {
  text-decoration: none;
}

.btn01 > .btn:hover,
.btn01 > .btn:focus,
.btn01 > .btn:active {
  background-color: #ededed;
}

.btn01 > .btn:disabled,
.btn01 > .btn.disabled {
  cursor: default;
  background-color: #ededed;
  color: #999;
}

.btn01.small > .btn {
  padding: 2px 15px;
}

.btn01.copy > .btn {
  text-align: left;
  padding-left: 64px;
  padding-right: 35px;
  background-position: 40px 50%;
  background-image: url('/order/contents/cmn/img/ico-copy-01.png');
}

.btn01.save > .btn {
  text-align: left;
  padding-left: 64px;
  padding-right: 35px;
  background-position: 38px 50%;
  background-image: url('/order/contents/cmn/img/ico-save-01.png');
}

.btn01.file > .btn {
  text-align: left;
  padding-left: 99px;
  padding-right: 70px;
  background-position: 74px 50%;
  background-image: url('/order/contents/cmn/img/ico-file-01.png');
}

.btn01.prev > .btn {
  text-align: left;
  padding-left: 58px;
  padding-right: 37px;
  background-position: 40px 50%;
  background-image: url('/order/contents/cmn/img/ico-prev-01.png');
}

.btn01.edit > .btn {
  text-align: left;
  padding-left: 57px;
  padding-right: 41px;
  background-position: 37px 50%;
  background-image: url('/order/contents/cmn/img/ico-edit-01.png');
}

.btn01.delete > .btn {
  text-align: left;
  padding-left: 57px;
  padding-right: 41px;
  background-position: 36px 50%;
  background-image: url('/order/contents/cmn/img/ico-delete-01.png');
}

.btn01.download > .btn {
  text-align: left;
  padding-left: 80px;
  padding-right: 50px;
  background-position: 52px 50%;
  background-image: url('/order/contents/cmn/img/ico-download-01.png');
}

.btn01.search > .btn {
  text-align: left;
  padding-left: 107px;
  padding-right: 89px;
  background-position: 85px 50%;
  background-image: url('/order/contents/cmn/img/ico-search-01.png');
}

span.btn01 {
  display: inline-block;
  margin-top: .5em;
}

.btnCv01 {
  margin-top: 1.5em;
}

.btnCv01 > .btn {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #0474d0;
  background-repeat: no-repeat;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  min-width: 260px;
  color: #fff;
  display: inline-block;
}

.btnCv01 > .btn:link {
  text-decoration: none;
}

.btnCv01 > .btn:hover,
.btnCv01 > .btn:focus,
.btnCv01 > .btn:active {
  opacity: .8;
}

.btnCv01.wAuto > .btn {
  min-width: 0;
}

.btnCv01.strong > .btn {
  min-width: 440px;
  padding: 18px 20px;
}

.btnCv01.strong + .lytCol01 {
  margin-top: .4em;
}

.btnAnc01 {
  margin-top: 1.5em;
}

.btnAnc01 > .btn {
  position: relative;
  text-align: left;
  border: 2px solid #0474d0;
  border-radius: 4px;
  padding: 7px 40px 7px 62px;
  color: #0363b1;
  display: inline-block;
  background: #fff;
}

.btnAnc01 > .btn::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #0363b1;
  border-bottom: 1px solid #0363b1;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: 43px;
  transform: rotate(45deg);
}

.btnAnc01 > .btn:link {
  text-decoration: none;
}

.btnAnc01 > .btn:hover,
.btnAnc01 > .btn:focus,
.btnAnc01 > .btn:active {
  background-color: #ededed;
}

.txtLead01 {
  font-size: 1.8rem;
  font-weight: normal;
}

.txtNote01 {
  color: #696971;
  font-size: 1.2rem;
}

.txtIco01 {
  margin-left: .5em;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.2rem;
  padding: 2px 10px;
  line-height: 1;
  border-radius: 9px;
  border: 1px solid transparent;
}

.txtIco01.required {
  background: #c51f42;
  color: #fff;
  font-weight: bold;
}

.txtIco01.elective {
  background: #fff;
  border-color: #e1e3e6;
}

.txtAnd01 {
  margin: 0 .5em;
}

.txtErr01 {
  font-size: 1.4rem;
  display: none;
}

.tbl01 tr.isError .txtErr01,
.tbl02 td.isError .txtErr01,
.txtErrWrap.isError .txtErr01 {
  display: block;
  margin-bottom: .3em;
}

.imgIco01 {
  vertical-align: middle;
  position: relative;
  top: -.12em;
  margin-left: .4em;
}

.box01 {
  margin-top: 2.2em;
  border: 1px solid #e1e3e6;
  padding: 15px 20px;
  background: #fff;
}

.box01 .boxHdg01 {
  text-align: center;
  margin-top: 1em;
  font-size: 1.8rem;
  font-weight: normal;
}

.box01 .boxHdg01 + * {
  margin-top: 1em;
}

.box01 .boxHdg01 + .lytCol01 {
  margin-top: 0;
}

.box01 .boxHdg01 + .multiline {
  margin-top: .2em;
}

.box01 > .boxBtm {
  border-top: 1px solid #e1e3e6;
  margin: 15px -20px -15px;
  padding: 12px 20px;
  text-align: center;
  font-size: 1.6rem;
  background: #fafafa;
}

.box01 > .boxBtm > *:first-child,
.box01 > .boxBtm > .txtErr01:first-child + * {
  margin-top: 0;
}

.box01 > .boxBtm.isError {
  background: #fae2e7;
}

.box01 > *:first-child {
  margin-top: 0;
}

.box01 > .listBtn01:last-child {
  margin-bottom: .3em;
}

.box01 + p {
  margin-top: 1em;
}

.boxErr01 {
  margin-top: 2.2em;
  background: #fae2e7;
  padding: 15px 20px;
}

.boxErr01 > *:first-child {
  margin-top: 0;
}

.boxErr01:first-child {
  margin-top: 0;
}

.boxErr01 + * {
  margin-top: 1.5em;
}

.boxCv01 {
  background: #ededed;
  padding: 25px 0 40px;
  margin-top: 3em;
}

.boxCv01 .boxHdg01 {
  margin-top: 1em;
  font-size: 1.8rem;
  font-weight: normal;
}

.boxCv01 .boxHdg01 + * {
  margin-top: 1em;
}

.boxCv01 .boxHdg01 + .lytCol01 {
  margin-top: 0;
}

.boxCv01 .boxHdg01 + .multiline {
  margin-top: .2em;
}

.boxCv01 .apply {
  margin-top: 1.5em;
}

.boxCv01 .apply > .btn {
  background: #0474d0 url('/order/contents/cmn/img/ico-arrow-01.png') 75px 50% no-repeat;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  border: none;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  padding: 18px 85px;
}

.boxCv01 .apply > .btn:hover,
.boxCv01 .apply > .btn:focus,
.boxCv01 .apply > .btn:active {
  opacity: .8;
}

.boxCv01 > .boxIn {
  width: 984px;
  margin: 0 auto;
}

.boxCv01 > .boxIn > .lytCol01 {
  margin-left: -10px;
}

.boxCv01 > .boxIn > .lytCol01 > .col {
  text-align: center;
  padding: 0 20px 0 30px;
}

.boxCv01 > .boxIn > *:first-child {
  margin-top: 0;
}

.boxCv01 > *:first-child {
  margin-top: 0;
}

.boxTgl01 {
  margin-top: 2.8em;
}

.boxTgl01 > .boxHdg01 {
  font-size: 1.8rem;
  padding: 9px 60px 9px 20px;
  border: 1px solid #e1e3e6;
  font-weight: normal;
}

.boxTgl01 > .boxHdg01 > button {
  position: relative;
  border: none;
  padding: 9px 60px 9px 20px;
  margin: -9px -60px -9px -20px;
  box-sizing: content-box;
  background: #fff;
  text-align: left;
  display: block;
  width: 100%;
}

.boxTgl01 > .boxHdg01 > button:hover,
.boxTgl01 > .boxHdg01 > button:focus,
.boxTgl01 > .boxHdg01 > button:active {
  background-color: #ededed;
}

.boxTgl01 > .boxHdg01 > button .state {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -14px;
  background: #0474d0;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

.boxTgl01 > .boxHdg01 > button .state::before,
.boxTgl01 > .boxHdg01 > button .state::after {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  content: '';
  background: #fff;
}

.boxTgl01 > .boxHdg01 > button .state::before {
  width: 14px;
  height: 2px;
  margin-top: -1px;
}

.boxTgl01 > .boxHdg01 > button .state::after {
  left: 13px;
  width: 2px;
  height: 14px;
  margin-top: -7px;
}

.boxTgl01 > .boxHdg01.isOpen > button .state::after {
  content: none;
}

.boxTgl01 > .boxHdg01.isOpen + .boxIn {
  display: block;
}

.boxTgl01 > .boxIn {
  display: none;
  margin-top: 1em;
}

.boxTgl01 > .boxIn > *:first-child {
  margin-top: 0;
}

.boxTgl01 > .boxIn + * {
  margin-top: 1.1em;
}

.static .boxTgl01 > .boxIn {
  display: block;
}

.tbl01 {
  margin-top: 1.5em;
  width: 100%;
  border-bottom: 1px solid #e1e3e6;
}

.tbl01 th,
.tbl01 td {
  border-top: 1px solid #e1e3e6;
  padding: 10px 30px 10px 30px;
}

.tbl01 th {
  background: #f0faff;
  padding-right: 20px;
}

.tbl01 th > .label01 {
  display: inline-block;
  max-width: 72%;
}

.tbl01 th > .txtIco01 {
  float: right;
}

.tbl01 th > p,
.tbl01 th > ul,
.tbl01 th > ul li {
  margin-top: .3em;
}

.tbl01 th.subTh {
  background: #def2fd;
}

.tbl01 td > * {
  margin-top: .3em;
  margin-bottom: .3em;
}

.tbl01 td > p:first-child,
.tbl01 td > .listCheck01:first-child,
.tbl01 td > .txtErr01:first-child + .listCheck01 {
  margin-top: 0;
}

.tbl01 td > p:last-child,
.tbl01 td > .listCheck01:last-child {
  margin-bottom: 0;
}

.tbl01 td > .list01:not(.bullet):not(:first-child):not(:last-child) {
  margin: .6em 0;
}

.tbl01 td > .multiline:first-child,
.tbl01 td > .txtErr01:first-child + .multiline {
  margin-top: -.5em;
}

.tbl01 td > .lytCol01:first-child,
.tbl01 td > .txtErr01:first-child + .lytCol01 {
  margin-top: -.7em;
}

.tbl01 tr.isError th {
  background: #fae2e7;
}

.tbl01.login {
  border: 1px solid #e1e3e6;
}

.tbl01.login th > .label01 {
  max-width: 68%;
}

.tbl01.login td input[type='text'],
.tbl01.login td input[type='password'],
.tbl01.login td textarea {
  width: 348px;
}

.tbl01.login td select {
  min-width: 348px;
}

p + .tbl01,
.tbl01 + p {
  margin-top: 1em;
}

.tbl02 {
  margin-top: 1.5em;
  width: 100%;
  border-bottom: 1px solid #e1e3e6;
}

.tbl02 th,
.tbl02 td {
  border-top: 1px solid #e1e3e6;
  border-right: 1px solid #e1e3e6;
  padding: 10px 20px;
}

.tbl02 th:last-child,
.tbl02 td:last-child {
  border-right: none;
}

.tbl02 th {
  background: #f0faff;
}

.tbl02 th > .label01 {
  display: block;
}

.tbl02 th > .txtIco01 {
  margin-top: .3em;
  margin-left: 0;
}

.tbl02 th > p,
.tbl02 th > ul,
.tbl02 th > ul li {
  margin-top: .3em;
}

.tbl02 td > * {
  margin-top: .3em;
  margin-bottom: .3em;
}

.tbl02 td > p:first-child,
.tbl02 td > .listCheck01:first-child {
  margin-top: 0;
}

.tbl02 td > p:last-child,
.tbl02 td > .listCheck01:last-child {
  margin-bottom: 0;
}

.tbl02 td > .list01:not(.bullet):not(:first-child):not(:last-child) {
  margin: .6em 0;
}

.tbl02 td > .multiline:first-child {
  margin-top: -.5em;
}

.tbl02 td > .lytCol01:first-child {
  margin-top: -.7em;
}

.tbl02 thead td {
  background: #f0faff;
}

.tbl02 tr.isError td:first-child {
  background: #fae2e7;
}

p + .tbl02,
.tbl02 + p {
  margin-top: 1em;
}

.tblPayment01 {
  margin-top: 1.5em;
  width: 100%;
  border-bottom: 1px solid #e1e3e6;
}

.tblPayment01 th,
.tblPayment01 td {
  padding: 10px 20px 10px 30px;
  border-top: 1px solid #e1e3e6;
  vertical-align: middle;
}

.tblPayment01 th > *:first-child,
.tblPayment01 td > *:first-child {
  margin-top: 0;
}

.tblPayment01 th {
  background: #ededed;
}

.tblPayment01 tr.sum th {
  font-size: 2rem;
  font-weight: bold;
}

.tblPayment01 tr.sum td {
  text-align: right;
  font-size: 2.2rem;
}

p + .tblPayment01,
.tblPayment01 + p {
  margin-top: 1em;
}

.tblScrollY01 {
  word-break: break-all;
}

.tblScrollY01 > *:first-child {
  margin-top: 0;
}

.tblScrollY01 .tbl02 thead,
.tblScrollY01 .tbl02 tbody {
  display: block;
  width: 984px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(1),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(1) {
  width: 64px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(2),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(2) {
  width: 142px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(3),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(3) {
  width: 145px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(4),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(4) {
  width: 140px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(5),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(5) {
  width: 170px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(6),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(6) {
  width: 155px;
}

.tblScrollY01 .tbl02 thead tr > *:nth-child(7),
.tblScrollY01 .tbl02 tbody tr > *:nth-child(7) {
  width: 151px;
}

.tblScrollY01 .tbl02 tbody {
  height: 300px;
  overflow-y: scroll;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(1),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(1) {
  width: 64px;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(2),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(2) {
  width: 152px;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(3),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(3) {
  width: 165px;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(4),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(4) {
  width: 143px;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(5),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(5) {
  width: 122px;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(6),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(6) {
  width: 170px;
}

.tblScrollY01.txtOnly .tbl02 thead tr > *:nth-child(7),
.tblScrollY01.txtOnly .tbl02 tbody tr > *:nth-child(7) {
  width: 151px;
}

.lytCol01 {
  display: flex;
  flex-wrap: wrap;
  margin: 2em 0 0 -20px;
}

.lytCol01 > .col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 1em 0 0 20px;
}

.lytCol01 > .col > *:first-child {
  margin-top: 0;
}

.lytCol01.vaM {
  align-items: center;
}

.lytCol01.col2 > .col {
  width: 50%;
}

.lytCol01.col3 > .col {
  width: 33.3%;
}

.lytInp01 {
  position: relative;
  display: table;
}

.lytInp01 > .txt,
.lytInp01 > .img {
  display: table-cell;
  vertical-align: top;
}

.lytInp01 > .txt > *:first-child,
.lytInp01 > .img > *:first-child {
  margin-top: 0;
}

.lytInp01 > .txt {
  padding-bottom: 2.8em;
}

.lytInp01 > .img {
  padding-left: 50px;
}

.lytInp01 > .inp {
  position: absolute;
  left: 0;
  bottom: .5em;
}

.lytInp01 > .inp > *:first-child {
  margin-top: 0;
}

.lytBtn01 {
  position: relative;
  margin-top: 2.5em;
}

.lytBtn01 > *:first-child {
  margin-top: 0;
}

.lytBtn01 > .btnCv01 {
  text-align: center;
}

.lytFixed01 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.lytFixed01 > *:first-child {
  margin-top: 0;
}

.lytFixed01.isFixed {
  position: fixed;
  right: inherit;
  bottom: 20px;
}

.lytFixed01.isFixed.winS {
  left: inherit !important;
  right: 20px !important;
}

.hdg01 {
  margin-top: .7em;
  background: #ededed;
  font-size: 2.2rem;
  font-weight: normal;
  padding: 13px 0;
}

.hdg01 > .hdgIn {
  width: 984px;
  margin: 0 auto;
  display: block;
}

.hdg02 {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-top: 1.7em;
}

.hdg02::before {
  content: '';
  display: block;
  background: #6bbcf3;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: .55em;
}

.hdg02 + * {
  margin-top: 1em;
}

.hdg03 {
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: bold;
}

.hdg03 + * {
  margin-top: .4em;
}

.hdg03 + .tbl01,
.hdg03 + .tbl02,
.hdg03 + .tblPayment01,
.hdg03 + .box01 {
  margin-top: .4em;
}

.hdg04 {
  margin-top: 1em;
  font-size: 1.4rem;
  font-weight: bold;
}

.hdg04 + * {
  margin-top: 0;
}

.inpFile01 {
  margin-top: 1em;
  text-align: center;
  position: relative;
}

.inpFile01 > .fileName {
  width: 490px;
  text-align: left;
  display: inline-block;
  border: 1px solid #ccc;
  min-height: 28px;
  padding: 2px 0;
  margin-top: 0;
  vertical-align: middle;
}

.inpFile01 > .btn {
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 4px;
  padding: 2px 20px;
  color: #0363b1;
  margin-left: 1em;
}

.inpFile01 > .btn:hover,
.inpFile01 > .btn:focus,
.inpFile01 > .btn:active {
  background-color: #ededed;
}

.inpFile01 > input[type='file'] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.static .inpFile01 > .btn {
  display: none;
}

.static .inpFile01 > input[type='file'] {
  position: static;
  opacity: 1;
}

.modal01 {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 999;
}

.modal01 .modalBody {
  background: #fff;
  width: 80%;
  max-height: 80%;
  max-width: 800px;
  overflow-y: auto;
  outline: none;
}

.isShowModal {
  overflow: hidden;
}

.isShowModal .modal01 {
  display: flex;
}

.isHide {
  display: none;
}

/* =====================================
  unique
------------------------------------- */
.idxTbl01 {
  margin-top: 1.8em;
  width: 100%;
  border: 1px solid #e1e3e6;
  border-top: none;
}

.idxTbl01 th,
.idxTbl01 td {
  border-top: 1px solid #e1e3e6;
}

.idxTbl01 th {
  padding: 33px 35px 33px 85px;
  width: 30%;
  background-color: #f0faff;
  background-repeat: no-repeat;
  font-size: 1.8rem;
  vertical-align: middle;
}

.idxTbl01 td {
  width: 70%;
  padding: 33px 60px;
}

.idxTbl01 tr.order th {
  background-image: url('/order/contents/cmn/img/ico-order-01.png');
  background-position: 34px 50%;
}

.idxTbl01 tr.check th {
  background-image: url('/order/contents/cmn/img/ico-check-01.png');
  background-position: 35px 50%;
}

.idxTbl01 tr.cash th {
  background-image: url('/order/contents/cmn/img/ico-cash-01.png');
  background-position: 38px 50%;
}

.idxTbl01 tr.user th {
  background-image: url('/order/contents/cmn/img/ico-user-01.png');
  background-position: 35px 50%;
}

.idxBtn01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -2em;
}

.idxBtn01 > li {
  margin-top: 2em;
}

.idxBtn01 > li > *:first-child {
  margin-top: 0;
}

/* =====================================
  adjust
------------------------------------- */
.mt05-em {
  margin-top: -.5em !important;
}

.mt00 {
  margin-top: 0 !important;
}

.mt05em {
  margin-top: .5em !important;
}

.mt1em {
  margin-top: 1em !important;
}

.mt2em {
  margin-top: 2em !important;
}

.mt3em {
  margin-top: 3em !important;
}

.mt4em {
  margin-top: 4em !important;
}

.mt5em {
  margin-top: 5em !important;
}

.mr00 {
  margin-right: 0 !important;
}

.mr05em {
  margin-right: .5em !important;
}

.mr1em {
  margin-right: 1em !important;
}

.mr2em {
  margin-right: 2em !important;
}

.mr3em {
  margin-right: 3em !important;
}

.mr4em {
  margin-right: 4em !important;
}

.mr5em {
  margin-right: 5em !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb05em {
  margin-bottom: .5em !important;
}

.mb1em {
  margin-bottom: 1em !important;
}

.mb2em {
  margin-bottom: 2em !important;
}

.mb3em {
  margin-bottom: 3em !important;
}

.mb4em {
  margin-bottom: 4em !important;
}

.mb5em {
  margin-bottom: 5em !important;
}

.ml00 {
  margin-left: 0 !important;
}

.ml05em {
  margin-left: .5em !important;
}

.ml1em {
  margin-left: 1em !important;
}

.ml2em {
  margin-left: 2em !important;
}

.ml3em {
  margin-left: 3em !important;
}

.ml4em {
  margin-left: 4em !important;
}

.ml5em {
  margin-left: 5em !important;
}

.taL {
  text-align: left !important;
}

.taC {
  text-align: center !important;
}

.taR {
  text-align: right !important;
}

.vaT {
  vertical-align: top !important;
}

.vaM {
  vertical-align: middle !important;
}

.vaB {
  vertical-align: bottom !important;
}

.w75px {
  min-width: 0 !important;
  width: 75px !important;
}

.w100px {
  min-width: 0 !important;
  width: 100px !important;
}

.w110px {
  min-width: 0 !important;
  width: 110px !important;
}

.w120px {
  min-width: 0 !important;
  width: 120px !important;
}

.w150px {
  min-width: 0 !important;
  width: 150px !important;
}

.w180px {
  min-width: 0 !important;
  width: 180px !important;
}
