* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: bold; */
  /* font-style: ; */
}

li {
  list-style: none;
}

ul {
  padding-left: 0;
}

:root {
  --black: #222;
  --fz10: calc(10 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz13: calc(13 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: calc(16 / 16 * 1rem);
  --fz18: calc(18 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz22: calc(22 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz26: calc(26 / 16 * 1rem);
  --fz27: calc(27 / 16 * 1rem);
  --fz28: calc(28 / 16 * 1rem);
  --fz30: calc(30 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz34: calc(34 / 16 * 1rem);
  --fz36: calc(36 / 16 * 1rem);
  --fz38: calc(38 / 16 * 1rem);
  --fz40: calc(40 / 16 * 1rem);
  --fz48: calc(48 / 16 * 1rem);
  --fz50: calc(50 / 16 * 1rem);
  --fz60: calc(60 / 16 * 1rem);
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

/* ーーーーーーーーーーーー以下ヘッダーフッターの「削除」は消して良いーーーーーーーーーーーーーーー */
header {
  height: 90px;
}

/* #hamburger 関連 ここから */
header #hamburger {
  position: fixed;
  top: 15px;
  right: 10px;
  padding: 0;
  background: none;
  border: none;
  z-index: 100;
  cursor: pointer;
}
header #hamburger img {
}
header #hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 520px;
  width: 100%;
  background-image: url("../images/common/menu-bg.png");
  background-size: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
header #hamburger-menu a,
header #hamburger-menu button {
  cursor: pointer;
}
header #hamburger-menu button {
}
header #hamburger-menu .nav-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  z-index: 100;
}
header #hamburger-menu .nav-header .logo-wrap {
}
header #hamburger-menu .nav-header .logo-wrap a {
}
header #hamburger-menu .nav-header .logo-wrap a img {
}
header #hamburger-menu .nav-header .hamburger-close {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
}
header #hamburger-menu .nav-header .hamburger-close::before,
header #hamburger-menu .nav-header .hamburger-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 33px;
  height: 3px;
  background-color: #000000;
  display: block;
}
header #hamburger-menu .nav-header .hamburger-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
header #hamburger-menu .nav-header .hamburger-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header #hamburger-menu .menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 50px 100px;
  overflow: auto;
}
header #hamburger-menu .nav-wrap {
  position: relative;
  padding: 12px 12px 20px;
  margin-top: 45px;
  background-color: #ffffff;
}
header #hamburger-menu .nav-wrap::before,
header #hamburger-menu .nav-wrap::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 65px;
  border-style: solid;
  border-width: 22px 22px 0 0;
  border-color: #000000;
}
header #hamburger-menu .nav-wrap::before {
  top: -11px;
  right: -11px;
}
header #hamburger-menu .nav-wrap::after {
  bottom: -11px;
  left: -11px;
  transform: rotate(180deg);
}
header #hamburger-menu .nav-wrap .main-nav {
  font-size: 21px;
  padding: 60px 30px 35px;
  border-bottom: solid 1px #000000;
}
header #hamburger-menu .nav-wrap .main-nav > ul {
  width: fit-content;
  padding: 0;
  margin: 0 auto;
}
header #hamburger-menu .nav-wrap .main-nav > ul > li {
  margin-bottom: 24px;
}
header #hamburger-menu .nav-wrap .main-nav > ul > li:last-child {
  margin-bottom: 0;
}
header #hamburger-menu .nav-wrap .main-nav > ul > li > a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.075em;
}
header #hamburger-menu .nav-wrap .main-nav > ul > li > a .special {
  position: absolute;
  font-size: 17px;
  top: -5px;
  left: -20px;
  transform: translateY(-100%) rotate(-10deg);
  background: linear-gradient(0deg, #ffee00 40%, transparent 40%);
}
header #hamburger-menu .nav-wrap .btn-nav {
  padding: 35px 10px;
  border-bottom: solid 1px #000000;
}
header #hamburger-menu .nav-wrap .btn-nav > ul {
  margin: 0;
}
header #hamburger-menu .nav-wrap .btn-nav > ul > li {
}
header #hamburger-menu .nav-wrap .btn-nav > ul > li > a {
  position: relative;
  display: block;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.67;
  letter-spacing: 0.075em;
  width: 238px;
  margin: 0 auto;
  padding: 10px 10px 10px 35px;
  border: solid 1px #000000;
}
header #hamburger-menu .nav-wrap .btn-nav > ul > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 11px;
  height: 12px;
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #000000;
}
header #hamburger-menu .nav-wrap .sns-nav {
  padding: 35px 25px;
}
header #hamburger-menu .nav-wrap .sns-nav > ul {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 252px;
}
header #hamburger-menu .nav-wrap .sns-nav > ul > li {
}
header #hamburger-menu .nav-wrap .sns-nav > ul > li > a {
}
header #hamburger-menu .nav-wrap .sns-nav > ul > li > a > img {
}

