@charset "UTF-8";
/**
 * 指定したブレークポイント以下（モバイル・タブレット向け）
 * @param $bp - ブレークポイント名 (xs, tb,tbmin, lg, lgmax)
 */
/**
 * 指定したブレークポイントより大きい（PC向け）
 * ブラウザ間の隙間を防ぐため 0.02px を加算
 * @param $bp - ブレークポイント名 (xs, tb, tbl, lg)
 */
/**
 * 2つのブレークポイントの間（特定の範囲向け）
 * @param $min - 最小幅のブレークポイント名
 * @param $max - 最大幅のブレークポイント名
 */
:root {
  /* color */
  --color-dark-ocean: #0097cf;
  --color-light-ocean: #bfe5f3;
  --color-lighter-ocecan: #ddf0f8;
  --color-lighter-ocecan01: #b9e6ff;
  --color-dark-pink: #e5006e;
  --color-dark-pink01: #e4006e;
  --color-light-pink: #facce2;
  --color-dark-orange: #cd684d;
  --color-darker-orange: #ed6f1f;
  --color-dark-red: #e4006e;
  --color-light-red: #e46fbb;
  --color-lighter-red: #f6e5ea;
  --color-dark-orange: #b28300;
  --color-lighter-orange: #fadac7;
  --color-dark-purple: #ab71d8;
  --color-lighter-purple: #cbd2ff;
  --color-dark-green: #00b500;
  --color-dark-green01: #00d30a;
  --color-dark-green02: #9bffa3;
  --color-light-green: #c1ffbf;
  --color-light-green01: #c1ffbf;
  --color-darker-green: #005351;
  --color-dark-yellow: #ed6d1f;
  --color-light-yellow: #f7e9dc;
  --color-yellow: #f5f515;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #4d4d4d;
  --color-light-gray: #f5f2f2;
  --color-gradient01: linear-gradient(-70deg, #f97c00 0%, #fbb03b 100%);
  --color-gradient03: linear-gradient(-70deg, #fbb03b 0%, #f97c00 100%);
  --color-gradient02: linear-gradient(-70deg, #002d62 0%, #4e6d92 100%);
  /* font size */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875;
  --fs-20: 1.25rem;
  --fs-21: 1.3125rem;
  --fs-24: 1.5rem;
  --fs-25: 1.5625rem;
  --fs-26: 1.625rem;
  --fs-28: 2.3333rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-36: 2.25rem;
  --fs-37: 2.3125rem;
  --fs-38: 2.375rem;
  --fs-40: 2.5rem;
  /* font family */
  --ff-noto-san-jp: "Noto Sans JP", serif;
  --ff-noto-serif-jp: "Noto Serif", serif;
  --ff-zenkaku-gothic-antique: "Zen Kaku Gothic Antique", serif;
  /* font weight */
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 700;
  --fw-900: 700;
  /* transition */
  --transition: 0.25s ease-in-out;
  /* box-shadow */
  --box-shadow: 0px 4px 10px hsla(0, 0%, 0%, 0.05);
  /* animation */
  --animation: slide-in 1.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================================

                       common.css

======================================================*/
/* * {
    outline: 1px solid red;
} */
* {
  box-sizing: border-box;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-variant-east-asian: proportional-width;
  line-height: 1.733333;
  word-break: normal;
  line-break: strict;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-track {
  background: var(--color-white);
}

body::-webkit-scrollbar-thumb {
  background: #cccccc;
  border: 3px solid var(--color-white);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}

/* 共通のcss */
.inner900 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.inner954 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.inner1080 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .inner1080 {
    width: 90%;
    margin: 0 auto;
  }
}

.inner1920 {
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .inner1920 {
    width: 90%;
    margin: 0 auto;
  }
}

.overflow {
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.orange {
  color: var(--color-dark-yellow);
}

.centertxt {
  text-align: center;
}

.lefttxt {
  text-align: left;
}

.righttxt {
  text-align: right;
}

.dislay {
  display: flex;
}

.nb-fadeup {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.nb-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.nb-fadeup + .nb-fadeup {
  transition-delay: 0.15s;
}
.nb-fadeup + .nb-fadeup + .nb-fadeup {
  transition-delay: 0.3s;
}

.nb-fadein {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  will-change: opacity;
}
.nb-fadein.is-inview {
  opacity: 1;
}

/* Display for PC and SP */
.forPC {
  display: block !important;
}

.forSP {
  display: none !important;
}

@media (max-width: 750px) {
  .forSP {
    display: block !important;
  }
  .forPC {
    display: none !important;
  }
}
.main-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: #000;
}
@media (max-width: 750px) {
  .main-title {
    font-size: min(5.25vw, 38px);
    margin-bottom: min(30px, 2.08vw);
  }
}
.main-title span {
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: underline;
  text-decoration-color: var(--color-yellow);
  text-decoration-thickness: 0.3em;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
}

.main-sub {
  font-size: clamp(16px, 1.35vw, 20px);
  color: #000;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-bottom: min(60px, 7vw);
}
@media (max-width: 750px) {
  .main-sub {
    padding-bottom: min(80px, 9vw);
    font-size: clamp(13px, 1.5vw, 24px);
    font-size: min(3.66vw, 24px);
  }
}

/* Main Setting */
/* -----------------------------------
                  header 
-------------------------------------*/
.header {
  display: flex;
  padding: 14px 0;
  width: 100%;
  position: fixed;
  align-items: center;
  z-index: 1000;
  background: var(--color-dark-red);
}
.header .header-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.header .logo img {
  height: 50px;
  padding-left: 10px;
  width: fit-content;
}
.header .header-txt {
  color: #fff;
  padding-left: 10px;
}
@media (max-width: 750px) {
  .header .logo img {
    height: min(50px, 10vw);
  }
}

.kv {
  background: var(--color-white);
  position: relative;
  padding-top: 78px;
}
.kv .kv-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 818px;
  background: url(../images/top/img-header_pc.png) center 80%/cover no-repeat;
}
@media screen and (min-width: 1201px) {
  .kv .kv-inner {
    background: url(../images/top/img-header@2x.png) center 100%/cover no-repeat;
  }
}
@media (max-width: 750px) {
  .kv .kv-inner {
    background: url(../images/top/img-header_sp.png) center 80%/cover no-repeat;
    min-height: 100vw;
  }
}
.kv .kv-inner img {
  width: 100%;
  height: auto;
}
.kv .kv-text {
  position: absolute;
  opacity: 0;
  z-index: 6;
  right: 5%;
  top: 20%;
  animation: fadeInText 0.8s ease-out 1s forwards;
}
@media (max-width: 750px) {
  .kv .kv-text {
    right: 5%;
    top: 12%;
    width: 45%;
  }
}
.kv-scroll {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: scrollDown 2s infinite ease-in-out;
  pointer-events: none;
}
@media (max-width: 750px) {
  .kv-scroll {
    width: 10px;
  }
}
.kv-scroll img {
  width: min(13px, 2vw);
  height: auto;
  display: block;
}

@media (max-width: 750px) {
  .kv {
    padding-top: min(78px, 15.4vw);
  }
}
@keyframes revealImage {
  0% {
    opacity: 0;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    filter: brightness(1.2) blur(5px);
  }
  20% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
    filter: brightness(1) blur(0);
  }
}
@keyframes revealBlur {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.05);
  }
  50% {
    opacity: 0.6;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes revealImageFromRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) translateY(15px);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.7;
  }
}
/* -----------------------------------
                 faculty 
-------------------------------------*/
.faculty {
  position: relative;
  margin: 0 auto;
  padding: min(81px, 5vw) 0 min(81px, 9vw);
}
@media (max-width: 750px) {
  .faculty {
    padding: min(81px, 12vw) 0 min(81px, 12vw);
  }
}
.faculty .main-sub {
  line-height: 2.6;
}
@media (max-width: 750px) {
  .faculty .main-sub {
    line-height: 2;
  }
}
.faculty::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 2400px;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: #f5f2f2 url(../images/top/img-faculty_bg@2x.png) center top/cover no-repeat;
}
@media (max-width: 750px) {
  .faculty::before {
    background: #f5f2f2 url(../images/top/img-faculty_bg_sp.png) center/contain repeat;
  }
}
.faculty-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.faculty__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(45px, 2.25vw);
  margin: 0 auto;
}
.faculty__col {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.faculty .faculty-card {
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
}
.faculty .faculty-card:hover {
  opacity: 0.8;
}
@media (max-width: 750px) {
  .faculty .faculty-inner {
    width: 90%;
  }
  .faculty .faculty__flex {
    flex-direction: column;
    gap: min(100px, 12vw);
  }
  .faculty .faculty__col {
    display: flex;
    flex: auto;
    flex-direction: column;
    gap: min(50px, 5vw);
  }
}

/* -----------------------------------
                 education 
-------------------------------------*/
.education {
  max-width: 1080px;
  margin: 0 auto;
  padding: min(100px, 16vw) 0;
}
.education-grid {
  display: flex;
  gap: 30px;
  align-items: end;
  flex-wrap: nowrap;
}
@media (max-width: 750px) {
  .education-grid {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}
.education-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: normal;
}
@media (max-width: 750px) {
  .education-item {
    width: 90%;
    min-height: 180px;
  }
  .education-item .education-item__top {
    padding-top: 15px;
  }
}
.education-item__desc {
  font-size: clamp(14px, 1.67vw, 20px);
  line-height: 1.6;
  margin: 1rem 0;
  font-weight: 600;
  min-height: 60px;
}
@media (max-width: 750px) {
  .education-item__desc {
    margin: min(30px, 2vw) 0;
    font-size: min(3.66vw, 24px);
  }
}
.education-item__bottom {
  padding-top: 28px;
}
.education-card {
  position: relative;
  width: 100%;
  background-color: var(--color-gray);
  border-radius: 100px;
  padding: 1.05vw 1.39vw;
  text-decoration: none;
  display: flex;
  height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
}
@media (max-width: 750px) {
  .education-card {
    height: min(30vw, 160px);
  }
}
.education-card:hover {
  background-color: rgb(89.75, 89.75, 89.75);
}
.education-card:hover .education-card__icon {
  right: min(30px, 4vw);
}
.education-card__label {
  position: relative;
  background: #fff;
  color: #000;
  padding: 4px 15px;
  border-radius: 100px;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(12px, 1.5vw, 16px);
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 750px) {
  .education-card__label {
    font-size: min(3.15vw, 24px);
  }
}
.education-card__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #fff;
}
.education-card__title {
  color: var(--color-yellow);
  font-size: clamp(20px, 1.8vw, 26px);
  text-align: center;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 750px) {
  .education-card__title {
    font-size: min(5vw, 32px);
  }
}
.education-card__icon {
  position: absolute;
  right: min(35px, 4vw);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  transition: right 0.3s ease;
}
.education-card__icon img {
  display: block;
  width: min(24px, 3vw);
  height: auto;
}

