﻿
body {
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.nopc{ display: none !important;}
.nosp{ display: block !important;}
.nopc-inline{ display: none;}

@media screen and (max-width: 768px) {
  img{
      width: 100%;
      max-width: inherit;
      height: auto;
  }
  .nopc{ display: block !important;}
  .nosp{ display: none !important;}
  .nopc-inline{ display: inline;}

}

.txt-center {
  text-align: center;
}

.bold-m {
  font-weight: 500;
}

.bold {
  font-weight: bold;
}

.note {
  font-size: 14px;
}

header {
  background-color: #EBE9E1;
}

header figure, footer figure {
  width: 1680px;
  max-width: 100%;
  margin: 0 auto;
}

header figure img, footer figure img {
  max-width: 100%;
}

header {
  position: relative;
}

/*header p {
  position: absolute;
  left: 50%;
  bottom: 9px;
  font-size: 20px;
  font-weight: bold;

}*/

main {
  background-color: #F5F4F2;
}

article {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  main {
    padding-bottom: 10vw;
  }
}

.pageTitleBox.ttl-bg_schools::before {
	background: url("../image/title_bg_schools.webp") no-repeat center/cover;
	}
	
@media screen and (max-width: 768px) {
	.pageTitleBox.ttl-bg_schools::before {
	background: url("../image/title_bg_schools_sp.webp") no-repeat center/cover;
	}
}

.pageTitleBox.ttl-bg_employment::before {
	background: url("../image/title_bg_employment.webp") no-repeat center/cover;
	}
	
@media screen and (max-width: 768px) {
	.pageTitleBox.ttl-bg_employment::before {
	background: url("../image/title_bg_employment_sp.webp") no-repeat center/cover;
	}
}

.pageTitleBox.ttl-bg_scholarships::before {
	background: url("../image/title_bg_scholarships.webp") no-repeat center/cover;
	}
	
@media screen and (max-width: 768px) {
	.pageTitleBox.ttl-bg_scholarships::before {
	background: url("../image/title_bg_scholarships_sp.webp") no-repeat center/cover;
	}
}


.lead-box {
  padding: 20px 85px 18px;
  background-color: #EBE9E1;
}

.lead-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: calc(54 / 32);
}

.lead-box p,
.lead-box .lead-list li {
  font-size: 15px;
  line-height: calc(31 / 18);
}

.lead-box p a,
.lead-box li a {
  display: inline;
  color: #005B9C;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .lead-box {
    padding: 8% 6.4% 4%;
  }
  .lead-box h2 {
    font-size: 18px;
    margin-bottom: 4vw;
  }
  .lead-box p,
  .lead-box .lead-list {
    margin-bottom: 1rem;
  }
}

/* search */

.search-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  background-color: #fff;
}

.search-nav {
  padding: 64px 25px;
  background-color: #FFFDF7;
}

@media screen and (max-width: 768px) {
  .search-wrap {
    display: block;
  }
  .search-nav {
    padding: 6% 6.4% 3%;
    z-index: 5;
  }
}

.search_container {
  position: relative;
  display: block;
  width: 100%;
  height: 52px;
  padding: 3px 10px;
  border: 1px solid #949497;
  border-radius: 8px;
  background-color: #FFFFFF;
  overflow: hidden;
}
.search_container input[type="text"] {
  height: 44px;
  padding-left: 9px;
  border: none;
  font-size: 16px;
}
.search_container input[type="submit"] {
  position: absolute;
  top: 4px;
  right: 5px;
  border-radius: 8px;
  background: url("../image/icn_search.svg") no-repeat center center;
  background-color: #B50025;
  width: 42px;
  height: 42px;
  outline : none;
}
.search_container input[type="submit"]:hover,
.search_container input[type="submit"]:focus {
  background-color: #333333;
}

.filter {
  cursor: default;
  display: flex;
  align-items: center;
  margin: 35px 24px 31px;
  font-size: 22px;
  font-weight: bold;
}

h2.filter {
  margin-top: 60px;
}

.filter img {
  margin-right: 15px;
}

.filter-close {
  display: none;
}

.filter-result-box {
  display: none;
}

@media screen and (max-width: 768px) {
  .filter {
    cursor: pointer;
    justify-content: center;
    width: 100%;
    margin: 3vw 0;
    padding: 3.6vw;
    border-radius: 8px;
    background-color: #E8E4D5;
    font-size: 18px;
  }
  h2.filter {
    margin-top: 6vw;
    background-color: transparent;
  }  
  .filter:hover,
  .filter:focus {
    opacity: .7;
  }
  .filter img {
    margin-left: 12px;
    width: 24px;
    height: 24px;
  }
  .filter-wrap {
    display: none;
    position: fixed;
    inset: 0;
    background-color: #fff;
    z-index: 110;
    overflow: auto;
    width: 100%;
  }
  .filter-wrap.open {
    display: block;
  }
  .filter-inside {
    padding: 3% 6% 20%;
  }
  .filter-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 3% 6%;
  }
  .filter-close p {
    font-size: 5vw;
  }
  .filter-close button img {
    width: 5vw;
  }
  .filter-result-box {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2% 3%;
    z-index: 2;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
    background-color: #fff;
  }
  .filter-result-box .filter-result {
    width: 100%;
    padding: 2.5vw 0;
    border-radius: 8px;
    background-color: #F5F4F2;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
  }
  .filter-result-box .filter-result span {
    color: #B50025;
    font-size: 22px;
    font-weight: bold;
  }
}

.search-box {
  padding: 64px 100px 86px 50px;
}

@media screen and (min-width:769px) and ( max-width:1189px) {
  #contents {
    width: 100%;
  }
  .search-wrap {
    display: grid;
    grid-template-columns: minmax( 0, 1fr ) 65%;
  }
  .search-nav {
    padding: 64px 12px;
  }
  .search-box {
    padding: 64px 25px;
  }
}

@media screen and (max-width: 768px) {
  .search-box {
    padding: 3% 6.4% 10%;
  }
}

.search-contact {
  padding: 72px calc((100% - (832 / 1200)*100%) / 2);
  background-color: #EBE9E1;
}

.search-ttl {
  position: relative;
  margin-bottom: 40px;
  padding: 19px 52px 22px 47px;
  background-color: #E8E4D5;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 500;
}

.search-ttl.on {
  margin-bottom: 0;
}


