.glossaryDescription {
  min-height: 2.5rem;
}

#glossaryIndex {
  min-height: 58.6rem;
}

.linkBtnDown01 {
  padding: 1rem 2.5rem;
}

@media (max-width: 559px) {

.linkBtn01Container li {
  display: inline-block;
  margin-right: 0.5rem;
}

.linkBtnDown01 {
  display: inline-block;
  width: auto;
  padding: 1rem 2.5rem;
}

}

.ps_glossaryIndex_btn {
  font-size: 1.7rem;
  line-height: 2.7rem;
  font-weight: 400;
  color: #109189;
  background-color: rgba(16,145,137,0.20);
  border-bottom: 1px solid #ffffff;
  padding: 1.6rem 2rem 1.8rem;
  position: relative;
  transition: background-color 0.2s linear 0s, border-bottom 0s linear 0.5s;
  cursor: pointer;
}

@media (max-width: 559px) {

.ps_glossaryIndex_btn {
  font-size: 1.5rem;
  line-height: 2.5rem;
  padding: 1.7rem 2rem 1.8rem;
}

}

.ps_glossaryIndex_btn.opened {
  background-color: rgba(16,145,137,0.10);
  border-bottom: none;
  transition: background-color 0.2s linear 0s, border-bottom 0s linear 0.5s;
}

.ps_glossaryIndex_btn::before {
	content: "";
  position: absolute;
  height: 3.0rem;
  width: 3.0rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border-radius: 1.5rem;
  background: url("/common/images/ico_plus.svg") center center no-repeat #109189;
  transition: background 0.2s;
}

.ps_glossaryIndex_btn.opened::before {
  background: url("/common/images/ico_minusGreen.svg") center center no-repeat #ffffff;
  transition: background 0.2s;
}

.ps_glossaryIndex {
  margin: 2rem 2rem;
  list-style: none;
}

.ps_glossaryIndex li {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dotted #cccccc;
}

.ps_glossaryIndex li:last-of-type {
  border-bottom: none;
}

.ps_glossaryIndex li dt {
  font-size: 1.8rem;
  line-height: 2.9rem;
  color: #000000;
  position: relative;
  width: fit-content;
  transition: 0.2s;
}

.ps_glossaryIndex li dt::before { /* マウスオーバー用の設定（非マウスオーバー時の内容） */
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0; /* 左が固定（左から伸びて、左に縮む） */
  width: 0;
  height: 0.1rem;
  background-color: #109189; /* マウスオーバー時の背景色（下線の色） */
  transition-duration: 0.2s; /* 0.2秒で変化（マウスアウト時） */
}

.ps_glossaryIndex li dt::after {
  content: "";
  display: inline-block;
  width: 2.0rem;
  height: 2.0rem;
  margin: 0 0 -0.2rem 1rem;
  background: url("/common/images/linkarrow03Black.png") center center no-repeat;
  background-size: contain;
  transition: 0.2s;
}

.ps_glossaryIndex li dd {
  height: 2.5rem;
  overflow: hidden;
  position: relative;
  width: calc(100% - 4rem);
  padding-right: 2rem;
  padding-left: 0.1rem;
}

.ps_glossaryIndex li dd::after {
  content: "…";
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (min-width: 560px) {

.ps_glossaryIndex li a:hover dt {
  color: #109189;
  transition: 0.2s;
}

.ps_glossaryIndex li a:hover dt::before {
  width: 100%; /* 0 → 100% に変化 */
  transition-duration: 0.2s; /* 0.2秒で変化（マウスオーバー時） */
}

.ps_glossaryIndex li a:hover dt::after {
  background: url("/common/images/linkarrow03Green.png") center center no-repeat;
  background-size: contain;
  transition: 0.2s;
}

}

@media (max-width: 559px) {

.ps_glossaryIndex li dt {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.ps_glossaryIndex li dt::after {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0 -0.1rem 0.8rem;
}

.ps_glossaryIndex li dd {
  height: 5.1rem;
  width: 100%;
}

}

.ps_glossaryIndex_btn_close_add  {
  position: relative;
}

@media (max-width: 559px) {

.ps_glossaryIndex_btn_close_add li:last-of-type {
  padding-right: 0;
  padding-bottom: 5.7rem;
}

}

.ps_glossaryIndex_btn_close {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 3rem;
  width: 3rem;
  background: url("/common/images/ico_btn_up.svg") center center no-repeat;
  cursor: pointer;
  opacity: 0.0;
  display: none;
  transition: opacity 0.3s;
}

.ps_glossaryIndex_btn_close.opened {
  display: block;
  opacity: 1.0;
  transition: opacity 0.3s;
}

@media (max-width: 559px) {

.ps_glossaryIndex_btn_close {
  bottom: 1.5rem;
}

}