/* -----------------------------------
                 stage
-------------------------------------*/
.stage {
  position: relative;
  padding: 0 0 min(81px, 6vw);
  margin: 0 auto;
  background: #e9e9e9;
}
@media (max-width: 750px) {
  .stage {
    padding: 0 0 min(255px, 36vw);
  }
}
.stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background-color: transparent;
  background-image: radial-gradient(circle, #fff 0.1rem, transparent 0.1rem), radial-gradient(circle, #fff 0.1rem, transparent 0.1rem);
  background-position: 0 0, 0.6rem 0.6rem;
  background-size: 1.2rem 1.2rem;
  background-repeat: repeat;
}
.stage__top {
  position: absolute;
  padding: 4px;
  z-index: 3;
  top: 7%;
  width: 32%;
  letter-spacing: 0.15em;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 750px) {
  .stage__top {
    font-size: min(5.25vw, 38px);
    top: 1%;
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.stage__image {
  position: relative;
  z-index: 1;
}
.stage-senior__image {
  position: relative;
  z-index: 1;
  max-width: 1083px;
  width: 100%;
  margin: -3vw auto 0;
}
@media (max-width: 750px) {
  .stage-senior__image {
    width: 90%;
  }
}
.stage-senior__image img {
  display: block;
  width: 100%;
  height: auto;
}
.stage-senior__content {
  position: absolute;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.6;
  text-align: center;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .stage-senior__content {
    bottom: -17%;
  }
}
.stage-senior__title {
  font-size: clamp(16px, 1.8vw, 24px);
  padding-bottom: 0.5em;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (max-width: 750px) {
  .stage-senior__title {
    font-size: min(3.66vw, 30px);
  }
}
.stage-senior__sub {
  position: relative;
  font-size: clamp(12px, 1.5vw, 16px);
  background: var(--color-gray);
  color: var(--color-yellow);
  padding: 4px 25px;
  border-radius: 100px;
  font-weight: 500;
  font-size: clamp(12px, 1.5vw, 16px);
  white-space: nowrap;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.stage-senior__sub:hover {
  background-color: rgb(97.4, 97.4, 97.4);
}
@media (max-width: 750px) {
  .stage-senior__sub {
    font-size: min(3.05vw, 20px);
  }
}
.stage-senior__sub::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--color-gray);
}

/* -----------------------------------
                 senior 
-------------------------------------*/
.senior {
  position: relative;
  padding: 0 0 min(100px, 6.94vw);
  background: #e9e9e9;
}
@media (max-width: 750px) {
  .senior {
    padding: 0 0 min(230px, 35vw);
  }
}
.senior::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background-color: transparent;
  background-image: radial-gradient(circle, #fff 0.1rem, transparent 0.1rem), radial-gradient(circle, #fff 0.1rem, transparent 0.1rem);
  background-position: 0 0, 0.6rem 0.6rem;
  background-size: 1.2rem 1.2rem;
  background-repeat: repeat;
}
.senior-inner {
  position: relative;
  z-index: 1;
  max-width: 1083px;
  width: 100%;
  margin: 0 auto 0;
}
@media (max-width: 750px) {
  .senior-inner {
    width: 90%;
  }
}
.senior-inner img {
  display: block;
  width: 100%;
  height: auto;
}
.senior__content {
  position: absolute;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.6;
  text-align: center;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .senior__content {
    bottom: -16%;
  }
}
.senior__title {
  font-size: clamp(16px, 1.8vw, 24px);
  padding-bottom: 0.25em;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 750px) {
  .senior__title {
    font-size: min(3.66vw, 30px);
  }
}
.senior__sub {
  position: relative;
  font-size: clamp(12px, 1.5vw, 16px);
  background: var(--color-gray);
  color: var(--color-yellow);
  padding: 4px 25px;
  border-radius: 100px;
  font-size: clamp(12px, 1.5vw, 16px);
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 750px) {
  .senior__sub {
    font-size: min(3.05vw, 20px);
  }
}
.senior__sub::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--color-gray);
}