.search-ttl::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 23px;
  left: 25px;
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: #B50025;
}

.search-ttl::after {
  position: absolute;
  top: 28px;
  right: 18px;
  display: block;
  content: "";
  width: 14px;
  height: 15px;
  background: url("../image/icn_arrow.svg") no-repeat center center;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .search-ttl {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .search-ttl::before {
    top: 21px;
  }
}

.search-list {
  margin-top: 20px;
  margin-bottom: 40px;
}

.search-list > li {
  margin-bottom: 12px;
  background-color: #F5F4F2;
  border-radius: 8px;
  font-size: 16px;
  line-height: calc(28 / 16);
}

.search-list > li .search-list-parent {
  position: relative;
  display: block;
  width: 100%;
  padding: 8px 44px 7px 57px;
  background-color: #EBE9E1;
  border-radius: 8px;
  text-indent: -32px;
}

.search-list > li .search-list-parent.nav-accordion::after {
  position: absolute;
  top: 14px;
  right: 18px;
  display: block;
  content: "";
  width: 14px;
  height: 15px;
  background: url("../image/icn_arrow.svg") no-repeat center center;
  background-size: 100% auto;
}


.search-list-sub {
  margin: 20px 25px 40px;
}

.search-list .search-list-sub {
  margin: 8px 25px 10px 40px;
  padding-bottom: 7px;
}

.search-list .search-list-sub-parent {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 18px;
  padding-left: 7px;
  border-bottom: 1px solid #949497;
  line-height: calc(28 / 16);
}

.search-list .sub-check:last-of-type .search-list-sub-parent {
  padding-bottom: 2px;
  border-bottom: none;
  padding-right: 5px;
}

.search-list .search-list-sub-parent::before,
.search-list .search-list-sub-parent::after  {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 8px;
  width: 1px;
  height: 10px;
  background-color: #333333;
}

.search-list .search-list-sub-parent::before  {
  transform: rotate(90deg);
}

.search-list-sub li {
  margin-bottom: 9px;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.2;
  text-indent: -32px;
  line-height: calc(28 / 16);
}

.search-list-sub li.sub-check {
  padding-top: 10px;
  padding-left: 0;
  text-indent: 0;
}

.search-list-sub-sub {
  padding: 10px 0 8px 31px;
  border-bottom: 1px solid #949497;
}

.sub-check:last-of-type .search-list-sub-sub {
  border-bottom: none;
}

.search-nav input[type=checkbox] {
  margin-top: -3px;
  margin-right: 12px;
  transform: scale(1.3);
  accent-color: #B50025;
}

.search-more,.search-less {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding-right: 21px;
  padding-bottom: 20px;
  color: #694A26;
  font-weight: 500;
}

.search-more::after,.search-less::after {
  position: absolute;
  top: 2px;
  right: 0;
  display: block;
  content: "";
  width: 14px;
  height: 15px;
  background: url("../image/icn_arrow_b.svg") no-repeat center/100%;
}

.search-more.open::after,.search-less.open::after {
  transform: scale(1, -1);
}

.search-more:hover,.search-less:hover,
.search-more:focus,.search-less:focus {
  opacity: .7;
}

.search-more-block {
  display: none;
  margin-top: 30px;
}

.nav-accordion {
  cursor: pointer;
}

.nav-accordion.on::after {
  background: url("../image/icn_arrow.svg") no-repeat center center;
  background-size: 100% auto;
  transform: scale(1, -1);
}

.nav-accordion-child {
  display: none;
}

.filter-box {
  padding: 30px;
  border-radius: 8px;
  background-color: #E8E4D5;
}

@media screen and (max-width: 768px) {
  .filter-box {
    padding: 6%;
  }
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 10px;
  margin-bottom: 9px;
  
}

.filter-list .filter-ttl {
  font-size: 14px;
}

.filter-item {
  position: relative;
  padding: 0 10px 0 32px;
  border-radius: 4px;
  background-color: #FFFDF7;
  font-size: 14px;
  line-height: calc(30 / 14);
}

.filter-item::before {
  position: absolute;
  top: 7px;
  left: 10px;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../image/icn_delete.svg") no-repeat center/100%;
  transition: 0.3s;
}

.filter-item:hover:before,
.filter-item:focus:before {
  background: url("../image/icn_delete_b.svg") no-repeat center/100%;
}

.filter-clear {
  display: block;
  width: fit-content;
  margin: 16px 0 17px;
  font-size: 14px;
  font-weight: 500;
}

.filter-clear img {
  display: inline-block;
  width: 10px;
  margin-left: 5px;
  padding-top: 5px;
  vertical-align: text-top;
}

.search-download {
  position: relative;
  padding: 17px 60px;
  background-color: #B50025;
  border-radius: 27px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.search-download::after {
  position: absolute;
  top: 19px;
  right: 15px;
  display: block;
  content: "";
  width: 11px;
  height: 14px;
  background: url("../image/icn_arrow_w.svg") no-repeat center center;
  background-size: 100% auto;
}

.search-download:hover,
.search-download:focus {
  background-color: #333333;
}

@media screen and (max-width:1023px) {
  .search-download {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 743px) {
  .search-download {
    padding: 4vw 10vw 4.5vw;
  }
}

.search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 34px 0;
}

@media screen and (max-width: 768px) {
  .search-result {
    margin: 8vw 0 6vw;
    display: inline-block;
  }
}

.result-num {
  font-weight: bold;
}

.result-num .num {
  color: #B50025;
  font-size: 32px;
}

.result-order {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
}

.result-order-ttl {
  font-weight: 500;
}


.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 12px;
  right: 18px;
  display: block;
  content: "";
  width: 14px;
  height: 15px;
  background: url("../image/icn_arrow.svg") no-repeat center center;
  background-size: 100% auto;
  z-index: 1;
}

.result-order select {
  position: relative;
  padding: 9px 44px 9px 18px;
  border: 1px solid #949497;
  border-radius: 8px;
  z-index: 2;
}

.job-search-result {
  border-left: 1px solid #333333;
  border-collapse: collapse;
}

.job-search-result th,
.job-search-result td {
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
}

.job-search-result th {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #333333;
  background-color: #333333;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.job-search-result th:last-child {
  border-right: 1px solid #333333;
}

.job-search-result td {
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  font-size: 13px;
}

.job-search-result td a {
  color: #694A26;
  text-decoration: underline;
}

.job-search-result td a:hover,
.job-search-result td a:focus {
  opacity: .7;
}


.job-search-result tr:nth-child(2n+1) {
  background-color: #F5F4F2;
}

@media screen and (max-width: 768px) {
  .job-search-result-box {
    overflow-x: scroll;
  }
  .job-search-result {
    width: 700px;
  }
}

.contact-ttl {
  position: relative;
  margin-bottom: 31px;
  padding-left: 48px;
  font-size: 24px;
  font-weight: 500;
}

.contact-ttl::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: block;
  content: "";
  width: 31px;
  height: 31px;
  background: url("../image/icn_mail.svg") no-repeat center center;
  background-size: 100% auto;
}

