/* CSS Document */

article{
    padding-bottom: 80px; 
}

#fv{
    margin-bottom: 50px; 
}
#fv h2{
    text-align: left;
    color: #fff;
    padding: 30px 0 30px 20px;
    background: rgba(89, 134, 198, .8);
    font-size: 140%;
    margin-bottom: 50px;
}

#notice{
    margin-bottom: 50px; 
}
#notice h3 {
    font-size: 140%;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    color: #5986C6;
    align-items: center;
    gap: 10px;
    padding: 0 5px 15px;
    position: relative;
    margin-bottom: 20px;
}
#notice h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #5986C6;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}
#notice h4 {
    color: #666;
    margin-bottom: 10px;
    text-align: right;
}

#notice ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#notice ul li {
  border-bottom: 1px solid #ddd;
  padding: 15px 10px;
  transition: background 0.3s;
}

#notice ul li:hover {
  background: #f4f7fb;
}

#notice ul li dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
}

#notice ul li dt {
  font-weight: bold;
  color: #666;
  width: 140px;
  flex-shrink: 0;
}

#notice ul li time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95em;
}

#notice ul li dd {
  flex: 1;
  margin: 0;
}

#notice .category span {
  display: inline-block;
  background: #4A7EBE;
  color: #fff;
  font-size: 0.85em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 5px;
	margin-right: 5px;
}
#notice .category .new { background: #4A7EBE; }
#notice .category .system { background: #6BBE4A; }
#notice .category .seminar { background: #EBA63F; }
#notice .category .important { background: #E65A5A; }

#notice ul li .title {
  font-weight: 600;
  font-size: 1em;
  color: #333;
  margin: 3px 0 0;
}

#notice ul li .title:hover {
  text-decoration: underline;
  color: #4A7EBE;
}

#notice .back-btn {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

#notice .back-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4A7EBE;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 40px;
    gap: 10px;
    transition: background 0.3s;
}

#notice .back-btn a::after {
    content: url("../module/img/arrow3.svg");
    width: 10px;
    height: auto;
    display: inline-block;
    line-height: 0;
    position: relative;
    top: 1px;
}


@media screen and (max-width: 480px) {
    #notice ul li dl {
        flex-direction: column;
        align-items: flex-start;
    }
    #notice ul li dt {
        width: auto;
    }
    #notice ul li dd {
        width: 100%;
    }
    
    #notice .back-btn a {
        width: 100%;
        padding: 15px 0;
    }
	
}
