/* Common styles */

body{
  color:#3e3e3e;
  background: rgb(62,62,62);
  background:url( data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAACqADAAQAAAABAAAACgAAAAA7eLj1AAAAK0lEQVQYGWN89uzZfwY0ICUlxYgmxMCELoCLP4AKMRwNciM2Dw6gG4m2GgAKtQfE4cnzVwAAAABJRU5ErkJggg==
    ) repeat;
  min-height: 100vh;
  border-top: 20px solid #000;
}

.full {
  background: -moz-linear-gradient(0deg, rgba(62,62,62,0.7) 0%, rgba(160,160,167,0.7) 35%, rgba(232,232,232,0.7) 100%);
  background: -webkit-linear-gradient(0deg, rgba(62,62,62,0.7) 0%, rgba(160,160,167,0.7) 35%, rgba(232,232,232,0.7) 100%);
  background: linear-gradient(0deg, rgba(62,62,62,0.7) 0%, rgba(160,160,167,0.7) 35%, rgba(232,232,232,0.7) 100%);
  min-height: 100vh;
}

/*-- Text --*/

h1, h2, h3, h4, h5, h6 {
  letter-spacing: .3rem;
}

a {
    color:#063580;
    -webkit-transition:all 0.2s linear;
    transition:all 0.2s linear;
}

a:hover,
a:focus,
a:active  {
    color:#4c586a;
    -webkit-transition:all 0.2s easeout;
    transition:all 0.2s ease-out;
}

small {
  font-size: 50%;
}

h3.page-title {
  position: relative;
  font-size: 2.5rem;
  padding-bottom: .5em;
}

h3.page-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 0;
  border-top: 1px solid #8d8d8d;
  border-bottom: 1px solid #3c3c3c;
}

/* Base */

.container {
  margin:0 auto;
  max-width:130.0rem;
  padding:0 2.0rem;
  position:relative;
  width:100%
}

.container-fluid {
  margin:0 auto;
  max-width:95%;
  padding:0;
  position:relative;
  width:100%
}

.content {
  padding: 2rem;
  background: rgba(195, 195, 195, 0.8);
  border-radius: 0;
  /* Thanks Stripe */
  /*box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
      0 3px 6px 0 rgba(0, 0, 0, 0.07);*/
  margin-bottom: 2rem;
}

/* Nav bar */
.top-nav {
    display: block;
    align-items: center;
    justify-content: space-between;
    max-width:130.0rem;
    padding: 2rem 0;
    margin: 0 auto;
}

.top-nav-title {
  font-size: 2rem;
}

.top-nav-title a {
    font-size: 5rem;
    color: #f39800;
}

@media screen and (max-width: 640px){
  .top-nav-title {
    font-size: 2.8rem;
    padding-left: 2rem;
  }
}

.top-nav-title span {
    color: #404041;
}

.top-nav-links {
  background:#333333;
  padding: 2rem;
  margin: 2rem 0;
  color:#ccc;
}
.top-nav-links a {
    margin: 0 0.5rem;
  color: #ccc;
}
.top-nav-title a,
.top-nav-links a {
  font-weight: normal;
  font-size: 90%;
}

.top-nav-logo img{
  width: 200px;
}

.nav-botton{
  text-decoration: underline;
}

.side-nav {
  background: #e8e8e8;
  padding: 2rem;
  margin: 0;
}

.side-nav-item {
    display: block;
    padding: 0.5rem 0;
}

/* Button Custom color */

.button,button,input[type='button'],input[type='reset'],input[type='submit']{
  background-color:#d33c43;
  border:0.1rem solid #d33c43;
  /*border-radius:.4rem;*/
  border-radius:0;
  color:#fff;
  cursor:pointer;
  display:inline-block;
  font-size:1.5rem;
  font-weight:100;
  height:3.8rem;
  letter-spacing:.5rem;
  line-height:3.8rem;
  padding:0 3.5rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap
}

.button-yellow {
  background-color: #ffba00;
  border-color: #ffba00;
}
.button-yellow.button-clear,
.button-yellow.button-outline {
  background-color: transparent;
  color: #ffba00;
}
.button-yellow.button-clear {
  border-color: transparent;
}

.button-orange {
  background-color: #ff7600;
  border-color: #ff7600;
}
.button-orange.button-clear,
.button-orange.button-outline {
  background-color: transparent;
  color: #ff7600;
}
.button-orange.button-clear {
  border-color: transparent;
}

.button-gray {
  background-color: #666666;
  border-color: #666666;
}
.button-gray.button-clear,
.button-gray.button-outline {
  background-color: transparent;
  color: #666666;
}
.button-gray.button-clear {
  border-color: transparent;
}