.search-contact-box {
  display: flex;
}

.search-contact-left {
  width: 49%;
}

.search-contact-name {
  position: relative;
  margin-right: 60px;
  padding-left: 24px;
  line-height: calc(34 / 22);
}

.search-contact-name::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 82%;
  border-radius: 4px;
  background: #B50025;
  }

.search-contact-name span {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 500;
}

.search-contact-address {
  margin-bottom: 10px;
  line-height: calc(31 / 18);
}

.search-contact-note {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .contact-ttl {
    margin-bottom: 20px;
    padding-left: 40px;
    font-size: 18px;
  }
  .contact-ttl::before {
    top: 0;
    width: 29px;
    height: 23px;
  }
  .search-contact {
    padding: 6% 10%;
  }
  .search-contact-box {
    display: block;
  }
  .search-contact-left {
    width: 100%;
  }
  .search-contact-right {
    margin: 25px 0 0 20px;
  }
  .search-contact-name {
    margin-right: 0;
    margin-bottom: 6px;
    padding-left: 20px;
  }
  .search-contact-name span {
    font-size: 16px;
  }
  .search-contact-name::before {
    top: 3px;
    width: 3px;
  }
}

.search_container input[type="text"]:focus,
.search_container input[type="submit"]:focus,
.search-nav button:focus,
.search-nav input[type=checkbox]:focus,
.search-box button:focus,
.result-order select:focus {
  outline: solid 3px #333;
}


/* pager */

.m_pager {
  margin: 40px auto;
}

.m_pager ul.m_pager_nav {
  display: flex;
  justify-content: center;
  gap: 0 22px;
}

.m_pager ul.m_pager_nav .m_pager_nav_item {
  position: relative;
  /*font-size: 22px;*/
  font-weight: 500;
}

.m_pager ul.m_pager_nav .m_pager_nav_item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 4px;
  transition: 0.3s;
  color: #949497;
}

.m_pager ul.m_pager_nav .m_pager_nav_item a:hover,
.m_pager ul.m_pager_nav .m_pager_nav_item a:focus {
  background-color: #EBE9E1;
  color: #333333;
}

.m_pager ul.m_pager_nav .m_pager_nav_item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 4px;
  transition: 0.3s;
  background-color: #B50025;
  color: #fff;
}

.m_pager ul.m_pager_nav .m_pager_nav_item_first a:hover,
.m_pager ul.m_pager_nav .m_pager_nav_item_last a:hover,
.m_pager ul.m_pager_nav .m_pager_nav_item_first a:focus,
.m_pager ul.m_pager_nav .m_pager_nav_item_last a:focus {
  background-color: transparent;
}

.m_pager ul.m_pager_nav .m_pager_nav_item_first::before,
.m_pager ul.m_pager_nav .m_pager_nav_item_last::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 14px;
  height: 11px;
  background: url("../image/icn_arrow.svg") no-repeat center/100%;
}

.m_pager ul.m_pager_nav .m_pager_nav_item_first::before {
  right: 0;
  transform: translateY(-50%) rotateZ(90deg);
}

.m_pager ul.m_pager_nav .m_pager_nav_item_last::before {
  left: 0;
  transform: translateY(-50%) rotateZ(-90deg);
}

@media screen and (max-width: 768px) {
  .m_pager ul.m_pager_nav {
    gap: 0 11px;
  }
  .m_pager ul.m_pager_nav .m_pager_nav_item {
    font-size: 18px;
  }
  .m_pager ul.m_pager_nav .m_pager_nav_item span,
  .m_pager ul.m_pager_nav .m_pager_nav_item a {
    width: 35px;
    height: 35px;
  }
  .m_pager ul.m_pager_nav .m_pager_nav_item_first::before,
  .m_pager ul.m_pager_nav .m_pager_nav_item_last::before {
    width: 11px;
    height: 8.5px;
  }
}


/* school, scholarship */


.school-wrap {
  display: flex;
  gap: 20px;
}

.school-wrap img {
  height: 93px;
  max-width: 93px;
  border-radius: 8px;
  object-fit: cover;
}

.school-wrap p {
  margin-bottom: 0;
}

.scholarship-type-list {
  display: flex;
  flex-wrap: wrap;
  margin: 18px 0 9px;
}

.scholarship-type-item {
  margin-right: 10px;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #D3B270;
  color: #000;
  font-size: 14px;
}

.scholarship-type-item.-scholarship {
  background-color: #B50025;
  color: #fff;
}

.scholarship-type-item.-admission {
  background-color: #D3B270;
}

.scholarship-type-item.-examination {
  background-color: #C7BCA8;
}

.scholarship-type-item.-tuition {
  padding: 5px 9px;
  border: 1px solid #694A26;
  background-color: #FFFDF7;
  color: #694A26;
}

.scholarship-type-item.-arrival {
  background-color: #F1C272;
}

.scholarship-type-item.-other {
  background-color: #424F8A;
  color: #fff;
}

.school-wrap .school-name {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 500;
  line-height: calc(31 / 22);
}

.scholarship-search .school-wrap .school-name {
  font-size: 20px;
}

.school-wrap .scholarship-name {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: calc(34 / 22);
}

@media screen and (max-width: 768px) {
  .scholarship-search .school-wrap .school-name {
    font-size: 18px;
  }
  .school-wrap .school-name,
  .school-wrap .scholarship-name {
    font-size: 20px;
    line-height: calc(58 / 40);
  }
}

.school-wrap .kana {
  font-size: 11px;
  letter-spacing: 2px;
}

.school-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.school-info p {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .school-info {
    gap: 0 20px;
  }
}

.school-info p::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../image/icn_location.svg") no-repeat center center;
  background-size: 100% auto;
}

