.panel__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.panel__list .panel__item {
  background: #fff;
}

.panel__list .panel__item a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.panel__list .panel__item a:hover {
  opacity: .7;
}

.panel__list .panel__item a:hover .panel__item_thumb img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.panel__list .panel__item_icon_arrow a:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  right: 0;
  bottom: 0;
  background: url(/assets/img/common/panel_icon_arrow.png) no-repeat center bottom;
  background-size: 100% 100%;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_icon_arrow a:after {
    width: 12px;
    height: 12px;
  }
}

.panel__list .panel__item_thumb {
  width: 100%;
  overflow: hidden;
}

.panel__list .panel__item_thumb img {
  width: 100%;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.panel__list .panel__item_text {
  padding: 5px 3.3% 20px;
}

.panel__list .panel__item_text_twocolumn {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.panel__list .panel__item_text_date {
  font-size: 1.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_date {
    font-size: 1.2rem;
  }
}

.panel__list .panel__item_text_category {
  display: inline-block;
  font-size: 1.3rem;
  background: #e9ecf1;
  color: #0c3280;
  padding: 0 8px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_category {
    font-size: 1.2rem;
  }
}

.panel__list .panel__item_text_bold {
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 7px;
  line-height: 1.35;
  color: #253f76;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_bold {
    font-size: 1.5rem;
  }
}

.panel__list .panel__item_text_year {
  font-size: 1.3rem;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_year {
    font-size: 1.2rem;
  }
}

.panel__list .panel__item_text_name {
  font-size: 1.7rem;
  font-weight: 500;
  color: #253f76;
  line-height: 1.2;
  margin-top: 3px;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_name {
    font-size: 1.5rem;
  }
}

.panel__list .panel__item_grd {
  position: relative;
}

.panel__list .panel__item_thumb {
  position: relative;
}

.panel__list .panel__item_thumb:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  z-index: 1;
}

.panel__list .panel__item_name {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_name {
    font-size: 1.5rem;
  }
}

.panel__list.panel__list_fourcolumn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_fourcolumn {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.panel__list.panel__list_fourcolumn .panel__item {
  width: 22%;
  list-style: none;
  margin-right: 4%;
}

.panel__list.panel__list_fourcolumn .panel__item:nth-of-type(4n) {
  margin-right: 0;
}

.panel__list.panel__list_fourcolumn .panel__item:nth-child(n+5) {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_fourcolumn .panel__item {
    width: 48%;
    margin-right: 0;
  }
  .panel__list.panel__list_fourcolumn .panel__item:nth-child(n+3) {
    margin-top: 4.5%;
  }
}

.panel__list.panel__list_threecolumn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.panel__list.panel__list_threecolumn .panel__item {
  width: 32%;
  margin-right: 2%;
}

.panel__list.panel__list_threecolumn .panel__item:nth-of-type(3n) {
  margin-right: 0;
}

.panel__list.panel__list_threecolumn .panel__item:nth-child(n+4) {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_threecolumn .panel__item {
    width: 100%;
    margin-right: 0;
  }
  .panel__list.panel__list_threecolumn .panel__item:nth-child(n+2) {
    margin-top: 4.5%;
  }
}

.panel__list.panel__list_twocolumn .panel__item {
  width: 48.5%;
}

.panel__list.panel__list_twocolumn .panel__item:nth-child(n+3) {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_twocolumn .panel__item {
    width: 100%;
  }
  .panel__list.panel__list_twocolumn .panel__item:nth-child(n+2) {
    margin-top: 4.5%;
  }
}

.pagenation_square {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .pagenation_square {
    margin-top: 10%;
  }
}

.pagenation_square .pagenation__number_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 520px;
}

@media only screen and (max-width: 767px) {
  .pagenation_square .pagenation__number_list {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.pagenation_square .pagenation__number_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
}

.pagenation_square .pagenation__number_list li a, .pagenation_square .pagenation__number_list li span {
  display: block;
  font-size: 1.5rem;
  padding: 6px 15px;
  font-weight: bold;
}

.pagenation_square .pagenation__number_list li a {
  background: #fff;
  color: #253f76;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #0c3280;
}

.pagenation_square .pagenation__number_list li a:hover {
  background: #0c3280;
  color: #fff;
}

.pagenation_square .pagenation__number_list li.current {
  background: #0c3280;
  color: #fff;
  border: 1px solid #0c3280;
}

.pagenation_square .page_prev, .pagenation_square .page_next {
  margin: 5px;
}

.pagenation_square .page_prev a, .pagenation_square .page_next a {
  display: block;
  font-size: 1.5rem;
  padding: 6px 15px;
  font-weight: bold;
  background: #fff;
  color: #253f76;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #0c3280;
  text-align: center;
}

.pagenation_square .page_prev a:hover, .pagenation_square .page_next a:hover {
  background: #0c3280;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .pagenation_square .page_prev {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 5%;
    margin-right: 5%;
  }
  .pagenation_square .page_prev + .page_next {
    margin-left: 5%;
  }
  .pagenation_square .page_next {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 5%;
  }
}

