@charset "UTF-8";

section {
  padding: 20px 0;
}

@media only screen and (max-width: 1200px) {
  section {
    padding: 10px 0
  }
}

.main-vis {
  width: 100%;
  min-height: 670px;
  /*background: url("../images/main-vis__bg.png") no-repeat center center #fff;*/
  background: no-repeat center center #fff;
  background-size: 1400px auto;
  position: relative;
  display: flex;
  align-items: center;
  background: url("../images/main-vis__img-pc.jpg") center center / cover no-repeat;
}

.main-vis-inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px
}

.main-vis-inner-cts {
  width: 45%;
  max-width: 470px;
  padding-top: 60px
}

.main-vis-inner-img {
  width: calc(55% - 20px);
  display: none;
}

.main-vis-inner-cts__ttl {
  margin: 20px 0;
  font-family: var(--site-font-serif);
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 1px
}

.main-vis-inner-cts__txt {
  font-size: 20px;
  font-weight: 500;
  font-feature-settings: 'palt';
  line-height: 2.3333;
  letter-spacing: 0.1ex;
}
@media only screen and (max-width: 767px) {
  .main-vis-inner-cts__txt {
    font-size: 16px;
  }
}

.main-vis-inner-cts__btnBox {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
}

.main-vis-inner-cts__btn {
  max-width: 380px;
  width: 100%;
}

.main-vis-inner-cts__btn--red {
  margin-top: 16px;
}