.school-info .program-type::before {
  background: url("../image/icn_cap.svg") no-repeat center center;
}

.school-info .school-type::before {
  background: url("../image/icn_school.svg") no-repeat center center;
}

.target-course {
  margin: 7px 0 16px;
  font-size: 16px;
}

.target-course-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: 24px;
}

.target-course-list::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../image/icn_cap.svg") no-repeat center/100%;
}

.target-course-item {
  position: relative;
  margin-right: 11px;
  margin-bottom: 13px;
  padding-right: 11px;
  font-size: 14px;
  border-right: 1px solid #333333;
  line-height: 1;
}

.target-course-item:last-of-type {
  border-right: none;
}


.school-result-tab-wrap .search-result {
  margin-top: 35px;
  margin-bottom: 33px;
}

.school-result-tab-menu {
  display: flex;
  gap: 5px;
  margin-top: 30px;
  border-bottom: 3px solid #B50025;
}

.school-result-tab-item {
  position: relative;
  width: 100%;
  padding: 15px 0 16px;
  border-top: 1px solid #949497;
  border-right: 1px solid #949497;
  border-left: 1px solid #949497;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 500;
  line-height: calc(34 / 18);
  text-align: center;
  transition: 0.3s;
}

.school-result-tab-item:hover,
.school-result-tab-item:focus {
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  border-left: 1px solid #333333;
  background-color: #333333;
  color: #fff;
}

.school-result-tab-item.-active {
  border-top: 1px solid #B50025;
  border-right: 1px solid #B50025;
  border-left: 1px solid #B50025;
  background-color: #B50025;
  color: #fff;
}

.school-result-tab-item span {
  position: relative;
  display: inline-block;
  padding-left: 38px;
}

.school-result-tab-item span.book-icon {
  padding-left: 48px;
}

.school-result-tab-item span::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url("../image/icn_school.svg") no-repeat center center;
  background-size: 100% auto;
}

.school-result-tab-item.-active span::before,
.school-result-tab-item:hover span::before,
.school-result-tab-item:focus span::before {
  background: url("../image/icn_school_w.svg") no-repeat center center;
  background-size: 100% auto;
}

.school-result-tab-item.-active span.book-icon::before,
.school-result-tab-item:hover span.book-icon::before,
.school-result-tab-item:focus span.book-icon::before {
  top: 0;
  width: 36px;
  height: 36px;
  background: url("../image/icn_book_w.svg") no-repeat center center;
  background-size: 100% auto;
}

.school-result-tab-item span.book-icon::before {
  top: 0;
  width: 36px;
  height: 36px;
  background: url("../image/icn_book.svg") no-repeat center center;
  background-size: 100% auto;
}

@media screen and (min-width:744px) and (max-width:1023px) {
  .school-result-tab-item span::before {
    top: 0;
    width: 27px;
    height: 27px;
  }
  .school-result-tab-item span.book-icon::before {
    top: -2px;
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 743px) {
  .school-result-tab-item {
    font-size: 13px;
  }
  .school-result-tab-item span {
    padding-left: 7vw;
  }
  .school-result-tab-item span.book-icon {
    padding-left: 7vw;
  }
  .school-result-tab-item span::before {
    width: 5vw;
    height: 5vw;
  }
  .school-result-tab-item.-active span.book-icon::before,
  .school-result-tab-item:hover span.book-icon::before,
  .school-result-tab-item:focus span.book-icon::before,
  .school-result-tab-item span.book-icon::before {
    top: 0.5vw;
    width: 6vw;
    height: 6vw;
  }
}


.school-result-item {
  display: block;
  margin-bottom: 24px;
  padding: 20px 24px 24px;
  border-radius: 8px;
  background-color: #F5F4F2;
  transition: 0.3s;
}

.school-result-item:hover,
.school-result-item:focus {
  box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
}

.scholarship-search .school-result-item {
  padding: 20px 24px 10px;
}

@media screen and (max-width: 768px) {
  .school-result-item {
    margin-bottom: 12px;
    padding: 8% 4.266% 5%;
  }
  .scholarship-search .school-result-item {
    padding: 8% 4.266% 2%;
  }
}

.school-result-item .course-type-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 11px;
}

.school-result-item .date {
  margin-bottom: 14px;
  font-size: 14px;
  text-align: right;
}

.school-result-item .course-type-box .type {
  padding: 6px 10px;
  background-color: #424F8A;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
}

.school-result-item .school-wrap .kana {
  margin-top: 2px;
  margin-bottom: 5px;
}

.school-result-item .school-wrap .school-name {
  margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
  .school-result-item .school-wrap .kana {
    margin-bottom: 2px;
  }
  .school-result-item .school-wrap .school-name {
    margin-bottom: 12px;
  }
}

.school-result-item .school-wrap .school-info p::before {
  /*top: 1px;*/
}

.searchLinkArea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 298px;
  background: url("../image/search_area_bg.webp") no-repeat center/cover;
}

.searchLinkArea .searchLinkBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 553px;
  height: 130px;
  padding: 0 20px;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  transition: 0.3s;
}

.searchLinkArea .searchLinkBtn span {
  position: relative;
  padding: 0 47px 0 80px;
}

.searchLinkArea .searchLinkBtn span::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 53px;
  height: 50px;
  background: url("../image/icon_school_search.svg") no-repeat center/100%;
  transform: translateY(-50%);
}

.searchLinkArea .searchLinkBtn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 17px;
  height: 22px;
  background: url("../image/arrow.svg") no-repeat center/100%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.searchLinkArea .searchLinkBtn:hover,
.searchLinkArea .searchLinkBtn:focus {
  background-color: #333;
  color: #fff;
}

.searchLinkArea .searchLinkBtn:hover span::before,
.searchLinkArea .searchLinkBtn:focus span::before {
  background: url("../image/icon_school_search_w.svg") no-repeat center/100%;
}

.searchLinkArea .searchLinkBtn:hover span::after,
.searchLinkArea .searchLinkBtn:focus span::after {
  background: url("../image/arrow_wht.svg") no-repeat center/100%;
}

@media screen and (max-width: 768px) {
  .searchLinkArea {
    height: 200px;
    background: url("../image/search_area_bg_sp.webp") no-repeat center/cover;
  }
  .searchLinkArea .searchLinkBtn {
    min-width: 327px;
    height: 66px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 15px;
  }
  .searchLinkArea .searchLinkBtn span {
    padding: 0 28.5px 0 41.5px;
  }
  .searchLinkArea .searchLinkBtn span::before {
    width: 26.5px;
    height: 25px;
  }
  .searchLinkArea .searchLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
}


