@charset "UTF-8";
.dl_section{
  display: flex;
  justify-content: space-between;
}

.dl_dsc{
  width: 43%;
}

.dl_form{
  box-shadow: 0 4px 20px rgb(0 0 0 / 10%);
  border-radius: 10px;
  padding: 20px 30px;
  width: 52%;
}

.dl_dsc__img{
  margin-top: 50px;
  text-align: center;
}

.dl_dsc__toc{
  margin-top: 60px;
}
.dl_dsc__toc h2{
  font-size:2.8rem;
  font-weight: bold;
  border-bottom: 1px solid var(--keyColor);
}

.dl_dsc__toc p{
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width: 900px) {
  .dl_section{
    display: block;
  }
  .dl_section > div{
    width: 100%;
  }
  .dl_form{
    margin-top: 30px;
  }
}


/* 調査資料ダウンロード TOP */

.di_list{
  margin-top: 70px;
  padding-bottom: 80px;
}

.di_list__item{
  display: flex;
  gap: 55px;
}
.di_list__item + .di_list__item{
  margin-top: 100px;
}
.di_list__img{
  width: 360px;
  margin: 0 auto;
}

.di_list__txt{
  width: calc(100% - 360px - 55px);
  display: flex;
      flex-direction: column;
    justify-content: space-between;
}

.di_list__txt h2{
  font-size: 2.8rem;
}
.di_list__label{
  display: flex;
  gap: 5px;
  margin-top: 20px;
}
.di_list__label li{
  background-color: #EEEEEE;
      display: inline-block;
      border-radius: 5px;
      padding: 5px 10px;
}

.di_list__txt a{
  color: #fff;
    background-color: var(--keyColor) ;
    max-width: 400px;
    width: 80%;
    height: 50px;
    border-radius: 25px;
    border: 2px var(--keyColor) solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-decoration: none;
}

.di_list__txt a:hover {
    border: 2px var(--keyColor) solid;
    background-color: #fff;
    color: var(--keyColor) !important;
    opacity: 1;
}

@media screen and (max-width: 900px) {

.di_list__item{
flex-direction: column;
gap: 55px;
}
.di_list__item > div{
width: 100%;
text-align: center;
}
.di_list__txt{
text-align: center;
align-items: center;
}
}


.dl_link{
  border: 1px solid #707070;
  padding:30px 20px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 160px;
}

.dl_link__lead{
  font-size: 2.8rem;
}

.dl_link a{
  color: #fff;
    background-color: var(--keyColor) ;
    max-width: 480px;
    width: 80%;
    height: 50px;
    border-radius: 25px;
    border: 2px var(--keyColor) solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    text-decoration: none;
}

.dl_link a:hover {
    border: 2px var(--keyColor) solid;
    background-color: #fff;
    color: var(--keyColor) !important;
    opacity: 1;
}

@media screen and (max-width: 900px) {
	.dl_link{
  margin-top: 0;
  margin-bottom: 80px;
}
}