.pagenation_underline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline {
    margin-top: 9%;
  }
}

.pagenation_underline .pagenation__number_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 600px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 100%;
  }
}

.pagenation_underline .pagenation__number_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #c3cbda;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 15px 0;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list li {
    width: auto;
    margin: 0 0 5%;
  }
}

.pagenation_underline .pagenation__number_list li:last-child {
  border-right: 1px solid #c3cbda;
}

.pagenation_underline .pagenation__number_list li a, .pagenation_underline .pagenation__number_list li span {
  display: block;
  font-size: 1.8rem;
  padding: 0 28px;
  font-weight: bold;
  position: relative;
  color: #253f76;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list li a, .pagenation_underline .pagenation__number_list li span {
    font-size: 1.4rem;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.pagenation_underline .pagenation__number_list li a:after, .pagenation_underline .pagenation__number_list li span:after {
  content: "";
  width: 10px;
  height: 1px;
  background: #253f76;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list li a:after, .pagenation_underline .pagenation__number_list li span:after {
    bottom: -8px;
  }
}

.pagenation_underline .pagenation__number_list li a {
  -webkit-transition: .4s;
  transition: .4s;
}

.pagenation_underline .pagenation__number_list li a:hover:after {
  opacity: 1;
}

.pagenation_underline .pagenation__number_list li.current span:after {
  opacity: 1;
}

.pagenation_underline .page_prev, .pagenation_underline .page_next {
  margin: 5px;
}

.pagenation_underline .page_prev a, .pagenation_underline .page_next a {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #253f76;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a, .pagenation_underline .page_next a {
    font-size: 1.4rem;
  }
}

.pagenation_underline .page_next {
  margin-left: 35px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next {
    margin-left: 0;
  }
}

.pagenation_underline .page_next a {
  padding-right: 39px;
  position: relative;
}

.pagenation_underline .page_next a::before {
  background: #253f76;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 12px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a::before {
    width: 7px;
    right: 10px;
  }
}

.pagenation_underline .page_next a::after {
  background: #253f76;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 5px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a::after {
    width: 3px;
    right: 10px;
  }
}

.pagenation_underline .page_next a:hover::before, .pagenation_underline .page_next a:hover::after {
  right: 11px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a:hover::before, .pagenation_underline .page_next a:hover::after {
    right: 5px;
  }
}

.pagenation_underline .page_next a:before, .pagenation_underline .page_next a:after {
  margin-top: -2px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a:before {
    width: 15px;
  }
}

.pagenation_underline .page_prev {
  margin-right: 35px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev {
    margin-right: 0;
  }
}

.pagenation_underline .page_prev a {
  padding-left: 39px;
  position: relative;
}

.pagenation_underline .page_prev a::before {
  background: #253f76;
  content: "";
  height: 1px;
  left: 25px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  top: 55%;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  width: 12px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a::before {
    width: 10px;
    left: 20px;
  }
}

.pagenation_underline .page_prev a::after {
  background: #253f76;
  content: "";
  height: 1px;
  left: 25px;
  margin-left: -6px;
  margin-top: -5px;
  position: absolute;
  top: 52%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  width: 5px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a::after {
    margin-top: -4px;
    width: 5px -2px;
    left: 20px;
  }
}

.pagenation_underline .page_prev a:hover::before, .pagenation_underline .page_prev a:hover::after {
  left: 20px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a:hover::before, .pagenation_underline .page_prev a:hover::after {
    left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a:before {
    width: 15px;
  }
  .pagenation_underline .page_prev a:after {
    margin-top: -5px;
  }
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 5%;
  }
  .pagenation_underline .page_prev + .page_next {
    margin-left: 5%;
  }
  .pagenation_underline .page_next {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}

.search__conversion_house {
  padding: 70px 25px 90px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .search__conversion_house {
    padding: 8.7% 0 13%;
  }
}

.search__conversion_house .search__conversion_house_inner {
  max-width: 1000px;
  margin: auto;
  padding: 18px 55px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #9b7c78;
  background: #f4f2e7;
}

@media only screen and (max-width: 767px) {
  .search__conversion_house .search__conversion_house_inner {
    width: 92%;
    padding: 5.7%;
  }
}

.search__conversion_house_title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  color: #892315;
  letter-spacing: 0.14em;
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .search__conversion_house_title {
    font-size: 1.7rem;
    padding-bottom: 10px;
  }
}

.search__conversion_house_title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: rgba(137, 35, 21, 0.4);
  left: 50%;
  bottom: 0;
  margin-left: -30px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_house_title:after {
    width: 30px;
    margin-left: -15px;
  }
}

.search_conversion_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .search_conversion_btn_wrap {
    display: block;
  }
}

.search__conversion_btn {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.14em;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn {
    font-size: 1.4rem;
    letter-spacing: normal;
  }
}

