/* CSS Document */
main.top {
  padding-top: calc((100vh - 525px) / 2);
  padding-top: calc((100svh - 525px) / 2);
  padding-bottom: 60px;
}
main.top #binder {
  margin-bottom: 30px;
}
main.top #list {
  border: 1px solid #CBD6DC;
  background: #FFF;
  border-radius: 10px;
  padding: 15px;
}
main.top #list .item-lead {
  background: #F6F6F6 url(../img/icon-q.svg) no-repeat left 8px top 5px;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 32px;
  text-align: center;
}
main.top #list .item-lead h2 {
  text-align: center;
  font-size: 18px;
  font-size: 1.3846153846rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.3;
}
main.top #list .item-lead p {
  line-height: 1.7;
}
main.top #list .item-lead p:not(:last-child) {
  margin-bottom: 15px;
}
main.top #list .item-list {
  position: relative;
}
main.top #list .item-list h3 {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 48px;
  background: url(../img/top/bg-hd.png) no-repeat center top/auto 100%;
  transform: translateY(calc(-50% + 4px));
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-size: 1.3846153846rem;
  font-weight: 900;
  padding-bottom: 10px;
  box-sizing: border-box;
  z-index: 2;
}
main.top #list .item-list .list {
  transition: all 1s ease;
  height: 220px;
  overflow: hidden;
  position: relative;
}
main.top #list .item-list .list:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transition: all 0.3s ease;
  pointer-events: none;
}
main.top #list .item-list .list.opened {
  height: auto;
}
main.top #list .item-list .list.opened:after {
  opacity: 0;
  visibility: hidden;
}
main.top #list .item-list section {
  padding: 30px 15px;
  border-radius: 10px;
}
main.top #list .item-list section:first-of-type {
  padding-top: 60px;
}
main.top #list .item-list section:not(:last-child) {
  margin-bottom: 10px;
}
main.top #list .item-list section.blue {
  background: #EBF5FD;
}
main.top #list .item-list section.blue ul li {
  border-bottom-color: #339DD7;
}
main.top #list .item-list section.orange {
  background: #FFF2E6;
}
main.top #list .item-list section.orange ul li {
  border-bottom-color: #FF911D;
}
main.top #list .item-list section.green {
  background: #F0FBEF;
}
main.top #list .item-list section.green ul li {
  border-bottom-color: #77BB66;
}
main.top #list .item-list section.pink {
  background: #FFF3F8;
}
main.top #list .item-list section.pink ul li {
  border-bottom-color: #F17AAC;
}
main.top #list .item-list section ul li {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
main.top #list .item-list section ul li h4 {
  width: 90px;
}
main.top #list .item-list section ul li h4 img {
  pointer-events: none;
}
main.top #list .item-list section ul li p {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  font-size: 12px;
  font-size: 0.9230769231rem;
  line-height: 1.6;
}
main.top #list .item-list section ul li:not(:last-child) {
  border-bottom: 1px solid #CBD6DC;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
main.top #list .item-list .open {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
main.top #list .item-list .open:after {
  content: "";
  width: 14px;
  height: 14px;
  background: no-repeat center/auto;
  background-image: url(../img/top/icon-plus.svg);
}
main.top #list .item-list .open.opened:after {
  background-image: url(../img/top/icon-minus.svg);
}
