/* table - notes */
.area-table-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 1008px;
  margin: 20px auto 0;
}
.has-indent {
  text-indent: 1em;
}

/* --- reset --- */
/* from /{ lang }/common/css/base.css */
.dl-h1 {
  max-width: 1008px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
}
.dl-h2 {
  font-size: 18px;
  line-height: 2;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.dl-h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: inherit;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

/* --- adjust --- */
/* icon */
.has-icon-download {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #449fbe;
}
.has-icon-download::after {
  content: "";
  background-image: url(/intl/download/img/icon_download.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  margin-left: .5em;
}
.has-icon-transition {
  display: flex;
  justify-content: center;
  align-items: center;
}
.has-icon-transition::after {
  content: "";
  background-image: url(/intl/download/img/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  margin-left: .5em;
}
.has-icon-transition > * {
  color: #404040;
}

/* content - container */
.dl-main {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  margin: -20px auto 0;
  padding: 0 0 40px;
}
.dl-main * {
  box-sizing: inherit;
}
@media screen and (max-width: 1100px) {
  .dl-main {
    display: none;
  }
}

/* content > to archive */
.area-transition {
  width: 1008px;
  margin: 40px auto 0;
  text-align: right;
}

/* content > header */
.dl-header {
  width: 100%;
  background-color: #e6e6e6;
}

/* content > tab navigation */
.dl-navigation {
  position: sticky;
  top: 80px;
  z-index: 200;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
  border-bottom: 1px solid #999;
  background-color: #e6e6e6;
}
.tabnav {
  overflow: hidden;
  width: 1008px;
  height: 177px;
  margin: 0 auto -2px;
}
.tabnav .dl-h2 {
  font-size: 16px;
  line-height: 40px;
}
.tabnav-wrapper {
  position: relative;
  height: 100%;
  z-index: 1;
}
.tabnav-image {
  margin: 7px 0 0;
}
.tab-menu {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.tab-menu__item {
  box-sizing: border-box;
  width: 280px;
}
.tab-menu__item + .tab-menu__item {
  padding-left: 10px;
}
.tab-trigger {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 0 1px;
  padding: 10px 10px 5px;
  border-bottom: 1px solid #999;
  border-radius: 10px 10px 0 0;
  background-color: #ccc;
  text-align: center;
  cursor: pointer;
}
.tab-trigger.is-active {
  padding-bottom: 14px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  border-left: 1px solid #999;
  border-bottom: none;
  background-color: #fff;
}
.tab-trigger.is-active .dl-h2 {
  font-weight: bold;
}

/* content > tab navigation > other model */
.dl-navigation__other-model{
  box-sizing: border-box;
  width: 160px;
  padding-left: 10px;
}
.dl-navigation__other-model>a{
  display: block;
  margin: 0 0 1px;
  padding: 10px 10px 5px;
  border-bottom: 1px solid #999;
  border-radius: 10px 10px 0 0;
  background-color: #ccc;
  text-align: center;
  cursor: pointer;
  line-height: 150px;
  font-size: 16px;
  color: #333333;
}
.dl-navigation__other-model>a:hover{
  opacity: 1;
}

/* content > tab content */
.dl-content {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  opacity: 0;
}
.dl-content.show {
  opacity: 1;
}
.dl-content-error {
  max-width: 1008px;
  width: 100%;
  margin: auto;
  padding: 150px 0 100px;
  text-align: center;
}
.dl-content-error .error-message{
  font-size: 26px;
  margin-bottom: 25px;
}
.tab-content__item {
  box-sizing: border-box;
  padding: 10px 0 0;
  display: none;
  text-align: left;
}
.tab-content__item.is-active {
  display: block;
  animation: fade 0.5s ease;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* content > table */
.table-app {
  box-sizing: border-box;
  max-width: 1008px;
  width: 100%;
  margin: 20px auto 0;
}
.table-app + .table-app {
  margin: 40px auto 0;
}
.table-app *, .table-app *::before, .table-app *::after {
  box-sizing: inherit;
}
.table-app caption {
  padding: 1em;
}
.table-app caption .dl-h3 {
  display: inline-block;
  vertical-align: middle;
}
.table-app caption .dl-link {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
}
.table-app col + col {
  border-left: 1px solid #ccc;
}
.table-app tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-app th {
  height: 80px;
  padding: 1em;
  line-height: 1;
  text-align: left;
}
.table-app td {
  height: 80px;
  padding: 1em;
  line-height: 1;
}
.app4-name {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
}
.col-app4 {
  width: 332px;
}
.col-os4 {
  width: 140px;
}
.col-ver4 {
  width: 320px;
}
.col-dl4 {
  width: 216px;
}
.data-latest {
  display: flex;
  justify-content: center;
}
.data-latest-version {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}
.data-latest-date::before {
  content: "/";
  margin: 0 .5em;
}
.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-col-z1 .dl-h2 {
  width: 176px;
  line-height: 1.25em;
  text-align: left;
}
.flex-col-sc2b .dl-h2 {
  width: 235px;
  line-height: 1.25em;
  text-align: left;
}

/* content > ricoh360 manual */
.dl-content__ricoh360-manual{
  box-sizing: border-box;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.dl-content__ricoh360-manual>a{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #449FBE;
  font-size: 14px;
  color: white;
  padding: 12px 40px;
  border-radius: 9999px;
}

/* for #header */
#header {
  margin: 0;
}

/* for #main */
#main {
  width: auto;
}
@media screen and (min-width: 1101px) {
  #main {
    width: 100%;
    background-color: #ffffff;
  }
}

/* for #menu-list */
.menu-list {
  width: 100%;
  background-color: #f2f2f2;
}
.menu-list-content {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 14px 18px;
}
.pagenation-title a {
  color: #000000;
  font-size: 12px;
}
.menu.current a {
  color: #0088bd;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  .menu-list {
    text-align: left;
  }
  .pagenation-title {
    margin-right: 2px;
    padding-right: 15px;
    background-image: url(/intl/img/icon/arrow.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 15px;
    line-height: 1em;
  }
  .pagenation-title.arrow-close {
    background-image: url(/intl/img/icon/arrow-close.png);
  }
  .menu-wrapper {
    position: absolute;
    background-color: #f2f2f2;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0.95;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 18px;
    z-index: 2;
  }
  .menu-wrapper a {
    color: #000000;
    display: block;
    font-size: 12px;
  }
  .menu {
    padding: 16px 0;
    border-bottom: 1px #aaaaaa solid;
  }
  .menu:last-child {
    border-bottom: 0;
  }
}
@media screen and (min-width: 1101px) {
  .menu-list-content {
    width: 1008px;
    margin: -20px auto 0;
    padding: 18px 0;
  }
  .pagenation-title {
    display: inline-block;
  }
  .pagenation-title a {
    font-size: 16px;
  }
  .menu-wrapper {
    display: inline-block;
    float: right;
  }
  .menu {
    display: inline-block;
    margin-right: 24px;
  }
  .menu a {
    color: #000000;
    font-size: 14px;
  }
  .menu:last-child {
    margin-right: 0;
  }
}

/* for .sp > .application */
@media screen and (max-width: 1100px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
    margin-top: -20px;
    background-color: white;
  }
  .sp__archive-title {
    background-color: #2A303C;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-bottom: 20px;
  }
  .sp__archive-title p {
    color: white;
    font-size: 16px;
    line-height: normal;
  }
  .application {
    width: 100%;
    text-align: center;
  }
  .application h2 {
    padding: 19px 0;
    background-color: #f0f0f0;
    text-align: left;
    display: flex;
    justify-content: center;
  }
  .application h2 span {
    font-size: 18px;
    color: #404040;
  }
  .separator10{
    background-color: #f0f0f0;
  }
  .model {
    width: 100%;
    background-color: #ffffff;
    padding-top: 20px;
  }
  .model h3 {
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 20px;
  }
  .products__name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: 0;
  }
  .products__name h3 {
    line-height: 1.2;
    text-align: left;
  }
  .model .downloadBlock {
    margin-top: 20px;
    padding-bottom: 40px;
    font-size: 0;
    display: flex;
    justify-content: center;
    column-gap: 20px;
  }
  .model .downloadBlock .device:first-child {
    width: 138px;
  }
  .model .downloadBlock .device:last-child {
    width: 155px;
  }
  .model .downloadBlock--jp .device:first-child {
    width: 125px;
  }
  .model .downloadBlock--jp .device:last-child {
    width: 155px;
  }
  .model .downloadBlock--fr .device:first-child {
    width: 146px;
  }
  .model .downloadBlock--fr .device:last-child {
    width: 158px;
  }
  .model .downloadBlock--es .device:first-child {
    width: 138px;
  }
  .model .downloadBlock--es .device:last-child {
    width: 158px;
  }
  .model .downloadBlock .device .storeLink {
    display: block;
  }
  .model .downloadBlock .device .storeLink img{
    vertical-align: top;
  }
  .model .downloadBlock .device .history {
    display: inline-block;
    margin-top: 20px;
    padding-right: 14px;
    font-size: 14px;
    color: #404040;
    position: relative;
    line-height: 1;
  }
  .model .downloadBlock .device .history:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 6px;
    height: 9px;
    background-image: url(/intl/download/img/icon_arrow.png);
    -webkit-background-size: 6px 9px;
    background-size: 6px 9px;
    top: 1px;
    right: 0;
  }
}

/* for .footLink */
@media screen and (max-width: 1100px) {
  .footLink {
    padding: 21px 0;
    background-color: #ffffff;
    text-align: center;
  }
  .footLink a {
    font-size: 14px;
    color: #404040;
  }
  .footLink .dl-link {
    font-size: 14px;
  }
}

/* for #contents-foot */
@media screen and (max-width: 1100px) {
  .separator10 {
    width: 100%;
    height: 10px;
    color: #f0f0f0;
  }
  .separator20 {
    width: 100%;
    height: 20px;
    color: #f0f0f0;
  }
}
@media screen and (min-width: 1101px) {
  #contents_foot {
    width: 960px;
    margin: 15px auto 0;
  }
}