.search-contact-bnr {
  display: flex;
  padding: 84px calc((100% - (1000 / 1200)*100%) / 2);
  align-items: center;
  height: 298px;
  background-color: #EBE9E1;
}

.search-contact-bnr.ex-site {
  background-color: #E8E4D5;
}

.search-contact-bnr-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.search-contact-bnr-item {
  width: 100%;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: calc(35 / 24);
  text-align: center;
  transition: 0.3s;
}

.-single .search-contact-bnr-item {
  width: 480px;
}

.search-contact-bnr-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  height: 130px;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 8px;
  text-align: left;
  transition: 0.3s;
}

.search-contact-bnr-item a:hover,
.search-contact-bnr-item a:focus {
  background-color: #333333;
  color: #fff;
  text-decoration: none;
}

.search-contact-bnr-item a span {
  position: relative;
  padding-right: 52px;
  padding-left: 74px;
}

.search-contact-bnr-item a span::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../image/icn_mail.svg") no-repeat center/100%;
  transform: translateY(-50%);
}

.ex-site .search-contact-bnr-item a span {
  padding-right: 39px;
  padding-left: 0;
}

.ex-site .search-contact-bnr-item a span::before {
  display: none;
}

.search-contact-bnr-item a span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 17px;
  height: 22px;
  background: url("../image/arrow.svg") no-repeat center/100%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.search-contact-bnr-item a:hover span::before,
.search-contact-bnr-item a:focus span::before {
  background: url("../image/icn_mail_w.svg") no-repeat center/100%;
}

.search-contact-bnr-item a:hover span::after,
.search-contact-bnr-item a:focus span::after {
  background: url("../image/arrow_wht.svg") 
  no-repeat center/100%;
}

.search-contact-bnr-item.-faq a span::before {
  width: 51px;
  height: 40px;
  background: url("../image/icn_faq.svg") no-repeat center/100%;
}

.search-contact-bnr-item.-faq a:hover span::before,
.search-contact-bnr-item.-faq a:focus span::before {
  background: url("../image/icn_faq_w.svg") no-repeat center/100%;
}

.ex-site .search-contact-bnr-item a span::after {
  width: 26px;
  height: 26px;
  background: url("../image/icon_blank.svg") no-repeat center/100%;
}

.ex-site .search-contact-bnr-item a:hover span::after,
.ex-site .search-contact-bnr-item a:focus span::after {
  background: url("../image/icon_blank_w.svg") 
  no-repeat center/100%;
}

@media screen and (max-width: 768px) {
  .search-contact-bnr {
    height: 252px;
    padding: 0 6.4%;
  }
  .search-contact-bnr.-single {
    height: 160px;
  }
  .search-contact-bnr-list {
    display: block;
  }
  .search-contact-bnr-item {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .-single .search-contact-bnr-item {
    width: 100%;
  }
  .search-contact-bnr-item:last-child {
    margin-bottom: 0;
  }
  .search-contact-bnr-item a {
    height: 66px;
    padding: 0 10px;
    border-radius: 4px;
  }
  .search-contact-bnr-item a span {
    padding: 0 28.5px 0 41.5px;
  }
  .search-contact-bnr-item a span::before {
    width: 24px;
    height: 18px;
  }
  .search-contact-bnr-item a span::after {
    width: 8.5px;
    height: 11px;
  }
  .search-contact-bnr-item.-faq a span::before {
    width: 26.5px;
    height: 25px;
  }
  .ex-site .search-contact-bnr-item a span {
    padding-right: 33px;
  }
  .ex-site .search-contact-bnr-item a span::after {
    width: 18px;
    height: 18px;
  }
}

.school-result-tab-block {
  display: none;
}

.school-result-tab-block.-active {
  display: block;
}

.school-result-list.-major .school-result-item {
  padding-bottom: 20px;
}

.school-result-list.-major .major-name {
  margin-bottom: 9px;
  font-weight: 500;
}

.school-result-list.-major .program {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
  line-height: calc(58 / 40);
}

.school-result-list.-major .school-wrap {
  margin-bottom: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid #949497;
}

@media screen and (max-width: 768px) {
  .school-result-list.-major .major-name {
    margin-bottom: 6px;
    line-height: calc(48 / 28);
  }
  .school-result-list.-major .program {
    font-size: 20px;
  }
  .school-result-list.-major .school-wrap {
    margin-bottom: 14px;
    padding-bottom: 20px;
  }
}

.school-result-list.-major .school-info .school-program::before {
  background: url("../image/icn_cap.svg") no-repeat center center;
}

.school-result-list.-major .school-course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 20px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .school-result-list.-major .school-course-list {
    gap: 14px;
  }
}

.school-result-list.-major .school-course-item {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.school-result-list.-major .school-course-item::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url("../image/icn_lang.svg") no-repeat center/100%;
}

.school-result-list.-major .school-course-item.-format::before {
  background: url("../image/icn_lecture.svg") no-repeat center/100%;
}

.school-result-list.-major .school-course-item.-start::before {
  background: url("../image/icn_board.svg") no-repeat center/100%;
}

.school-result-list.-major .school-course-item.-term::before {
  background: url("../image/icn_board_check.svg") no-repeat center/100%;
}

.school-result-list.-major .school-course-item .school-course-item-note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}

.school-tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.school-tag-item {
  padding: 4px 9px;
  border: 1px solid #694A26;
  background-color: #FFFDF7;
  border-radius: 4px;
  color: #694A26;
  font-size: 14px;
}

.school-tag-item.-web {
  border: 1px solid #B50025;
  background-color: #B50025;
  color: #fff;
}

.school-tag-item.-before {
  border: 1px solid #D3B270;
  background-color: #D3B270;
  color: #000000;
}

.school-tag-item.-transfer {
  border: 1px solid #694A26;
  background-color: #FFFDF7;
  color: #694A26;
}


/* search detail */

.ttl-type01 {
  position: relative;
  margin-bottom: 60px;
  padding-left: 26px;
  font-size: 22px;
  font-weight: 500;
  line-height: calc(34 / 22);
}

.ttl-type01::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 46px;
  border-radius: 4px;
  background: #B50025;
}

