@charset "UTF-8";

.topics1{
  display: flex;
  margin-bottom: 40px;
  padding: 30px 200px 30px 30px;
  border-radius: 10px;
  background: #D4E6F1;
  position: relative;
}
.topics1 dl{
  display: flex;
  align-items: center;
}
.topics1 dl dt{
  margin-right: .5em;
}
.topics1 dl dd select{
  min-width: 200px;
  height: 58px;
  line-height: 58px;
	padding: 0 10px;
  margin-right: 40px;
  font-size: 16px;
  background: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.topics1 dl dd select.topics1-select2{
  min-width: 400px;
  margin-right: 0;
}
.topics1 button{
  position: absolute;
  right: 30px;
  top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 58px;
  color: #003A91;
  font-size: 16px;
  font-weight: 400;
  background: #9ACBF3;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.topics1 button:hover{
  opacity: .5;
}
@media screen and (max-width: 1050px) {
  .topics1{
    padding: 30px 100px 30px 30px;
  }
  .topics1 dl dd select.topics1-select1{
    min-width: 130px;
    margin-right: 20px;
  }
  .topics1 dl dd select.topics1-select2{
    min-width: 300px;
  }
  .topics1 button{
    width: 72px;
  }
}
@media screen and (max-width: 767px) {
  .topics1{
    display: block;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
  }
  .topics1 dl{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .topics1 dl dt{
    margin-right: 0;
    width: 5.5em;
  }
  .topics1 dl dd{
    flex: 1;
  }
  .topics1 dl dd select{
    min-width: inherit!important;
    width: 100%;
    height: 48px;
    line-height: 48px;
    margin-right: 0;
  }
  .topics1 button{
    position: static;
    margin: 16px auto 0;
    width: 160px;
    height: 44px;
  }
  .topics1 button:hover{
    opacity: 1;
  }
}

.topics2{
  overflow: hidden;
  margin-bottom: 20px;
}
.topics2 .topics2_ttl{
  margin-bottom: 20px;
  color: #003A91;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}
.topics2 a{
  display: block;
  padding: 30px 80px 30px 40px;
  line-height: 1.5;
  border-radius: 8px;
  background: #FFF;
  margin-bottom: 12px;
  position: relative;
}
.topics2 a:after{
  display: inline-block;
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/arrow_right_bl_long.svg) center / 20px auto no-repeat #D4E6F1;
  border-radius: 50%;
}
.topics2 a .date{
  display: inline-block;
  margin-right: 10px;
  color: #003A91;
}
.topics2 a .tag{
  display: inline-block;
  padding: 2px 10px;
  color: #fff;
  font-size: 14px;
  background: #003A91;
  border-radius: 6px;
}
.topics2 a .ttl{
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .topics2 .topics2_ttl{
    font-size: 28px;
  }
  .topics2 a{
    padding: 20px;
    position: static;
  }
  .topics2 a:after{
    display: none;
  }
  .topics2 a .date{
    font-size: 16px;
  }
  .topics2 a .ttl{
    font-size: 16px;
  }
}

.topics3{
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .topics3{
    margin-bottom: 40px;
  }
}

.topics4{
  margin-bottom: 65px;
}
.topics4 .date{
  display: inline-block;
  margin-right: 10px;
  color: #003A91;
}
.topics4 .tag{
  display: inline-block;
  padding: 2px 10px;
  color: #fff;
  font-size: 14px;
  background: #003A91;
  border-radius: 6px;
}
.topics4 .ttl{
  margin-bottom: 30px;
  padding: 20px 0;
  color: #003A91;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #9ACBF3;
}
.topics4 .slider{
	width: 638px;
	margin: 20px auto;
}
.topics4 .slider div{
  margin-bottom: 10px;
}
.topics4 .slider ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.topics4 .slider ul li{
  width: 130px;
  margin: 0 5px 10px;
}
.topics4 .slider ul li img{
	cursor: pointer;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.topics4 .topic-body{
  margin-bottom: 25px;
}
.topics4 p{
  margin-bottom: 25px;
}
.topics4 p.btn{
  text-align: center;
}
.topics4 p.btn a{
  display: inline-block;
  margin: 0 auto;
  padding: 13px;
  min-width: 300px;
  color: #003A91;
  font-weight: 500;
  line-height: 1.5;
  background: #fff;
  border-radius: 6px;
}
.topics4 p.btn a.pdf:after{
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -5px;
  width: 16px;
  height: 20px;
  background: url(../img/icon_pdf.svg) center / contain no-repeat;
}
.topics4 p.back{
  padding-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topics4 .date{
    font-size: 16px;
  }
  .topics4 .tag{
    padding: 0 10px;
  }
  .topics4 .ttl{
    margin-bottom: 20px;
    padding: 10px 0 15px;
    font-size: 21px;
  }
  .topics4 .slider{
    width: auto;
    margin: 20px auto 10px;
  }
  .topics4 .slider div{
    margin-bottom: 3%;
  }
  .topics4 .slider ul{
    justify-content: flex-start;
  }
  .topics4 .slider ul li{
    width: 31.33%;
    margin: 0 3% 10px 0;
  }
  .topics4 .slider ul li:nth-child(3n){
    margin-right: 0;
  }
  .topics4 .slider ul li img{
    cursor: pointer;
  }
  .topics4 p{
    font-size: 16px;
  }
  .topics4 p.back{
    padding-top: 20px;
  }
}