.button-rightgray {
  background-color: #dddddd;
  border-color: #dddddd;
}
.button-rightgray.button-clear,
.button-rightgray.button-outline {
  background-color: transparent;
  color: #dddddd;
}
.button-rightgray.button-clear {
  border-color: transparent;
}

.button-long {
  width: 90%;
}

.button-big {
  width: 90%;
  font-size: 2.5rem;
  height:10rem;
  letter-spacing:.1rem;
  line-height:10rem;
  padding:0 3.0rem;
}

.button-small{
  height: 3rem;
  padding:0 1.4rem;
  line-height:3rem;
}

@media screen and (max-width: 640px){
  .button-big {
    width: 100%;
    font-size: 1.5rem;
  }
}

/*Original Btn*/

.btn {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  /*border-radius: 0.5rem;
  box-shadow: 0 4px 12px 0 rgba(152, 160, 180, 10);
  text-shadow: 0 1px 0 rgb(0, 0, 0);*/
}
.btn-big {
  width: calc(100%);
  padding: 6rem;
  font-size: 2.6rem;
}

a.btn-radius-y {
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#fabe00), to(#f39800));
  background: -webkit-linear-gradient(top, #fabe00 0%, #f39800 50%);
  background: linear-gradient(to bottom, #fabe00 0%, #f39800 50%);
}

a.btn-radius-y:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#f1e767), to(#feb645));
  background: -webkit-linear-gradient(bottom, #f1e767 0%, #feb645 100%);
  background: linear-gradient(to top, #f1e767 0%, #feb645 100%);
}

a.btn-radius-r {
  background: #e60012;
  background: -webkit-gradient(linear, left top, left bottom, from(#cf000e), to(#b60005));
  background: -webkit-linear-gradient(top, #cf000e 0%, #b60005 50%);
  background: linear-gradient(to bottom, #cf000e 0%, #b60005 50%);
}

a.btn-radius-r:hover {
  color: #f39800;
  background: -webkit-gradient(linear, left bottom, left top, from(#dd3e49), to(#b60005));
  background: -webkit-linear-gradient(bottom, #dd3e49 0%, #b60005 100%);
  background: linear-gradient(to top, #dd3e49 0%, #b60005 100%);
}

.btn-c-icon {
  font-size: 4rem;
  display: block;
}


/*-- Layout --*/

.text-center, .box-center {
  text-align: center;
}

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

.text-left, .box-left {
  text-align: left;
}

.text-big {
  font-size: 3rem;
}

.text-big2 {
  font-size: 2rem;
}

/*-- Color --*/

.white {
  color: white;
}

.orange {
  color: #ed6c00;
}

.r-orange {
  color: #f39800;
}

.gray {
  color: #666666;
}

.d-red {
  color: #cf000e;
}

.bg-orange {
  background: #ed6c00;
}

.bg-orange-d {
  background: #c35901;
}

.bg-rightg {
  background: #e0e0e0;
}

.bg-yellow {
  background: rgba(243, 152, 0, 0.25);
}

.bg-red {
  background: #b60005;
}

.bg-top01 {
  background: #fabe00;
}

.bg-top01-dotted {
  background: #fabe00;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-top02 {
  background: #f39800;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-top03 {
  background: #ed6c00;
}

.bg-top04 {
  background: #b60005;
}

.bg-top05 {
  background: #cf000e;
}

.bg-top06 {
  background: #e60012;
}

.bg-brown {
  background: #e3e2e1;
}

.bg-brown-dotted {
  background: #e3e2e1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-dark {
  background: #4b4b4b;
}

.bg-darkblue {
  background-color: #0c0245;
  background:linear-gradient(#241674,#0c0245);
}

.bg-darkblue::after {
  content: '';
  height:100%;
  width:100%;
  display:block;
  background-size: 20px 20px;
  background-image:
    linear-gradient(rgba(255,255,255,.25) 3%, rgba(255,255,255,.25) 3%, transparent 3%,
      transparent 97%, rgba(255,255,255,.25) 97%, rgba(255,255,255,.25) 100%),
    linear-gradient(90deg, rgba(255,255,255,.25) 3%, rgba(255,255,255,.25) 3%, transparent 3%,
      transparent 97%, rgba(255,255,255,.25) 97%, rgba(255,255,255,.25) 100%);
}

.bg-closs {
  background-image:
    linear-gradient(rgba(255,255,255,.5) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.5) 2px, transparent 2px),
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

/*-- Margin --*/

.mt20 {
  margin-top: 1rem;
}

.pt-large {
  padding-top: 10rem;
}

@media screen and (max-width: 640px){
  .pt-large {
    padding-top: 5rem;
  }
}

.mr20{
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.pt20 {
  padding-top: 5rem;
}

.pb20 {
  padding-bottom: 5rem;
}


/*************************/

/* Form */
.inputarea {
  border-bottom: dotted 1px #d3d3d3;
  margin-bottom: 20px;
  padding: 0 15px;
}

.subareat{
  float: left;
  width: 28%;
}

.helptext{
  font-size: 75%;
  color: #666;
  margin-top: 0;
}

.radio-small{
  width: 30%;
  float: left;
  height: 30px;
  padding-top: 5px;
  padding-bottom: 10px;
  margin-top: 16px;
}

.input.radio label,
.input.checkbox label {
  font-size: 85%;
}

.error-message {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 80%;
  font-weight: normal;
  font-style: italic;
  color: rgba(255, 0, 0, 0.54);
  clear: both;
}

textarea {
  min-height:20rem
}

textarea.terms {
  min-height: 60rem;
  line-height: 3rem;
}

.required-text {
  color: #cf000e;
}

/* Table */

table {
  margin-bottom: 3rem;
}

th, td {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}

.table-responsive th {
  color: #666;
}

/* footer */

.footer {
  padding: 3rem;
  background: #eaeaea;
}

.fotter-nav {
  font-size: 90%;
}

.fotter-nav li {
  list-style: none;
  display: inline-block;
  padding: 1rem 1rem;
}

.copyright {
  color :#efefef;
  text-align: center;
  font-size: 0.8rem;
  padding: 3rem 0;
}

/* 検索ボックス */

.searcharea{
  text-align: center;
  background: #fff;
  margin-bottom: 2rem;
  padding: 0;
}

.searcharea input[type=search] {
  display: inline-block;
  margin-right: 0;
  margin-bottom: 0px;
  padding: 10px;
  width: 90%;
  height: 40px;
  font-size: 100%;
  box-sizing: border-box;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ccc;
  border-right: none;
}

.searcharea input[type=submit] {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  width: 10%;
  height: 40px;
  font-size: 100%;
  vertical-align: top;
  border: none;
  border-radius: 0 5px 5px 0;
  background: #656565;
  margin-bottom: 0px;
}

/*パネル*/
.login-panel {
  width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.4rem;
  /* Thanks Stripe */
  /*box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
      0 3px 6px 0 rgba(0, 0, 0, 0.07);*/
  margin-bottom: 5rem;
}

.base-panel {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 0.4rem;
  box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
      0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.base-panel{
  margin-bottom: 3rem;
}

/*.base-panel:first-child{
  margin-bottom: 3rem;
}*/

.base-panel-noshadow {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 0.4rem;
  margin-bottom: 5rem;
}

.base-panel-title {
  position: relative;
  padding-bottom: .5em;
}

.base-panel-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 0;
  border-top: 1px solid #8d8d8d;
  border-bottom: 1px solid #3c3c3c;
}

.base-panel-subtitle {
  position: relative;
  padding-top: .7em;
  margin-bottom: 0;
}

.base-panel-subtitle::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 0;
  border-top: 1px dotted #8d8d8d;
  border-bottom: 1px solid #3c3c3c;
}

.base-panel-content {
}

.com-box {
  display: inline-block;
  padding-right: 10rem;
}

.com-box:last-child {
  border-left: 1px solid #ccc;
  padding-left: 3rem;
}

.item-name {
  color: #666;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}

.unit-num {
  font-size: 3rem;
}

.login-name {
  display: inline-block;
  letter-spacing: 0.2rem;
}

.base-list th {
  width: 15rem;
}

.breadcrumb ul {
  display: flex;
  list-style: none;
  padding-bottom: 2rem;
  border-radius: 3px;
  font-size: 1.3rem;
}

.breadcrumb li::after {
  content: ">";
  padding: 0 1rem;
}

.breadcrumb li:last-child::after {
  content: "";
}

/* Commission */
.c-unit{
  margin: 1rem 0;
  padding: 0.5rem 0;
  border-top: #063580 3px solid;
  border-bottom: #063580 3px solid;
  font-size: 2rem;
}

.form-panel {
  width: 80%;
  margin: 2rem auto;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 0.4rem;
  box-shadow: 0 2px 5px 0 rgba(60, 66, 87, 0.1),
      0 2px 5px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid #ccc;
}

.receipt {
  margin: 2rem auto;
  padding: 0 2rem;
  font-size: 1.4rem;
}

.ntext {
  line-height: 4rem;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}

/* Icon */

.va-px {
  vertical-align: -5px;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
}

i.fs {
  font-size: 1.2rem;
  padding-right: 0.8rem;
}

.allbtn {
  margin-top: -2rem;
  padding-top: 0;
  padding-bottom: 1rem;
}

.allbtn a {
}