.header-logo {
  width: 150px;
  margin-top: 18px;
  margin-left: 18px;
}

#hamburger img {
  width: 50px;
}
/* ------------------footer ----------------------------*/
.footer-line-container {
  position: relative;
  width: 100%;
  margin: 56px 0 20px 0;
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-line-container a {
  width: 160px;
}

.footer-line-container img {
  width: 100%;
}

.footer-line-container::before,
.footer-line-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ */
  background-color: black; /* 線の色 */
}

.footer-line-container::before {
  top: 0; /* 上の線の位置 */
}

.footer-line-container::after {
  bottom: 0; /* 下の線の位置 */
}

.footer-line-container2 {
  width: 85%;
  margin-inline: auto;
}

.footer-line-container2 a {
  width: 160px;
  display: inline-block;
}

.footer-line-container2 img {
  width: 160px;
}

.footer-line-container2 p {
  margin-top: 20px;
  line-height: 2;
}

.footer-detail {
  background-color: #000;
  padding: 40px;
  color: #fff;
  margin-top: 40px;
}

.footer-detail-test {
  background-color: #000;
  padding: 40px;
  color: #fff;
  margin-top: 40px;
}

.footer-detail img {
  /* max-width: 320px; */
  width: 90%;
  max-width: 670px;
}

.footer-detail-test img {
  /* max-width: 320px; */
  width: 90%;
  max-width: 670px;
}

.footer-detail p {
  line-height: 2;
  margin-top: 40px;
  font-size: var(--fz14);
}

.footer-detail-test p {
  line-height: 2;
  margin-top: 40px;
  font-size: var(--fz14);
}

.copylight {
  text-align: center;
  font-size: var(--fz12);
  padding: 3px 0;
}

.footer-sitemap-ul-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}

.footer-sitemap-left-wrap {
  display: flex;
  flex-direction: column;
}

.footer-sitemap-left {
  width: 45%;
}

.footer-sitemap-left ul {
  margin-top: 0;
}

.footer-sitemap-right {
  width: 45%;
}

.footer-sitemap-right ul {
  margin-top: 0;
}

.footer-sitemap-ul-wrap ul li {
  margin-bottom: 20px;
}

.footer-sitemap-ul-wrap ul li a {
  text-decoration: none;
  color: #fff;
  font-size: var(--fz14);
}

.sitemap-title {
  font-size: var(--fz24);
  line-height: 1;
  margin-bottom: 48px;
  letter-spacing: 3px;
}

.footer-sns-wrap {
  display: flex;
  margin-top: 40px;
  gap: 20px;
}

.footer-sns-wrap img {
  width: 40px;
}

@media (min-width: 768px) {
  .footer-sitemap-ul-wrap ul li a {
    font-size: var(--fz16);
  }

  .sitemap-title {
    font-size: var(--fz32);
  }

  .footer-detail-test p {
    font-size: var(--fz18);
  }

  .footer-sitemap-ul-wrap {
    max-width: 600px;
  }

  .footer-detail-test {
    padding: 60px;
  }
}