@media screen and (max-width: 768px) {
  .ttl-type01  {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .ttl-type01::before {
    top: 3px;
    height: 90%;
  }
}

.ttl-type02 {
  margin-bottom: 20px;
  padding: 10px 30px 9px;
  background-color: #E8E4D5;
  font-weight: 500;
  line-height: calc(30 / 18);
}

@media screen and (max-width: 768px) {
  .ttl-type02 {
    padding: 3% 6%;
  }
}

.tbl-type01 {
  width: 100%;
  margin-bottom: 40px;
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
}

.tbl-type01 th,
.tbl-type01 td {
  padding: 15px 20px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  text-align: center;
  vertical-align: middle;
  line-height: calc(30 / 18);
}

.tbl-type01 th {
  background-color: #F5F4F2;
  font-weight: 500;
}

.tbl-type01 td {
  color: #694A26;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .tbl-type01 th,
  .tbl-type01 td {
    padding: 3%;
  }
}

.tbl-type01.tbl-left th,
.tbl-type01.tbl-left td {
  text-align: left;
}

.tbl-stat-box {
  margin-bottom: 40px;
}

.tbl-stat {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) and (max-width: 1091px) {
  .tbl-stat {
    width: 800px;
  }
}

@media screen and (max-width: 768px) {
  .tbl-stat {
    width: 650px;
    overflow: auto;
  }
}

.tbl-stat th,
.tbl-stat td {
  padding: 8px;
}

.tbl-stat th, .tbl-stat th, .tbl-stat .accent_color {
  font-size: 13px;
  background-color: #E8E4D5;
}

.tbl-stat td,
.tbl-stat .small {
  font-size: 12px;
  font-weight: normal;
  color: #333333;
}

.tbl-exam td {
  vertical-align: top;
}

.tbl-exam th {
  background-color: #EBE9E1;
}

.tbl-exam td {
  padding: 15px 29px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .tbl-exam td {
    padding: 3%;
  }
}

.tbl-exam .tbl-exam-ttl {
  border-right: 1px solid #fff;
  background-color: #333333;
  color: #fff;
  text-align: center;
}

.tbl-exam .tbl-exam-ttl:last-child {
  border-right: 1px solid #333333;
}

.tbl-exam .cell-c {
  text-align: center;
}

.search-detail-page .lead-box {
  padding: 72px calc((100% - (718 / 1200)*100%) / 2);
}

.search-detail-page.scholarship-detail .update {
  margin-bottom: 14px;
}

.search-detail-page .lead-box .lead-box-ttl {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  line-height: calc(28 / 22);
}

.search-detail-page .lead-box .lead-box-ttl .field {
  display: block;
  padding-bottom: 6px;
  font-size: 18px;
  line-height: calc(28 / 18);
}

.search-detail-page .lead-box .school-wrap .school-name a {
  color: initial;
  text-decoration: underline;
}

.search-detail-page .lead-box .school-wrap .school-name a:hover,
.search-detail-page .lead-box .school-wrap .school-name a:focus {
  color: #694A26;
}

.scholarship-target,
.course-about {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid #949497;
}

.scholarship-target dt {
  margin-bottom: 2px;
  font-weight: 500;
  line-height: calc(28 / 18);
}

.scholarship-target dd {
  margin-bottom: 15px;
  line-height: calc(30 / 18);
}

.scholarship-target dd:last-of-type {
  margin-bottom: 0;
}

.course-about li {
  margin-bottom: 5px;
  font-weight: 500;
  line-height: calc(28 / 18);
}

.dl-note dd {
  line-height: calc(31 / 18);
}

@media screen and (max-width: 768px) {
  .scholarship-target dt,
  .scholarship-target dd {
    font-size: 16px;
  }
}

.scholarship-target-year,
.scholarship-target-course {
  position: relative;
  padding-left: 25px;
}

.scholarship-target-year::before,
.scholarship-target-course::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  content: "";
  width: 15px;
  height: 17px;
  background: url("../image/icn_calendar.svg") no-repeat center/100%;
}

.scholarship-target-course::before {
  width: 17px;
  background: url("../image/icn_cap.svg") no-repeat center/100%;
}

.search-detail-page .search-wrap {
  background-color: #FFFDF7;
}

.search-detail-page .search-wrap .left-nav {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 72px 50px;
}

.search-detail-page .search-wrap .search-box {
  background-color: #fff;
  overflow: auto;
}

@media screen and (max-width: 768px) {
  .search-detail-page .lead-box {
    padding: 8% 6.4%;
  }
  .search-detail-page .search-wrap {
    background-color: #fff;
  }
  .search-detail-page .search-wrap .search-box {
    padding-top: 0;
  }
  .search-detail-page .search-wrap .left-nav {
    position: relative;
    top: 0;
    padding: 0 6.4% 70px;
  }
}

.search-detail-page section.anc {
  margin-bottom: 64px;
  word-wrap: break-word;
}

.search-detail-page section.anc p {
  margin-bottom: 0px;
}

.search-detail-page section.anc:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .search-detail-page section.anc {
    margin-bottom: 45px;
  }
}

.search-detail-page .update {
  font-size: 14px;
  text-align: right;
}

.search-detail-page .outlineTitle {
  margin-top: 20px;
  padding: 20px;
  border-radius: 4px;
  background-color: #F5F4F2;
  color: #694A26;
  font-size: 15px;
  font-weight: 500;
  display: none;
}

@media screen and (max-width: 768px) {
  .search-detail-page .outlineTitle {
    display: block;
  }
}

.search-detail-page .left-nav-list .left-nav-item {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: calc(26 / 15);
}

.search-detail-page .left-nav-list .left-nav-item a {
  position: relative;
  padding-left: 29px;
}

.search-detail-page .left-nav-list .left-nav-item a::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  content: "";
  width: 11px;
  height: 14px;
  background: url("../image/icn_list.svg") no-repeat center center;
  background-size: 100% auto;
  transition: 0.3s;
}

.search-detail-page .left-nav-list .left-nav-item.-active {
  pointer-events: none;
  color: #694A26;
  font-weight: bold;
}

.search-detail-page .left-nav-list .left-nav-item.-active a::before,
.search-detail-page .left-nav-list .left-nav-item a:hover::before,
.search-detail-page .left-nav-list .left-nav-item a:focus::before {
  background: url("../image/icn_list_b.svg") no-repeat center center;
}

