/* ***************************** */
/* server.html styles        */
/* block_id = '#server-Main' */
/* ***************************** */

/* 製品情報ブロック */
.product_info,
.version_info,
.support {
  padding: 2.5rem 1.5rem;
  color: #333;
}

.product_info > h1,
.version_info h1,
.support h1 {
  border-bottom: 1.5px solid #333;
  font-weight: 600;
  letter-spacing: 3px;
  /* background: linear-gradient(to bottom, #F8F9FA, #CAD1DF ); */
  background: linear-gradient(to bottom, #ffff, hsl(0, 0%, 95%) );
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.product_info p,
.version_info p,
.support p {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

/* このスタイルを無効にするとcss/common.css設定 */
#common-Header .tabContents li a span.selected {
  color: #E78E28;
}

.whereami {
  background-color: #E78E28;
}

#server-Main ul {
  list-style: none;
  margin: 2rem 0 2rem 3rem;
}

.mass_venders {
  padding-left: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.mass_venders li {
  font-size: 1.4rem;
  width: 150px;
}

.mass_venders li::before,
.server_descriptions li::before {
  content: '● ';
  font-size: 12px;
}

.product_info .container {
  display: flex;
  align-items: center;
}

.product_info .container .content {
  margin-right: 3rem;
  width: 500px;
}

.product_info .container .images {
  width: 300px;
  height: 1215px;  /* 兄弟要素の.contentの高さに合わせる */
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

/* ツールチップ設定 */
span[data-descr] {
  position: relative;
  cursor: pointer;
}

span[data-descr]:hover::after {
  content: attr(data-descr);
  position: absolute;
  right: -20px;
  top: -20px;
  max-width: 180px;
  border: 1px #aaa solid;
  border-radius: 5px;
  background-color: #ffc;
  padding: 5px;
  color: #333;
  /* font-size: 10px; */
  font: 10px/1.5 monospace;
  z-index: 0;
}

/* public Mascot search block */
.mascotSearch {
  width: 400px;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  margin: 3rem auto;
  border: 1px solid #9e9faf;
  background: linear-gradient(to bottom, #F8F9FA, #CAD1DF );
  border-radius: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.mascotSearch:hover {
  opacity: 0.85;
  transition: 0.3s;
}

.mascotSearch h1 {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
}

.mascotSearch h1:hover {
  color: hsl(14, 50%, 30%);
  text-shadow: 1px 1px 1px #fff;
  transition: color 0.5s;
}

.mascotSearch div {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.mascotSearch div:hover {
  color: hsl(14, 60%, 40%);
  text-shadow: 1px 1px 1px #efefef;
  transition: color 0.5s;
}

.mascotSearch a:hover h2:after {
  content: ' 検索サイトへ';
  font-size: 1.2rem;
}

.mascotSearch span{
  font-size: 0.8rem;
}

/* バージョン情報ブロック */
.version_info .number {
  padding: 1rem 0 0 0;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #333;
  padding: 0.2rem 2rem;
  border-radius: 15px;
  width: 140px;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.version_info .number span {
  color: #fff;
  line-height: 1.4;
  display: inline-block;
}

.version_info .version {
  margin-right: 20px;
}

.version_info .number::after {
  content: '＋';
  color: #fff;
  position: absolute;
  left: 140px;
  /* top: -1px; */
  font-size: 24px;
  transition: transform 0.3s;
}

.version_info .version.appear .number::after {
  transform: rotate(45deg);
}

.version_info dd {
  font-size: 12px;
  line-height: 1.8;
  padding: 5px 15px 0px 20px;
  margin-left: 20px;
  position: relative;
}

.version_info dd:last-of-type {
  margin-bottom: 30px;
}

.version_info dd::before {
  content: '⚪︎ ';
  position: absolute;
  left: 3px;
}

.version_info dd span {
  margin-left: 7px;
}

.version_info a:hover,
.product_info a:hover,
.support a:hover {
  background: linear-gradient(transparent 80%, #e8cece 0%);
}

.version_info .content {
  padding: 0 0 5px 0;
  margin-right: 20px;
  display: none;
}

.version_info .version.appear .content {
  display: block;
  animation: 0.3s fadeIn;
}

.more {
  font-size: 1rem;
}

.support dt {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-left: 1rem;
  padding: 1rem 0 0.5rem 1rem;
}

.support dt::before {
  content: '▷ ';
}

.support dt:hover::before {
  content: '▶︎ ';
  color: var(--logoRed);
}

.support dd {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 2rem 1.7rem;
  padding: 0.5rem 0 0.5rem 1rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