@media (min-width: 1024px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  header #hamburger-menu a {
    transition: opacity 0.3s;
  }
  header #hamburger-menu a:hover {
    opacity: 0.6;
  }

  #hamburger img {
    width: 60px;
  }

  .footer-sitemap-ul-wrap {
    margin-bottom: 0px;
    gap: 96px;
  }

  .footer-sitemap-left {
    white-space: nowrap;
  }

  .footer-sitemap-right {
    white-space: nowrap;
  }

  .footer-sitemap-ul-wrap ul li a {
    font-size: var(--fz16);
  }

  .footer-detail-test p {
    font-size: var(--fz16);
  }

  .copylight {
    font-size: var(--fz16);
  }

  .footer-sitemap-ul-wrap ul li {
    margin-bottom: 18px;
  }

  .sitemap-title {
    font-size: var(--fz20);
    line-height: 1;
    margin-bottom: 40px;
    position: relative;
  }

  .sitemap-title::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 34%;
    width: 287px;
    height: 2px;
    background-color: #fff;
  }

  .footer-detail-test p {
    margin-top: 56px;
  }
}

/* .nav-open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  max-width: 100%;
}
body.nav-open header #hamburger-menu {
  opacity: 1;
  visibility: visible;
}
/* #hamburger 関連 ここまで */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーー */

h1 {
}

h2 {
  font-size: var(--fz22);
}

h3 {
  font-size: var(--fz20);
}

h4 {
  line-height: 2;
}

p {
  font-size: var(--fz16);
  line-height: 2;
  font-feature-settings: "palt";
}

td {
  line-height: 2;
}
.pc-br {
  display: none !important;
}
.sp-br {
  display: block;
}

.section-title {
  font-size: var(--fz30);
  text-align: center;
}

.section-title-white {
  font-size: var(--fz30);
  text-align: center;
  color: #fff;
}

.section-title-wrap {
  width: 100%;
  margin-inline: auto;
  position: relative;
}

/* .section-title-wrap-shool {
  width: 100%;
  margin-inline: auto;
  position: relative;
} */

.header-logo-wrap {
  display: block;
  width: fit-content;
}

.bracket {
  width: 73%;
  height: auto;
  margin-inline: auto;
}

.bracket-what {
  width: 300px;
  max-width: 85%;
  height: auto;
  margin-inline: auto;
}

.bracket-event {
  width: 460px;
  max-width: 90%;
  height: auto;
  margin-inline: auto;
}

.section-title-wrap .section-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 2.188rem);
  letter-spacing: 2px;
}

.section-title-wrap .section-title-what {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 2.188rem);
  letter-spacing: 2px;
}

.section-title-wrap .section-title-white {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 2.188rem);
  letter-spacing: 2px;
}

.top-school-title .section-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: clamp(1.563rem, 1.116rem + 2.23vw, 2.188rem);
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  header {
    height: 110px;
  }
}

@media (min-width: 1024px) {
  .section-title-wrap .section-title {
    font-size: var(--fz32);
  }

  .bracket {
    width: 26%;
    max-width: 340px;
  }

  .bracket-what-wrap {
    width: 71%;
    position: relative;
    max-width: 340px;
  }

  .bracket-what {
    width: 100%;
    max-width: 100%;
    height: 52px;
    margin-inline: unset;
  }

  .bracket-why {
    width: 100%;
    height: auto;
    margin-inline: unset;
    max-width: 340px;
  }

  .bracket-event {
    width: 430px;
    height: auto;
    margin-inline: auto;
  }

  .section-title-wrap .section-title-what {
    position: absolute;
    left: 50%;
    top: 50%;
    /* transform: none; */
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: 2px;
  }

  .section-title-wrap .section-title-why {
    position: absolute;
    left: 50%;
    top: 50%;
    /* transform: none; */
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: 2px;
  }

  .footer-line-container {
    justify-content: center;
    gap: 180px;
  }

  .footer-line-container2 {
    text-align: center;
  }

  .footer-line-container2 p {
    max-inline-size: max-content;
    margin-inline: auto;
  }

  .footer-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 140px;
    /* flex-direction: row-reverse; */
  }

  .footer-detail-test {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 70px 140px;
    flex-direction: row-reverse;
  }

  .recruit-img-wrap {
    width: 40%;
  }

  .recruit-img-wrap-test {
    width: 70%;
  }

  .recruit-img-wrap img {
    width: 100%;
    margin-top: 24px;
  }

  .recruit-img-wrap-test img {
    width: 100%;
    margin-top: 56px;
  }

  .pc-max-980 {
    max-width: 980px;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .footer-detail-test {
    padding: 50px 72px;
    gap: 96px;
  }
}

