@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
/*
	$weight:フォントの太さ
*/
/*
	$weight:フォントの太さ
	@include f_serif(700);
*/
/*
	$weight:フォントの太さ
	@include f_din(600);
*/
.sec_links .content_block .text_box {
  margin-bottom: 4rem;
}
.sec_links .content_block .text_box .text {
  text-align: center;
}
.sec_links .content_block .text_box .text span {
  display: inline-block;
}
.sec_links .content_block .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec_links .content_block .list .item {
  margin-bottom: 1.5em;
  padding: 1em;
  background-color: #FFFFFF;
  border-left: 4px solid #E9A87D;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.sec_links .content_block .list .item:hover {
  background-color: #F2F2F2;
}
.sec_links .content_block .list .item a {
  text-decoration: none;
  display: block;
}
.sec_links .content_block .list .item a::first-line {
  font-weight: bold;
  font-size: 1.2em;
}
.sec_links .content_block .list .item a small {
  display: block;
  color: #212121;
  font-size: 0.85em;
  margin-top: 0.2em;
  word-break: break-all;
}
.sec_links .content_block .list .item.download {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.4;
  color: #FFFFFF;
  background-color: #FF7043;
  border: 3px solid #FF7043;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: auto;
  cursor: pointer;
  letter-spacing: 0.1em;
  padding: 0.4rem;
  border-radius: 9999px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  width: 280px;
  height: 76px;
  font-size: 1.6rem;
  padding-right: 6rem;
}
.sec_links .content_block .list .item.download:hover {
  background-color: #F4511E;
  border: 3px solid #F4511E;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.sec_links .content_block .list .item.download:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.sec_links .content_block .list .item.download::before {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sec_links .content_block .list .item.download:hover::before {
  -webkit-transform: translateY(-50%) translateX(4px);
          transform: translateY(-50%) translateX(4px);
}
.sec_links .content_block .list .item.download.pdf::before {
  background-image: url("/assets/img/common/icon_pdf.svg");
  background-size: contain;
  background-repeat: no-repeat;
}