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

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

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

#daemon-Main .product_info p,
#daemon-Main .version_info p,
#daemon-Main .support p{
  padding-left: 1rem;
}

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

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

.whereami {
  background-color: #8C49B2;
}

.product_info h2 {
  font-size: 1.2rem;
  line-height: 1.8;
  border-bottom: 1px solid #333;
  margin: 2rem 0 0 1rem;
  padding: 1rem 0 0 0;
}

.product_info h2.before_p {
  font-size: 1.2rem;
  line-height: 1.8;
  border-bottom: 1px solid #333;
  margin: 2rem 0 1rem 1rem;
  padding: 1rem 0 0 0;
  border-bottom: 1px solid #333;
}

.product_info dl {
  margin: 0;
}

.product_info dt {
  margin-left: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}

.product_info dt::before {
  content: '● ';
}

.product_info dd::before {
  content: '- ';
  font-size: 1.2rem;
}

.product_info dd {
  margin-left: 2.5rem;
  font: 1rem/1.6 monospace;
  padding-left: 1rem;
  text-indent: -0.8rem;
}

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

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

#daemon-Main .product_info .container .images {
  width: 300px;
  /* 兄弟要素の.contentの高さに合わせる */
  height: 992px;
  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;
}

/* バージョン情報ブロック */
#daemon-Main .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;
}

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

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

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

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

#daemon-Main .version_info dd {
  font-size: 12px;
  line-height: 1.8;
  padding: 5px 15px 0px 20px;
  /* padding-right: 25px; */
  /* padding-left: 15px; */
  margin-left: 20px;
  position: relative;
}

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

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

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

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

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

#daemon-Main .version_info .version.appear .content {
  display: block;
  animation: 0.6s fadeIn;
}

.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;
  }
}