.top-pick-slider-wrap {
  margin: 87px 0 50px;
}
.top-pick-slider-wrap .container {
  max-width: 1054px;
  margin: 0 auto;
  padding: 0 37px;
}
.top-pick-slider-wrap ul.pick-slider {
  position: relative;
  margin: 0;
  padding: 0;
}
.top-pick-slider-wrap ul.pick-slider .slick-list {
  margin: 0 -20px;
}
.top-pick-slider-wrap ul.pick-slider li {
  margin: 0;
  padding: 0 20px;
}
.top-pick-slider-wrap ul.pick-slider .img-wrap {
  display: block;
}
.top-pick-slider-wrap ul.pick-slider a.img-wrap {
  transition: opacity 0.3s;
}
.top-pick-slider-wrap ul.pick-slider a.img-wrap:hover {
  opacity: 0.6;
}
.top-pick-slider-wrap ul.pick-slider .img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.top-pick-slider-wrap ul.pick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.top-pick-slider-wrap ul.pick-slider .slick-arrow::before {
  display: none;
}
.top-pick-slider-wrap ul.pick-slider .slick-prev {
  left: 0;
  transform: translate(-50%, -50%);
  background-image: url("../images/arrow-prev.png");
}
.top-pick-slider-wrap ul.pick-slider .slick-next {
  right: 0;
  transform: translate(50%, -50%);
  background-image: url("../images/arrow-next.png");
}

.sp-recruit {
  width: 100%;
}

@media (max-width: 767px) {
  .top-pick-slider-wrap ul.pick-slider .slick-arrow {
    width: 43px;
    height: 43px;
  }
}

/* pcヘッダーナビゲーション */
@media (min-width: 1024px) {
  header {
    background-color: #fff;
    z-index: 9999;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
  }

  .header-box {
    display: flex;
    padding-top: 32px;
    padding-bottom: 32px;
    justify-content: space-between;
  }
  .header-wrap {
    background-color: #fff;
  }
  .header-pc-logo {
    width: 240px;
    margin-left: 40px;
  }

  .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 10%;
    white-space: nowrap;
    gap: 30px;
  }

  .nav-item {
    position: relative;
  }

  .nav-item button a {
    text-decoration: none;
  }

  .nav-link {
    color: #333;
    text-decoration: none;
    padding: 10px 5px;
    display: inline-block;
    font-weight: bold;
  }
  /* .nav-link:hover {
    color: #007bff;
  } */
  .dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 188px;
    z-index: 1;
    padding: 10px;
    border-radius: 4px;
    border: 2px solid #000;
    margin: 0;
  }
  .nav-item:hover .dropdown {
    display: block;
  }
  .dropdown-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
  }
  .dropdown-item:hover {
    color: #fff;
    background-color: #000;
  }
  .contact-btn {
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
  }

  .contact-btn:hover {
    color: #007bff;
  }

  .material-btn {
    border: 2px solid #000;
    padding: 5px 24px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.5s 0s ease;
  }

  .material-btn:hover {
    color: #fff;
    background-color: #000;
  }

  /* スクロール時、ヘッダーの高さを変更 */

  header {
    transition: all 0.3s ease-in-out;
  }

  .header-box {
    transition: all 0.3s ease-in-out;
  }

  .header-pc-logo {
    transition: all 0.3s ease-in-out;
  }

  /* スクロール時のスタイル */
  header.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  header.scrolled .header-box {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  header.scrolled .header-pc-logo {
    width: 150px; /* ロゴサイズを小さく */
  }

  header.scrolled {
    height: 85px;
  }
  /* スクロール時、ヘッダーの高さを変更 END */
}
/* pcヘッダーナビゲーション END */