.search-detail-page .left-nav-list .left-nav-item a:hover,
.search-detail-page .left-nav-list .left-nav-item a:focus {
  color: #694A26;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .search-detail-page .left-nav-list {
    margin-top: 10px;
    padding: 20px 15px 2px;
    border-radius: 4px;
    background-color: #F5F4F2;
  }
  .search-detail-page .left-nav-list .left-nav-item {
    margin-bottom: 18px;
    line-height: calc(46 / 30);
  }
  .search-detail-page .left-nav-list .left-nav-item a {
    display: block;
    padding-bottom: 18px;
    padding-left: 25px;
    border-bottom: 1px solid #694A26;
    color: #694A26;
  }
  .search-detail-page .left-nav-list .left-nav-item:last-child a {
    padding-bottom: 0;
    border-bottom: none;
  }
  .search-detail-page .left-nav-list .left-nav-item a::before {
    position: absolute;
    top: 6px;
    left: 4px;
    display: block;
    content: "";
    width: 8.5px;
    height: 11px;
    background: url("../image/icn_list_b.svg") no-repeat center/100%;
    transform: rotate(90deg);
  }
}


.search-detail-page .message-box {
  margin-bottom: 64px;
  padding: 34px 26px;
  border-radius: 8px;
  background-color: #F5F4F2;
}

@media screen and (max-width: 768px) {
  .search-detail-page .message-box {
    margin-bottom: 12vw;
    padding: 6%;
  }
}

.search-detail-page .search-box p {
  margin-bottom: 2rem;
  line-height: calc(31 / 18);
  word-break: break-word;
}

@media screen and (max-width: 768px) {
  .search-detail-page .search-box p {
    margin-bottom: 1rem;
  }
}

.search-detail-page .info-box {
  margin-bottom: 40px;
  padding: 34px 26px 0;
  border-radius: 8px;
  background-color: #F5F4F2;
}

@media screen and (max-width: 768px) {
  .search-detail-page .info-box {
    margin-bottom: 6vw;
    padding: 6% 6% 3%;
  }
}

.search-detail-page .info-list dt {
  position: relative;
  padding-bottom: 10px;
  padding-left: 18px;
  font-size: 20px;
  font-weight: 500;
  line-height: calc(27 / 20);
}

@media screen and (max-width: 768px) {
  .search-detail-page .info-list dt {
    font-size: 18px;
  }
}

.search-detail-page .info-list dt::before {
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #B50025;
  border-radius: 50%;
}

.search-detail-page .info-list .info-list-sub th,
.search-detail-page .info-list .info-list-sub td {
  padding: 2px 2px 0 0;
  font-weight: 400;
}

.search-detail-page .info-list dd {
  padding-bottom: 36px;
  padding-left: 18px;
  line-height: calc(31 / 18);
  overflow-wrap: anywhere;
}

.search-detail-page .info-list dd .info-list-ttl {
  margin-bottom: 10px;
  padding: 9px 30px;
  color: #fff;
  background-color: #333;
}

.search-detail-page .info-list dd .info-list-ttl + .info-list-sub {
  margin: 0 30px;
}

@media screen and (max-width: 768px) {
  .search-detail-page .info-list dt {
    font-size: 16px;
  }
  .search-detail-page .info-list dt::before {
    top: 7px;
    width: 8px;
    height: 8px;
  }
  .search-detail-page .info-list dd {
    padding-bottom: 18px;
  }
  .search-detail-page .info-list dd .info-list-ttl {
    padding: 5px 15px;
  }
  .search-detail-page .info-list dd .info-list-ttl + .info-list-sub {
    margin: 0;
  }
}

.search-detail-page .splide {
  width: 649px;
}

.search-detail-page #thumbnail-carousel .splide__slide {
  width: 209px !important;
  margin-right: 11px !important;
  opacity: 1;
}

@media screen and (max-width: 1215px) {
  .search-detail-page .splide {
    width: 100%;
  }
  .search-detail-page #thumbnail-carousel .splide__slide {
    width: 32.266% !important;
    margin-right: 1.6% !important;
  }
}


.search-detail-page #thumbnail-carousel .splide__slide.is-active {
  opacity: 0.6;
}

.search-detail-page .splide__slide img {
  width: 100%;
  height: auto;
}

.search-detail-page #main-carousel .splide__slide {
  display: flex;
  align-items: flex-end;
}

.search-detail-page #thumbnail-carousel .splide__slide img {
  height: 100%;
  object-fit: cover;
}

.search-detail-page .splide__arrow {
  position: relative;
}

.search-detail-page .splide__arrow svg path {
  display: none;
}

.search-detail-page .splide__arrow::before {
  position: absolute;
  top: 0;
  left: -20px;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #B50025;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .16);
}

.search-detail-page .splide__arrow::after {
  position: absolute;
  top: 13px;
  left: -6px;
  content: "";
  width: 11px;
  height: 14px;
  background: url("../image/icn_arrow_w.svg") no-repeat center/100%;
  transform: rotate(180deg);
}

.search-detail-page .splide__arrow.splide__arrow--next::after {
  transform: none;
}

.search-detail-page .splide__arrow:hover::before,
.search-detail-page .splide__arrow:focus::before {
  background-color: #333333;
}

.search-detail-page #thumbnail-carousel {
  position: relative;
  margin-top: 11px;
}

.search-detail-page .splide__arrows {
  position: relative;
  z-index: 2;
}

.search-detail-page .splide__arrows svg {
  display: none;
}

.search-detail-page .splide__arrow--prev {
  position: absolute;
  top: 44px;
  left: 0;
}

.search-detail-page .splide__arrow--next {
  position: absolute;
  top: 44px;
  right: 0;
}