.search__conversion_btn a {
  min-width: 270px;
  display: inline-block;
  padding: 9px 18%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color .4s, color .4s;
  transition: background-color .4s, color .4s;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn a {
    width: 100%;
    min-width: 100%;
    padding: 3% 10%;
  }
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn + .search__conversion_btn {
    margin-top: 5%;
  }
}

.search__conversion_btn_white a {
  background: #fff;
  border: 2px solid #892315;
  color: #892315;
  position: relative;
}

.search__conversion_btn_white a::before {
  background: #892315;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 20px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_white a::before {
    width: 15px;
    right: 10px;
  }
}

.search__conversion_btn_white a::after {
  background: #892315;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 6px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_white a::after {
    width: 4px;
    right: 10px;
  }
}

.search__conversion_btn_white a:hover::before, .search__conversion_btn_white a:hover::after {
  right: 11px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_white a:hover::before, .search__conversion_btn_white a:hover::after {
    right: 5px;
  }
}

.search__conversion_btn_white a:hover {
  background: #892315;
  border: 2px solid #892315;
  color: #fff;
  position: relative;
}

.search__conversion_btn_white a:hover::before {
  background: #fff;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 20px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_white a:hover::before {
    width: 15px;
    right: 10px;
  }
}

.search__conversion_btn_white a:hover::after {
  background: #fff;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 6px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_white a:hover::after {
    width: 4px;
    right: 10px;
  }
}

.search__conversion_btn_white a:hover:hover::before, .search__conversion_btn_white a:hover:hover::after {
  right: 11px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_white a:hover:hover::before, .search__conversion_btn_white a:hover:hover::after {
    right: 5px;
  }
}

.search__conversion_btn_red a {
  background: #892315;
  border: 2px solid #892315;
  color: #fff;
  position: relative;
}

.search__conversion_btn_red a::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 20px;
  background: url(/assets/img/common/icon_contact_white.png) no-repeat center top;
  background-size: 100% auto;
  top: 50%;
  left: 40px;
  margin-top: -10px;
}

@media only screen and (max-width: 767px) {
  .search__conversion_btn_red a::before {
    width: 19px;
    height: 15px;
    margin-top: -8px;
    left: 25px;
  }
}

.search__conversion_btn_red a:hover {
  background: #fff;
  border: 2px solid #892315;
  color: #892315;
}

.search__conversion_btn_red a:hover::before {
  background: url(/assets/img/common/icon_contact_red.png) no-repeat center top;
  background-size: 100% auto;
}

@media only screen and (min-width: 768px) {
  .mainvisual .mainvisual__inner {
    height: 280px;
  }
}

.contents_wrap_onecolumn .main_contents {
  margin: 50px 0 92px;
}

@media only screen and (max-width: 767px) {
  .contents_wrap_onecolumn .main_contents {
    margin: 8% 0 15%;
    padding: 0;
  }
}

.case {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .case {
    margin-top: 10%;
    padding: 0 4%;
  }
}

.case .lead_text {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 2.07143;
  letter-spacing: 0.08em;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .case .lead_text {
    margin-top: 3%;
    font-size: 1.3rem;
    line-height: 1.84615;
  }
}

.case .panel__list {
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .case .panel__list {
    margin-top: 6%;
  }
}

.case .panel__list a {
  text-align: center;
  height: auto;
}

.case .panel__list a:hover .panel__item_text_name.move_arrow::before, .case .panel__list a:hover .panel__item_text_name.move_arrow::after {
  right: 11px;
}

@media only screen and (max-width: 767px) {
  .case .panel__list a:hover .panel__item_text_name.move_arrow::before, .case .panel__list a:hover .panel__item_text_name.move_arrow::after {
    right: -1px;
  }
}

.case .panel__list .panel__item_text_name {
  margin-top: 12px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #000;
  display: inline-block;
}

.case .panel__list .panel__item_text_name.move_arrow {
  padding-right: 45px;
  position: relative;
}

.case .panel__list .panel__item_text_name.move_arrow::before {
  background: #253f76;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 16px;
}

@media only screen and (max-width: 767px) {
  .case .panel__list .panel__item_text_name.move_arrow::before {
    width: 11px;
    right: 10px;
  }
}

.case .panel__list .panel__item_text_name.move_arrow::after {
  background: #253f76;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 6px;
}

@media only screen and (max-width: 767px) {
  .case .panel__list .panel__item_text_name.move_arrow::after {
    width: 4px;
    right: 10px;
  }
}

.case .panel__list .panel__item_text_name.move_arrow:hover::before, .case .panel__list .panel__item_text_name.move_arrow:hover::after {
  right: 11px;
}

@media only screen and (max-width: 767px) {
  .case .panel__list .panel__item_text_name.move_arrow:hover::before, .case .panel__list .panel__item_text_name.move_arrow:hover::after {
    right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .case .panel__list .panel__item_text_name.move_arrow {
    padding-right: 35px;
  }
}

.case .panel__list .panel__item_description {
  margin-top: 10px;
  text-align: left;
}

.case .panel__list .panel__item_thumb::before {
  content: none;
}
