#pageHead{
  padding: 20px 0 0;
  background: #f8f8f8;
}
#pageHead .breadcrumbs li{
  font-size: 12px;
  font-weight: 500;
}
#pageHead .breadcrumbs li a{
  position: relative;
  margin: 0;
  background: none;
  color: rgb(23 28 28 / 68%);
}
#pageHead .breadcrumbs li a::after{
  content: "/";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  display: inline-block;
  color: #005AE0;
  font-size: 12px;
}
#headBlock{
  margin: 6px auto 0;
/*  padding: 54px 0 54px 15px;*/
  background: #f8f8f8;
}
/*
.headline01{
  font-size: 42px;
}
*/

.listContents{
  width: 990px;
  margin: 60px auto 0;
}
.listContents button{
  cursor: pointer;
}

.search_heading{
  width: 100%;
  height: 78px;
  border: 1px solid #D2D7DC;
  border-radius: 16px;
  background: #F3F6FA;
  color: #005AE0;
  font-size: 18px;
  font-weight: 700;
}

/*ボタン*/
.btn-squareArrow {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  cursor: pointer;
  min-height: 2.65vw;
  padding: 0;
  align-items: center;
  font-size: 18px;
  color: var(--main-clr-bl);
  font-weight: 900;
}
.btn-squareArrow img {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 2.65vw;
  min-width: 42px;
  height: 2.65vw;
  min-height: 42px;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.btn-squareArrow:hover {
  color: var(--main-clr-bk);
}
.btn-squareArrow:hover img:nth-of-type(2) {
  opacity: 0;
}

@media screen and (min-width: 1920px) {
  .btn-squareArrow {
    min-height: 50px;
  }
  .btn-squareArrow img {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 736px) {
  .btn-squareArrow {
    height: auto;
    min-height: 10.25vw;
  }
  .btn-squareArrow img {
    width: 10.25vw;
    max-width: 32px;
    min-width: auto;
    height: 10.25vw;
    max-height: 32px;
    min-height: auto;
  }
}

.search_heading.is-open{
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  background: #fff;
}
.search_heading.is-open img{
  transform: translateY(-50%) rotate(180deg);
}
.search_body{
  display: none;
  border: 1px solid #D2D7DC;
  border-radius: 0 0 16px 16px;
  border-top: none;
  padding: 0 24px 30px;
}
.searchBox{
  padding: 24px 0;
  border-bottom: 1px solid #D2D7DC;
}
.searchBox:first-of-type{
  border-top: 1px solid #D2D7DC;
}
.searchBox_heading{
  font-size: 20px;
  font-weight: 700;
}
.searchBox_subHeading{
  font-size: 14px;
  font-weight: 700;
}
.control + .searchBox_subHeading{
  margin-top: 12px;
}
.searchBox_body{
  margin: 8px 0 0;
}
.searchBox_body form{
  display: flex;
  gap: 12px;
}
.iSearchAssist{
  width: 460px;
  height: 43px;
  border: 1px solid #005AE0;
  border-radius: 6px;
  font-size: 16px;
}
.searchBox_body input[type="text"]{
  padding: 0 10px;
  font-size: 14px;
}
.searchBox_body input::placeholder {
  color: #A2A2A2;
}
.searchBox_body [type="submit"]{
  width: 72px;
  height: 43px;
  padding: 0 0 0 16px;
  border: none;
  border-radius: 6px;
  background: url(/common/images/icon_search.webp) no-repeat left 10px center / 14px var(--main-clr-bl);
  color: #fff;
  font-size: 14px;
}

.control_checkbox {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  color: #005AE0;
  vertical-align: middle;
  cursor: pointer;
}
.control_checkbox input {
  display: none;
}
.control_indicator {
  position: absolute;
  top: calc(.5em - 10px);
  left: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 3px;
  background: #D2D7DC;
  transition: .2s;
}
.control_indicator::after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%) rotate(45deg);
  transform: translate(-50%, -70%) rotate(45deg);
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
/* チェック時に色変更 */
.control_checkbox input:checked + .control_indicator {
  background: #005AE0;
  border-color: #005AE0;
}

.searchBox--checkbox .searchBox_body{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.searchBox--checkbox .searchBox_body--noRowGap{
  gap: 0 24px;
}
.searchBox--checkbox .searchBox_body:not(.searchBox_body--noRowGap) .searchBox_checks{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
.searchBox--checkbox .searchBox_body:not(.searchBox_body--noRowGap) .searchBox_subHeading{
  width: 100%;
}
.searchBox_checks{
  width: calc((100% - 72px) / 4);
}
.searchBox_body--noRowGap .searchBox_checks:nth-child(n + 5),
.searchBox_subHeading + .control_checkbox,
.control_checkbox + .control_checkbox{
  margin-top: 8px;
}
.searchBox_link{
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 56px 0 0;
}
.btn{
  border-radius: 8px;
  width: 220px;
  height: 73px;
  font-size: 18px;
  font-weight: 700;
  border: none;
}
.btn--lbl{
  border: 1px solid #D2D7DC;
  background: #F3F6FA;
  color: #171D1C;
}
.btn--bl{
  background: #005AE0;
  color: #fff;
}
.btn--rd{
  background: #e6210b;
  color: #fff;
}
.btn--rd:hover{
  background-color: #bf1c08;
  text-decoration: none;
}

.searchList_wrap{
  margin: 74px 0 0;
}
.searchList{
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.searchList--more{
  display: none;
}
.searchList_item{
  width: calc((100% - 72px) / 3);
}
.searchList_link{
  display: block;
  padding: 20px 20px 32px;
  background: #fff;
  border: 1px solid rgb(0 90 224 / 33%);
  border-radius: 8px;
  color: #171D1C!important;
}
.searchList_link:hover{
  background: #F3F6FA;
  border-color: #005AE0;
  text-decoration: none;
}
.searchList_img{
  width: 266px;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
}
.searchList_img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.searchList_title{
  margin: 11px 0 0;
  color: #005AE0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
.searchList_text{
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}
.searchList_date{
  margin: 12px 0 0;
  font-size: 12px;
}
.searchList_type{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 14px 0 0;
  font-size: 12px;
}
.searchList_type dt{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 23px;
  padding: 0 5px;
  border-radius: 4px;
  background: #F3F6FA;
  font-size: 10px;
}
.searchList_type dd{
  display: flex;
  align-items: center;
  width: calc(100% - 94px);
}

.more_btn{
  display: block;
  width: 400px;
  height: 78px;
  margin: 60px auto 0;
  color: var(--main-clr-bl);
}
.searchList_more{
  display: none;
  margin: 36px 0 0;
}

.link_block{
  margin: 60px 0 0;
}
.link_block .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 78px;
  margin: 0 auto;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.link_block .btn:hover{
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  #pageHead{
    padding: 22px 0 0;
  }
  #pageHead .breadcrumbs{
    margin: 0 20px;
  }
  #headBlock{
    width: auto;
    padding: 14px 20px 16px!important;
    border-top: none;
    border-bottom: 1px solid rgb(0 90 224 / 33%);
  }
  .headline01{
    font-size: 30px;
  }

  .listContents{
    width: auto;
    margin-top: 36px;
    padding: 0 20px;
  }

  .search_heading{
    height: 68px;
    border-radius: 8px;
  }

  .btn-squareArrow--r img{
    right: 20px;
  }

  .search_heading.is-open{
    border-radius: 8px 8px 0 0;
  }
  .search_body{
    padding: 0 20px 18px;
    border-radius: 0 0 8px 8px;
  }
  .searchBox_heading{
    font-size: 18px;
  }
  .searchBox_body input[type="text"]{
    width: calc(100% - 84px);
  }

  .control_checkbox {
    margin-top: 4px;
  }
  .control_checkbox + .control_checkbox{
    margin-top: 9px;
  }

  .searchBox--checkbox .searchBox_body{
    flex-direction: column;
    gap: 0;
    margin-top: 6px;
  }
  .searchBox--add_heading .searchBox_body{
    gap: 24px;
  }
  .searchBox_checks{
    width: 100%;
  }
  .searchBox_body--noRowGap .searchBox_checks:nth-child(n + 2){
    margin-top: 8px;
  }
  .searchBox_link{
    margin-top: 32px;
  }
  .searchBox_link .btn{
    width: calc(50% - 16px);
    font-size: 16px;
  }
  .btn{
    height: 58px;
  }

  .searchList_wrap{
    margin-top: 32px;
  }
  .searchList{
    gap: 3.8vw;
  }
  .searchList_item{
    width: calc(50% - 1.9vw);
  }
  .searchList_link{
    padding: 20px;
  }
  .searchList_img{
    width: 100%;
  }
  .searchList_date{
    margin-top: 15px;
  }

  .more_btn{
    width: 100%;
  }

  .link_block .btn{
    width: 100%;
    height: 73px;
    font-size: 18px;
  }

}

@media screen and (max-width: 480px) {
  .searchList{
    flex-direction: column;
  }
  .searchList_item{
    width: 100%;
  }
}


  #pageHead .breadcrumbs {
    width: 990px;
  }
  #headBlock {
    padding-left: 0;
    width: 990px;
  }