@media screen and (max-width:1215px) {
  .search-detail-page .splide__arrow--prev,
  .search-detail-page .splide__arrow--next {
    top: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .search-detail-page .splide__arrow--prev,
  .search-detail-page .splide__arrow--next {
    top: 6vw;
  }
}

.list-type01 {
  margin: 37px 0 30px;
}

.list-type01.ind {
  margin-left: 40px;
}

.list-type01-item {
  position: relative;
  margin-bottom: 16px;
  padding-left: 21px;
  line-height: calc(30 / 18);
}

.list-type01-item::before {
  position: absolute;
  top: 8px;
  left: -2px;
  content: "";
  width: 11px;
  height: 14px;
  background: url("../image/icn_arrow.svg") no-repeat center/100%;
  transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .list-type01 {
    margin: 18px 0 15px;
  }
  .list-type01.ind {
    margin-left: 22px;
  }
  .list-type01-item::before {
    top: 5px;
  }
}

.list-type01-item a:hover,
.list-type01-item a:focus {
  color: #694A26;
  text-decoration: underline;
}

.search-detail-page .search-box .note {
  line-height: 2;
}

.search-detail-page .search-contact {
  padding: 42px calc((100% - (832 / 1200)*100%) / 2);
}

@media screen and (max-width: 768px) {
  .search-detail-page .search-contact {
    padding: 13.6% 6.4%;
  }
}

.search-detail-page .search-links {
  padding: 90px 40px;
}

.search-detail-page .search-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.search-detail-page .search-links-item a {
  position: relative;
  display: block;
  width: 480px;
  padding: 18px 60px 20px;
  background-color: #B50025;
  border-radius: 32px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.search-detail-page .search-links-item a::after {
  position: absolute;
  top: 22px;
  left: 15px;
  display: block;
  content: "";
  width: 11px;
  height: 14px;
  background: url("../image/icn_arrow_w.svg") no-repeat center center;
  background-size: 100% auto;
  transform: scale(-1, 1);
}

.search-detail-page .search-links-item a:hover,
.search-detail-page .search-links-item a:focus {
  background-color: #333333;
  text-decoration: none;
}

.search-detail-page .search-links-item.blank::after {
  background-image: none;
}

.search-detail-page .search-links-item.blank a span {
  position: relative;
  padding-right: 24px;
}

.search-detail-page .search-links-item.blank a span::after {
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../image/icn_blank.svg") no-repeat center center;
  background-size: 100% auto;
}

@media screen and (min-width:744px) and (max-width:1023px) {
  .search-detail-page .search-links {
    padding: 60px 20px;
  }
  .search-detail-page .search-links-list {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  .search-detail-page .search-links-list .search-links-item {
    margin-bottom: 20px;
  }
  .search-detail-page .search-links-list .search-links-item:last-of-type {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 743px) {
  .search-detail-page .search-links {
    padding: 10% 6%;
  }
  .search-detail-page .search-links-list {
    gap: 20px;
  }
  .search-detail-page .search-links-item {
    width: 100%;
    font-size: 14px;
  }
  .search-detail-page .search-links-item a {
    padding: 4vw 10vw 4.5vw;
    width: auto;
  }
  .search-detail-page .search-links-item::after {
    top: 36%;
  }
}

/* course */

.exam-box {
  display: flex;
}

.exam-box .exam-item {
  width: 50%;
  line-height: calc(31 / 18);
}

.exam-box .exam-item:first-child{
  padding-right: 29px;
}

.exam-box .exam-item:last-child {
  padding-left: 29px;
  border-left: 1px solid #707070;
}

.exam-box .exam-item dd {
  margin-bottom: 31px;
}

.exam-box .exam-item dd:last-of-type {
  margin-bottom: 0;
}

.exam-item-tbl {
  width: 100%;
}

.exam-item-tbl th {
  font-weight: normal;
}

.school-location span:after{
  content: ", ";
}
.school-location span:last-child:after{
  content: "";
}

.school-program span:after{
  content: ", ";
}
.school-program span:last-child:after{
  content: "";
}
.program-type span:after{
  content: ", ";
}
.program-type span:last-child:after{
  content: "";
}
.scholarship-target-course span:after{
  content: ", ";
}
.scholarship-target-course span:last-child:after{
  content: "";
}


/* login */

.login-page {
  background-color: #F5F4F2;
}

.login-box {
  display: flex;
  gap: 89px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 187px;
}

.login-lead {
  flex: 1;
}

.login-ttl {
  margin-bottom: 37px;
  font-size: 24px;
  font-weight: 500;
  line-height: calc(40 / 24);
}

.login-txt,
.login-list {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: calc(31 / 18);
}

@media screen and (max-width: 768px) {
  .login-ttl {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.5;
  }
  .login-txt,
  .login-list {
    margin-bottom: 14px;
  }
}



.login-item {
  position: relative;
  padding-left: 25px;
}

.login-item::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  content: "";
  width: 14px;
  height: 11px;
  background: url("../image/icn_arrow.svg") no-repeat center center;
  background-size: 100% auto;
  transform: rotate(-90deg);
}

.login-item a {
  color: #694A26;
  text-decoration: underline;
}

.login-item a:hover,
.login-item a:focus {
  opacity: .7;
}

.login-input {
  width: 480px;
  padding: 80px 92px;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 1100px) {
  .login-box {
    display: block;
    max-width: 85%;
    padding: 90px 0;
  }
  .login-lead {
    margin-bottom: 25px;
  }
  .login-input {
    width: 100%;
    padding: 5%;
  }
}

@media screen and (max-width: 768px) {
  .login-box {
    max-width: 88%;
    padding: 35px 0;
  }
  .login-input {
    padding: 8%;
  }
}

.login-input-box input {
  display: block;
}

.login-input-box label {
  cursor: default;
  display: block;
  margin-bottom: 10px;
}

.login-input-box label span {
  font-size: 18px;
  font-weight: 500;
}

.login-input-box input[type="text"],
.login-input-box input[type="password"] {
  width: 296px;
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1px solid #969696;
  border-radius: 27px;
  font-size: 16px;
}

.login-input-box .login-submit {
  position: relative;
  width: 296px;
  margin-top: 50px;
  background-color: #B50025;
  border-radius: 27px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.login-input-box .login-submit::after {
  position: absolute;
  top: 19px;
  right: 15px;
  display: block;
  content: "";
  width: 11px;
  height: 14px;
  background: url("../image/icn_arrow_w.svg") no-repeat center center;
  background-size: 100% auto;
}

.login-input-box .login-submit:hover,
.login-input-box .login-submit:focus {
  background-color: #333333;
}

.login-input-box .login-submit input[type="submit"] {
  width: 100%;
  padding: 17px;
}

@media screen and (max-width:1023px) {
  .login-input-box .login-submit {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .login-txt,
  .login-list{
    font-size: 16px;
  }
  .login-input-box input[type="text"],
  .login-input-box input[type="password"] {
    width: 100%;
  }
  .login-input-box .login-submit {
    margin-top: 25px;
  }
}