/*
SCSS variables are information about icon's compiled state, stored under its original file name
.icon-home {
  width: $icon-home-width;
}
The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables
.icon-home {
  @include sprite-width($icon-home);
}
.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS
@include sprites($spritesheet-sprites);
*/
.logo_list {
  margin-bottom: 20px;
  /*width: 280px;*/
  width: 100%;
  max-width: 696px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table;
}
.logo_list:after {
  content: "";
  clear: both;
  display: block;
}
.logo_list li {
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  border-left: 1px solid #ccc;
  text-align: center;
  /*padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;*/
padding:3.5% 3.5%;
}
.logo_list li img {
  /*max-width: 100%;
  max-height: 26px;
  max-height: 32%;*/
  width:100%;
}
.box .textBase {
    position: relative;
    padding-left: 1em;
    line-height: 1.4 !important;
}
.textBase.indent {
    position: relative;
    padding-left: 1em;
}
.textBase.indent span {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
#en .textBase.indent span {
    position: relative;
  padding-left: 0;
    text-indent: -0.7em;
  display:block;
}
#jp .textBase.indent span {
    position: relative;
  padding-left: 0;
    text-indent: -1em;
  display:block;
}
@media screen and (min-width:768px) {
  body.copyright .tableLogoList {
    width: 100%;
  }
  body.copyright .tableLogoList td {
    border: 1px solid #cccccc;
    width: 25%;
    height: 130px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
  }
  body.copyright .content {
      border: 2px solid #ccc;
      padding: 20px;
  }
  .box.border_gray {
    padding: 20px;
    padding-bottom: 20px !important;
    border: 2px solid #cccccc;
  }
  #en .box.border_gray .textBase.indent {
    padding-left: 10px;
  }
}