/* -----------------------------------
                 career
-------------------------------------*/
.career {
  padding: min(81px, 9vw) 0 min(150px, 22vw);
  max-width: 1080px;
  margin: 0 auto;
  color: var(--color-gray);
}
.career-inner {
  max-width: 1080px;
  margin: 0 auto 0;
}
@media (max-width: 750px) {
  .career-inner {
    width: 90%;
  }
}
.career .career-support {
  display: block;
  display: flex;
  justify-content: center;
  padding-top: min(40px, 6vw);
  margin: 0 auto min(81px, 15vw);
}
.career .btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray);
  color: var(--color-yellow);
  font-weight: 600;
  padding: clamp(8px, 1vw, 12px) clamp(20px, 2.5vw, 40px);
  border-radius: 100px;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw, 18px);
  transition: background-color 0.3s ease;
}
.career .btn-support:hover {
  background-color: rgb(97.4, 97.4, 97.4);
}
.career .btn-support:hover .btn-support__icon {
  transform: translateX(5px);
}
.career .btn-support__icon {
  margin-left: 12px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.career .btn-support__icon img {
  width: 10px;
  height: auto;
  display: block;
}
.career .btn-admission {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  padding: 0.75em 1.05em;
  border-radius: 100px;
  text-decoration: none;
  font-size: clamp(14px, 1.7vw, 20px);
  background-color: var(--color-gray);
  color: var(--color-yellow);
  font-weight: 600;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 750px) {
  .career .btn-admission {
    padding: 1em;
    width: calc(90% - 20px);
    max-width: none;
    font-size: clamp(16px, 2.5vw, 24px);
    font-size: 3.66vw;
  }
}
.career .btn-admission:hover {
  opacity: 0.8;
}
.career .btn-admission:hover .btn-admission__icon {
  transform: translateX(5px);
}
.career .btn-admission__text {
  flex-grow: 1;
  text-align: center;
}
.career .btn-admission__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  margin-left: 10px;
}
.career .btn-admission__icon img {
  width: 12px;
  height: auto;
  display: block;
}
.career .btn-banner {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-darker-green);
  text-decoration: none;
  padding: 20px 50px;
  width: 100%;
  max-width: 1080px;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 750px) {
  .career .btn-banner {
    padding: 20px;
    width: 90%;
  }
}
.career .btn-banner .content {
  text-align: center;
  color: var(--white);
  padding-left: 0px;
  padding-right: 0px;
}
.career .btn-banner .content .sub-text {
  font-size: clamp(14px, 1.67vw, 20px);
  margin-bottom: 12px;
  color: var(--color-white);
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (max-width: 750px) {
  .career .btn-banner .content .sub-text {
    font-size: 2.75vw;
  }
}
.career .btn-banner .content .btn-title {
  font-size: clamp(20px, 3.2vw, 42px);
  display: flex;
  font-weight: 700;
  letter-spacing: 4px;
  justify-content: center;
  gap: clamp(20px, 2vw, 30px);
  color: var(--color-yellow);
}
@media (max-width: 750px) {
  .career .btn-banner .content .btn-title {
    font-size: 4.55vw;
  }
}
.career .btn-banner .circle-arrow {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(40px, 5vw, 58px);
  height: clamp(40px, 5vw, 58px);
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 750px) {
  .career .btn-banner .circle-arrow {
    right: 20px;
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
  }
}
.career .btn-banner:hover {
  opacity: 0.8;
  background-color: rgb(0, 92.3, 80.312987013);
}
.career .btn-banner:hover .circle-arrow {
  transform: translateY(-50%) translateX(4px);
}

@media (max-width: 750px) {
  .career .btn-banner {
    padding: 20px;
    margin: 0 auto;
    width: 90%;
  }
  .career .btn-banner .main-title {
    gap: 5px;
  }
  .career .btn-banner .circle-arrow {
    margin-left: 15px;
  }
}
/* -----------------------------------
                  admission
-------------------------------------*/
.admission {
  padding: min(81px, 6vw) 0;
  text-align: center;
  background: #f5f2f2;
}
.admission-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.admission__btns {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2vw;
  font-weight: 600;
  margin-top: min(30px, 3vw);
  margin-bottom: min(30px, 3vw);
}
@media (max-width: 750px) {
  .admission__btns {
    flex-direction: column;
    gap: min(30px, 4vw);
    width: calc(90% - 60px);
    margin: min(80px, 7vw) auto min(80px, 9vw);
  }
}
.admission__border {
  width: 100%;
  border-bottom: 2px dotted #ccc;
}

.btn-admission {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 33%;
  padding: 1em 1.05em;
  line-height: 1;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(14px, 1.7vw, 22px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 750px) {
  .btn-admission {
    width: 100%;
    font-size: clamp(16px, 2.5vw, 24px);
    font-size: 3.66vw;
  }
}
.btn-admission.is-purple {
  background-color: var(--color-light-purple);
}
.btn-admission.is-blue {
  background-color: var(--color-light-ocean);
}
.btn-admission.is-green {
  background-color: var(--color-light-green);
}
.btn-admission:hover {
  opacity: 0.8;
}
.btn-admission:hover .btn-admission__icon {
  transform: translateX(5px);
}
.btn-admission__text {
  flex-grow: 1;
  text-align: center;
}
.btn-admission__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.btn-admission__icon img {
  width: 12px;
  height: auto;
  display: block;
}

@media (max-width: 750px) {
  .btn-admission {
    width: 100%;
  }
}
.banner-circle {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 9999;
  width: clamp(90px, 10vw, 110px);
  height: auto;
  transition: transform 0.3s ease;
}
.banner-circle img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-circle:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media (max-width: 750px) {
  .banner-circle {
    bottom: 34%;
    bottom: 15px;
    right: 5%;
    width: 18vw;
    width: clamp(80px, 23vw, 120px);
  }
}
/* -----------------------------------
                   footer
-------------------------------------*/
.footer {
  background: #f5f2f2;
  padding: min(50px, 4vw) 0 min(50px, 9vw);
  border-top: 3px dotted var(--color-gray);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-top__logo {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3vw;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-size: var(--fs-12);
}
.footer-top__logo img {
  width: min(25vw, 264px);
  display: block;
}
.footer-top__logo p {
  font-size: 14px;
}
.footer .btn-access {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 2px solid #000;
  border-radius: 100px;
  font-size: clamp(14px, 1.7vw, 22px);
  background-image: linear-gradient(#e6e6e6, #e6e6e6);
  background-color: #fff;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  height: auto;
  line-height: 1;
  min-height: 44px;
  min-width: 240px;
  padding: 11px min(6vw, 100px);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-size 0.4s ease-in-out;
}
@media screen and (max-width: 320px) {
  .footer .btn-access {
    min-width: 90%;
  }
}
.footer .btn-access::before {
  content: "";
  background-image: url(../images/top/icon-map-arrow.svg);
  animation: none !important;
  background-position: 100% 0;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 45px;
  right: 20px;
  height: 17px;
  top: calc(50% - 9px);
  z-index: 1;
}
.footer .btn-access .icon-map,
.footer .btn-access .text,
.footer .btn-access .icon-map-arrow {
  position: relative;
  z-index: 1;
}
.footer .btn-access .icon-map {
  width: 34px;
  height: 28px;
}
.footer .btn-access .text {
  font-size: 16px;
  font-weight: 600;
}
.footer .btn-access .icon-map-arrow {
  width: 14px;
  height: 14px;
}
.footer .btn-access:hover {
  background-size: 100% 100%;
}
.footer .copyright {
  font-size: var(--fs-12);
  color: #000;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 750px) {
  .footer {
    padding: min(50px, 7vw) 0 min(70px, 10vw);
  }
  .footer-top, .footer-top__logo {
    flex-direction: column;
    align-items: center;
  }
  .footer-top__logo img {
    width: min(58vw, 352px);
  }
  .footer-top__logo p {
    font-size: min(3.66vw, 24px);
  }
  .footer .btn-access {
    padding: 11px min(20vw, 150px);
    border: 4px solid #000;
    width: 90%;
    max-width: 610px;
  }
  .footer .btn-access .icon-map {
    width: 13vw;
    height: 8vw;
  }
  .footer .btn-access .text {
    font-size: clamp(18px, 3.5vw, 38px);
  }
  .footer .copyright {
    text-align: center;
    font-size: min(16px, 2.3vw);
    padding-top: min(70px, 10vw);
  }
}

/*# sourceMappingURL=style_top.css.map */