.main-vis-inner-cts__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  background: var(--site-c-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  height: 64px;
  gap: 1ex;
  position: relative;
}
.main-vis-inner-cts__btn--red a {
  background: var(--site-c-red);
  border: 1px solid var(--site-c-red);
}
.main-vis-inner-cts__btn a::before {
  content: '';
  display: none;
  width: 40px;
  height: 52px;
  background-image: url(../images/icon-men.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.main-vis-inner-cts__btn--red a::before {
  background-image: url(../images/icon-women.png);
}
.main-vis-inner-cts__btn a::after {
  content: '\f054';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-weight: 900;

  display: inline-block;
  transform: scale(1);
  opacity: 0.5;
}
.main-vis-inner-cts__btn i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  background: #fff;
  color: var(--site-c-blue);
  font-size: 13px;
  letter-spacing: 0.5ex;
  text-indent: 0.5ex;
  min-width: 56px;
  min-height: 20px;
}
.main-vis-inner-cts__btn--red i {
  background: #fff;
  color: var(--site-c-red);
}

@media only screen and (max-width: 1600px) {
  .main-vis {
    background: url("../images/main-vis__img-pc2.jpg") center center / cover no-repeat;
  }
}

@media only screen and (max-width: 1200px) {
  .main-vis {
    min-height: 550px;
    background-size: 120% auto;
  }

  .main-vis-inner {
    padding: 0 40px;
  }

  .main-vis-inner-cts {
    padding-top: 20px;
  }

  .main-vis-inner-cts__ttl {
    font-size: 40px;
  }
}

@media only screen and (max-width: 959px) {
  .main-vis {
    /* width: 750px; */
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    background-position: center 10vh;
    background: none;
  }

  .main-vis-inner {
    padding: 0;
    gap: 30px;
  }

  .main-vis-inner-cts {
    width: 750px;
    margin-inline: auto;
    max-width: none;
    padding-top: 80px;
  }

  .main-vis-inner-img {
    width: 100%;
    display: block;
    margin-inline: -15px;
  }

  .main-vis-inner-cts__ttl {
    font-size: 50px;
    word-break: keep-all;
  }

  .main-vis-inner-cts__btn {}

  .main-vis-inner-cts__btn--red {
    margin-top: 10px
  }
}

@media only screen and (max-width: 767px) {
  .main-vis-inner-cts {
    padding-top: 40px
  }
}

/*	TOP REASON
---------------------------------*/
.reason {
  padding-block: 80px 0;
}

.reason-inner {
  background: var(--site-c-bg-ui);
  padding: 50px 30px;
  border-radius: 15px;
}

.reason__ttl {
  color: var(--site-c-blue);
  font-family: var(--site-font-serif);
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
}

.reason__txt {
  color: var(--site-c-blue);
  font-size: 17px;
  font-weight: 500;
  line-height: 2.3333;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .reason {
    padding-block: 50px 0;
  }
}

@media only screen and (max-width: 959px) {
  .reason-inner {
    padding: 30px 20px;
  }
  
  .reason__txt {
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .reason__ttl {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .reason__txt {
    font-size: 16px;
  }
}


/*	TOP FEATURE
---------------------------------*/
.feature {
  padding-bottom: 0
}

/*	TOP LIST
---------------------------------*/
.top-result {}

.top-result {
  width: 100%;
  margin: 0;
  padding: 20px 0 100px;
  position: relative;
  overflow: hidden;
}

.top-result::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -100px;
  left: 0;
  right: 0;
  background-color: #f6f6f8;
  transform: skewY(12deg) translateY(190px);
  z-index: -1;
}

.top-result__ttl {
  color: var(--site-c-blue);
  font-family: var(--site-font-serif);
  font-size: 36px;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .top-result__ttl::before {
    content: '';
    width: 36px;
    height: 48px;
    margin-right: 15px;
    background: url(../images/icon-note.png) center center / contain no-repeat;
    display: inline-block;
    display: none;
  }
}


.top-result__en-ttl {
  margin-bottom: 10px
}
.top-result__en-ttl span {
  display: inline-block;
  color: #dadae7;
  font-size: 90px;
  font-weight: 400;
  font-family: "Cinzel", serif;
  line-height: 1;
}
.top-result__en-ttl img {
  max-width: 256px;
  width: 100%;
  height: 94px;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .top-result__en-ttl {}
  .top-result__en-ttl span {
    font-size: 48px;
  }
  .top-result__en-ttl img {
    height: 47px;
  }
}


.top-result-inner {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.top-result-inner-block {
  width: 100%;
}
.top-result-inner-block__item {
  width: calc((100% - 30px) / 3);
  background-color: #fff;
  margin-bottom: 15px;
}
.top-result-inner-block__list::before,
.top-result-inner-block__list::after {
  content: "";
  display: block;
  width: calc((100% - 30px) / 3);
}
.top-result-inner-block__list::before {
    order: 1;
}
.top-result-inner-block__item::after {
    content: "";
    display: block;
    width: calc((100% - 30px) / 3);
}
.top-result-inner-block__ttl {
  display: flex;
  align-items: center;
  background: var(--site-c-blue);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding: 1ex;
  gap: 0.5ex;
  width: 100%;
}

.top-result-inner-block__ttl::before {
  content: '';
  display: block;
  display: none;
  background-image: url(../images/icon-men.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  transform: scale(1.25);
}

.women .top-result-inner-block__ttl {
  background: var(--site-c-red);
}

.women .top-result-inner-block__ttl::before {
  background-image: url(../images/icon-women.png);
}

.top-result-inner-block__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-result-inner-block__item a {
  /* display: flex;
  justify-content: flex-start;
  align-items: flex-start; */
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 0;
}

.top-result-inner-block__img {
  border-radius: 5px;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.top-result-inner-block__txtBox {
  /* width: calc(100% - 150px) */
  padding: 10px;
}

.top-result-inner-block__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.top-result-inner-block__info {
  margin-top: 5px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 12px 20px;
}

.top-result-inner-block__info dl {
  display: flex;
  align-items: center;
  gap: 4px 0;
  width: 47%;
}

.top-result-inner-block__info dt {
  padding: 0 0.5ex;
  background: var(--site-c-blue);
  background: #f6f6f8;
  color: var(--site-c-blue);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  min-width: 3.2em;
}

.women .top-result-inner-block__info dt {
  background: var(--site-c-red);
  background-color: #fbf3f3;
  color: var(--site-c-red);
}
.top-result-inner-block__info dd {
  font-size: 14px;
  font-weight: 500;
  min-width: 64px;
}
.top-result-inner-block__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
}
.top-result-inner-block__btn {
  max-width: 380px;
  width: 100%;
  margin: 30px auto 0;
}

.top-result-inner-block__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3em;
  background: var(--site-c-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  height: 64px;
  gap: 15px;
  position: relative;
}

.women .top-result-inner-block__btn a {
  background: var(--site-c-red);
}

.top-result-inner-block__btn a::after {

  content: '\f054';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-weight: 900;

  display: inline-block;
  transform: scale(1);
  position: absolute;
  right: 1.5ex;
  opacity: 0.5;
}

@media only screen and (max-width: 1200px) {
  .top-result-inner-block__info dl {
    width: 100%;
    gap: 4px 8px;
  }
  .top-result-inner-block__info dt {
    min-width: 6em;
    font-size: 14px;
  }
  .top-result-inner-block__item {
    width: calc((100% - 15px) / 2);
  }
  .top-result-inner {
    gap: 20px;
  }
}

@media screen and (max-width: 959px) {
  .top-result-inner {
    gap: 40px
  }

  .top-result-inner-block {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .top-result-inner-block__item {
    width: 100%;
  }
  .top-result__ttl {
    font-size: 26px;
  }

  .top-result__en-ttl {
    width: 117px;
    height: 47px;
  }

  .top-result {
    padding: 40px 0 40px;
  }

  .top-result::before {
    transform: skewY(12deg) translateY(80px);
  }

  .top-result-inner {
    margin-top: 20px
  }

  .top-result-inner-block__ttl {
    font-size: 20px;
  }

  .top-result-inner-block__ttl::before {
    width: 35px;
    height: 48px
  }

  .top-result-inner-block__list {
    margin-top: -1rem;
    gap: 10px;
  }

  .top-result-inner-block__item a {
    padding: 0 15px 15px;
    gap: 10px;
  }

  .top-result-inner-block__txtBox {
    width: calc(100% - 70px);
  }

  .top-result-inner-block__desc {
    font-size: 15px;
  }

  .top-result-inner-block__btn {
    margin-top: -30px
  }
  .top-result-inner-block__img {
    margin-top: -20px;
  }
}

/*	TOP Plan
---------------------------------*/

.top-plan__ttl {
  color: var(--site-c-blue);
  font-family: var(--site-font-serif);
  font-size: 36px;
  position: relative;
  /* display: flex;
  align-items: center; */
  text-align: center;
}
.top-plan__en-ttl {
  margin-bottom: 10px;
  text-align: center;
}
.top-plan__en-ttl span {
  display: inline-block;
  color: #dadae7;
  font-size: 90px;
  font-weight: 400;
  font-family: "Cinzel", serif;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top-plan__ttl,
  .top-plan__en-ttl {
    text-align: left;
  }
  .top-plan__en-ttl span {
    font-size: 48px;
  }
}

.top-plan__list-table {
  table-layout: fixed;
  border-collapse: collapse;
  border-bottom: solid 1px var(--site-c-blue);
  background: #fff;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .top-plan__list-table {
    table-layout: auto;
  }
}

.top-plan__list-table::before {
  content: '';
  display: block;
  border-left: solid 1px var(--site-c-blue);
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.top-plan__list-table th,
.top-plan__list-table td {
  border-top: solid 1px var(--site-c-blue);
  border-right: solid 1px var(--site-c-blue);
  border-bottom: none;
  border-left: solid 1px var(--site-c-blue);
  background: transparent;
  color: var(--site-c-blue);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

@media (max-width: 767px) {

  .top-plan__list-table th,
  .top-plan__list-table td {
    font-size: 16px;
    padding: 12px;
  }
}

.top-plan__list-table th:first-child {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  border-bottom: none;
  border-left: solid 1px #fff;
  border-top: solid 1px var(--site-c-blue);
  border-right: solid 1px var(--site-c-blue);
  border-bottom: none;
  border-left: solid 1px var(--site-c-blue);
  background: #dadae7;
  color: var(--site-c-blue);
}

.top-plan__list-table tr:first-child th:first-child {
  border-top-color: var(--site-c-blue);
}

.top-plan__list-table .top-plan__list-table-th:nth-child(n),
.top-plan__list-table .top-plan__list-table-th {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  border-bottom: none;
  border-left: solid 1px #fff;
  border-top: solid 1px var(--site-c-blue);
  border-right: solid 1px var(--site-c-blue);
  border-bottom: none;
  border-left: solid 1px var(--site-c-blue);
  background: #f6f6f8;
  color: var(--site-c-blue);
}

.top-plan__list_option {
  display: inline-block;
  border-radius: 3px;
  border: solid 1px #6fc3fe;
  background: #6fc3fe;
  color: #ff8d98;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05ex;
  line-height: 14px;
  padding: 4px 8px;
  margin-top: 4px;
}

.top-plan__list>p {
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  text-align: center;
  margin: 16px 0 0;
}

.top-plan__list-table i {
  display: inline-block;
  transform: scale(1.5);
}


/*	TOP COLUMN
---------------------------------*/

.top-column__ttl {
  color: var(--site-c-blue);
  font-family: var(--site-font-serif);
  font-size: 36px;
  position: relative;
  /* display: flex;
  align-items: center; */
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .top-column__ttl::before {
    content: '';
    width: 36px;
    height: 36px;
    margin-right: 10px;
    background: url(../images/icon-pen.png) center center / contain no-repeat;
    display: inline-block;
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .top-column__ttl{
    text-align: left;
  }
}



.top-column__en-ttl {
  margin-bottom: 10px;
  text-align: center;
}
.top-column__en-ttl span {
  display: inline-block;
  color: #dadae7;
  font-size: 90px;
  font-weight: 400;
  font-family: "Cinzel", serif;
  line-height: 1;
}
.top-column__en-ttl img {
  max-width: 520px;
  width: 100%;
  height: 94px;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .top-column__en-ttl {
    text-align: left;
  }
  .top-column__en-ttl span {
    font-size: 48px;
  }
  .top-column__en-ttl img {
    height: 47px;
  }
}


.top-column-inner {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-column-inner__txtBox {
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px
}

.top-column-inner__txt {}

.top-column-inner__btn {}

.top-column-inner__btn a {
  width: 100%;
  height: 65px;
  background: #fff;
  border: 1px solid var(--site-c-red);
  color: var(--site-c-red);
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-column-inner__btn a::after {
  width: 32px;
  height: 28px;
  content: '';
  background-image: url(../images/arrow_right--red.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.top-column-inner-list {
  /* width: calc(100% - 300px); */
  width: 100%;
  display: flex;
  gap: 30px
}

.top-column-inner-list__item {
  padding: 0 15px;
}

.top-column-inner-list__item a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-column-inner-list__item img {
  border-radius: 10px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.top-column-inner-list__ttl {
  color: var(--site-c-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4
}
@media only screen and (max-width: 767px) {
  .top-column-inner-list__ttl {
    font-size: 14px;
  }
}

.top-column-inner-list__txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.3333;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 30px;
  height: 30px;
  background: #333;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: absolute;
  top: 85px;
  left: -5px;
  z-index: 100;
}

.prev-arrow {
  transform: rotate(180deg);
}

.next-arrow {
  left: auto;
  right: -5px
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

@media screen and (max-width: 959px) {
  .top-column-inner__txtBox {
    width: 100%
  }

  .top-column-inner-list {
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top-column__ttl {
    font-size: 26px;
  }

  .top-column__en-ttl {
    width: 269px;
    height: 48px;
  }
}
.top-search_box {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.top-search_box_item {
  width: calc((100% - 20px) / 2);
}
.top-search_box_item > img {
  max-width: 720px;
  width: 100%;
}
.top-search_box_item .reason__ttl {
  color: var(--site-c-red);
  margin: .5em 0 0 -10em;
  text-align: right;
}
.top-search_box_item > ul {
  margin-top: 1rem;
}
.top-search_box_item > ul > li {
  position: relative;
  font-size: 17px;
  line-height: 1.55;
  padding: 2rem 0;
}
.top-search_box_item > ul > li > span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  margin-bottom: .5em;
}
.top-search_box_item > ul > li:nth-child(n+2) {
  border-top: solid 1px #dadae7;
}
.top-search_box_item > ul > li:nth-child(1):before,
.top-search_box_item > ul > li:nth-child(2):before,
.top-search_box_item > ul > li:nth-child(3):before {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -1.5em;
  font-size: 36px;
  font-weight: bold;
  font-family: var(--site-font-serif);
}
.top-search_box_item > ul > li:nth-child(1):before {
  content: "①";
}
.top-search_box_item > ul > li:nth-child(2):before {
  content: "②";
}
.top-search_box_item > ul > li:nth-child(3):before {
  content: "③";
}
.top-search_box_list {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 49.5%; */
}
.top-search_box_list:first-child {
width: 70%;
}
.top-search_box_list {
  width: 15%;
}
.top-search_box_list:last-child {
  width: 15%;
}
.top-search_box_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px 20px;
}
.top-search_box_list ul > li {
  width: calc((100% - 40px) / 3);
  margin: .5rem 0;
}
.top-search_box_list select {
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(68, 68, 68, 0.1);
  font-size: 15px;
  font-weight: 400;
  color: var(--site-c-blue);
  line-height: 43px;
  width: 100%;
  height: 50px;
  padding: 0 35px 0 15px;
  cursor: pointer;
}
.top-search_box_list span {
  position: relative;
}
.top-search_box_list span::after {
  content: '\f078';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: scale(1) translate(0, -50%);
  opacity: 0.5;
  pointer-events: none;
}
.top-search {
  background-color: var(--site-c-blue);
  margin-bottom: 3rem;
}
.btn-ad_search,
.btn-search {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  letter-spacing: .1rem;
  font-weight: 700;
  width: 100%;
  height: 56px;
  padding: 0;
  margin-left: 15px;
}
.btn-ad_search {
  background-color: #fff;
  color: #04045b;
  border: soldi 2px #04045b;
}
.btn-search {
  background-color: var(--site-c-red);
}
.education_list select {
  width: calc(100% - 3em);
  margin-right: .2em;
}
.education_txt {
  display: contents;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.top-search_box_list .education_list  span::after {
  right: 18px;
}
@media screen and (max-width: 959px) {
  .top-search_box_list,
  .top-search_box_list:first-child,
  .top-search_box_list:last-child {
    width: 100%;
  }
  .top-search_box_list ul > li {
    width: calc((100% - 10px) / 2);
  }
  .btn-ad_search {
    font-size: 16px;
    margin: 15px 5px 0 0;
  }
  .btn-search {
    font-size: 15px;
    margin: 10px 0 0 5px;
  }
  .top-search_box_list ul {
    gap: 3px 10px;
  }
}
@media screen and (max-width: 767px) {
  .top-search_box_item {
    width: 100%;
  }
  .top-search_box_item .reason__ttl {
    margin: 0 0 2rem;
    text-align: left;
    line-height: 1.25;
  }
  .top-search_box_item:first-child {
    order: 2;
  }
  .top-search_box_item:last-child {
    order: 1;
  }
  .top-search_box_item > ul > li:nth-child(1):before,
  .top-search_box_item > ul > li:nth-child(2):before,
  .top-search_box_item > ul > li:nth-child(3):before {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 24px;
  }
  .top-search_box_item > ul > li {
    padding: 4.5rem 1.5rem 2rem;
    margin-bottom: .5rem;
    background-color: var(--site-c-bg-ui);
  }
  .top-search_box_item > ul > li:nth-child(n+2) {
    border-top: none;
  }
  .top-search_box_list select {
    font-size: 14px;
    padding: 0 25px 0 10px;
  }

}
.top-lead {
  margin-bottom: -8rem;
}
.top-search_box_list #modal-drawer {
  width: 90%;
}
.top-search_box_list #modal-drawer .modal__btn>span {
  height: 56px;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(to right, #2e86c4, #2757c5);
  text-align: center;
  line-height: 1.25;
  border: solid 1px #2e86c4;
}
.top-search_box_list #modal-drawer .modal__btn>span::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: .5em;
  background-image: url('/common/images/btn_icon.png');
  background-position: center;
  background-size: contain;
}
.top-search_box_list #modal-drawer .modal__btn>span strong {
  display: contents;
  font-size: 18px;
}
.top-search_box_list #modal-drawer .modal__btn {
  width: 100%;
}
.top-search_box_list #modal-drawer  span::after {
  content: none;
}
.emp_txt {

}
@media screen and (max-width: 959px) {
  .top-lead {
    margin-bottom: -4rem;
  }
  .top-search_box_list #modal-drawer {
    width: 100%;
    margin: 10px 0 15px;
    font-size: 15px;
  }
  .top-search_box_list #modal-drawer .modal__btn>span strong {
    display: unset;
    font-size: 15px;
  }
  .top-search_box_list #modal-drawer .modal__btn>span::before {
    width: 30px;
    height: 30px;
  }
}
.tableset__txt ul li {
  width: auto !important;
  margin: 0 -5px 5px 0;
}
.tableset__txt ul li.search_area_region {
  width: 100% !important;
}