@charset "UTF-8";
/* webfont 変数　*/
/* ofi */
/*====================================================================

index.css

=====================================================================*/
.main {
  overflow: hidden;
}

/*--------------------------------------------------------------------/
	main-view
/--------------------------------------------------------------------*/
.main-view {
  position: relative;
  padding-top: 70px;
}

.main-view__img {
  z-index: 2;
  position: relative;
  aspect-ratio: 9/16;
  width: 90%;
  margin-left: 7%;
  overflow: hidden;
  border-radius: clamp(0.5em, 1vw, 1em);
}

.main-view__inner {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-view__caution {
  -webkit-transition: all 0.3s ease 0s;
  z-index: 4;
  position: absolute;
  top: 1em;
  right: 4%;
  padding-top: 70px;
  color: #ffffff;
  font-size: 0.6em;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.main-view__caution.is-active {
  opacity: 1;
}

.main-view__catch {
  z-index: 4;
  position: absolute;
  top: calc(100% - 18vw);
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-view__catch__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
  row-gap: 0.5em;
          flex-direction: column;
  padding: 1.25em 2em 1.25em 2em;
  color: #ffffff;
  font-size: clamp(10px, 3.57vw, 20px);
}
.main-view__catch__inner.is-active::before {
  width: 100%;
}
.main-view__catch__inner::before {
  -webkit-transition: all 0.3s ease 0s;
  z-index: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-top-left-radius: clamp(0.5em, 1vw, 1em);
  border-bottom-left-radius: clamp(0.5em, 1vw, 1em);
  background: #DD93D4;
  content: "";
  transition: all 0.3s ease 0s;
}
.main-view__catch__add {
  z-index: 4;
  position: absolute;
  bottom: calc(100% - 2em);
  left: -2.5em;
  width: 40%;
}
.main-view__catch__add svg {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.main-view__catch__add svg.is-write {
  -webkit-animation: svgWriteReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: svgWriteReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.main-view__catch .is-ttl {
  -ms-flex-negative: 0;
  display: block;
  z-index: 3;
  position: relative;
      flex-shrink: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.main-view__catch .is-ttl .is-catch01 {
  display: block;
}
.main-view__catch .is-ttl .is-catch01__letter {
  display: inline-block;
  line-height: 1em;
}
.main-view__catch .is-txt {
  -ms-flex-negative: 0;
  z-index: 3;
  position: relative;
      flex-shrink: 0;
  font-weight: 700;
  line-height: 1.2;
}
.main-view__catch .is-txt span {
  display: block;
}
.main-view__catch .is-txt .is-catch02__letter, .main-view__catch .is-txt .is-catch03__letter {
  display: inline-block;
  line-height: 1em;
}

/* scroll */
.scroll-line {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
  z-index: 4;
  position: absolute;
  bottom: 5em;
  left: min(0.7%, 1em);
          writing-mode: vertical-rl;
}
.scroll-line a {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
  gap: 0.4em;
  color: #6959C7;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.scroll-line a:hover {
  color: #675CE3;
}
.scroll-line__txt {
  font-size: clamp(7px, 2.5vw, 12px);
  letter-spacing: 0;
}
.scroll-line span {
  display: block;
  position: relative;
  inline-size: 64px;
  inline-size: 4rem;
  block-size: 1px;
  overflow: hidden;
  background: transparent;
  content: "";
}
.scroll-line span::before {
  -webkit-animation: scroll-line 1.75s cubic-bezier(1, 0, 0, 1) infinite;
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
  inline-size: 100%;
  block-size: 1px;
  background: #6959C7;
  content: "";
          animation: scroll-line 1.75s cubic-bezier(1, 0, 0, 1) infinite;
  transition: all 0.3s ease 0s;
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 0);
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 1);
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 1);
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 0);
            transform-origin: 0 100%;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 0);
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 1);
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 1);
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 0);
            transform-origin: 0 100%;
  }
}
@-webkit-keyframes svgWriteReveal {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes svgWriteReveal {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
  }
}
/* common
----------------------------------------------------------------*/
/*--------------------------------------------------------------------/
	contents
/--------------------------------------------------------------------*/
.contents {
  background: #ffffff;
}

/*--------------------------------------------------------------------/
	message
/--------------------------------------------------------------------*/
.top-message {
  position: relative;
}
.top-message::before {
  z-index: 1;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: calc(100% + 3em);
  background: #6959C7;
  content: "";
}
.top-message__inner {
  z-index: 2;
  position: relative;
  height: 100%;
  padding-top: clamp(6em, 12vw, 12em);
  padding-bottom: 160vw;
  overflow: hidden;
  background: url(../img/top/aboutus_bg_sp.webp) bottom center/100% no-repeat;
  color: #ffffff;
}
.top-message__add {
  -webkit-filter: blur(12vw);
  z-index: -1;
  position: absolute;
  top: -5%;
  right: 46%;
  aspect-ratio: 1/1;
  width: 40%;
  max-width: 578px;
  border-radius: 50%;
  background: #B68FFF;
  content: "";
          filter: blur(12vw);
}
.top-message__add01 {
  position: absolute;
}
.top-message__add01__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-message__add01 .is-about01 {
  position: absolute;
}
.top-message__add01 .is-about02 {
  position: absolute;
}
.top-message__add02 {
  position: absolute;
}
.top-message__add02__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-message__add02 .is-about03 {
  position: absolute;
}
.top-message__add02 .is-about04 {
  position: absolute;
}

.top-message__txt {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
}
.top-message__txt__ttl {
  display: block;
  display: block;
  margin-bottom: 0.75em;
  overflow: hidden;
  color: #DD93D4;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(12px, 4.29vw, 38px);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-message__txt__ttl span {
  display: inline-block;
  position: relative;
  position: relative;
}
.top-message__txt__ttl span::before {
  position: absolute;
  top: 50%;
  left: calc(100% + 1em);
  width: 100vw;
  height: 1px;
  background: #ffffff;
  content: "";
}
.top-message__txt__catch {
  margin-bottom: 0.7em;
  font-weight: 700;
  font-size: clamp(16px, 5.71vw, 45px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.top-message__txt__catch b {
  font-weight: 900;
  font-size: 1.167em;
}
.top-message__txt__txt {
  font-weight: 700;
  font-size: clamp(9px, 3.21vw, 13px);
  line-height: 2.5;
}

/*--------------------------------------------------------------------/
	top-about
/--------------------------------------------------------------------*/
.top-about {
  position: relative;
  margin-bottom: clamp(6em, 9vw, 9em);
  padding-top: clamp(6em, 9vw, 9em);
  padding-bottom: clamp(6em, 9vw, 9em);
}
.top-about::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_curve.webp) bottom left/100% no-repeat;
  content: "";
}
.top-about__inner {
  z-index: 3;
  position: relative;
}
.top-about__head {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(1.5em, 2vw, 2em);
          flex-direction: column;
  margin-bottom: clamp(2em, 3vw, 3em);
}
.top-about__head__ttl {
  -webkit-column-gap: clamp(1em, 5vw, 2em);
     -moz-column-gap: clamp(1em, 5vw, 2em);
  -webkit-box-align: end;
      -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          column-gap: clamp(1em, 5vw, 2em);
          align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
}
.top-about__head__ttl .is-img {
  -ms-flex-negative: 0;
  display: block;
      flex-shrink: 0;
  width: clamp(80px, 20%, 210px);
}
.top-about__head__ttl .is-txt {
  -ms-flex-negative: 1;
  display: block;
      flex-shrink: 1;
  font-size: clamp(20px, 7.14vw, 50px);
}
.top-about__head__ttl .is-txt em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.3em;
  color: #6959C7;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-about__head__ttl .is-txt b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-about__head__txt {
  font-weight: 700;
  font-size: clamp(9.5px, 3.39vw, 14px);
}

.top-about__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1.5em;
          flex-direction: column;
}
.top-about__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.top-about__item a {
  -webkit-transition: all 0.3s ease 0s;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.top-about__item a:hover .top-about__item__img::before {
  background: transparent;
}
.top-about__item a:hover .top-about__item__img img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.top-about__item__img {
  z-index: 1;
  position: relative;
}
.top-about__item__img::before {
  -webkit-transition: all 0.3s ease 0s;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(105, 89, 199, .24);
  content: "";
  mix-blend-mode: darken;
  transition: all 0.3s ease 0s;
}
.top-about__item__img img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.top-about__item__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
}
.top-about__item__txt__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
  display: grid;
  z-index: 2;
  position: relative;
  grid-template-columns: 1fr auto;
          column-gap: 0.5em;
          align-items: center;
  width: 100%;
  padding: 1em 6% 2em;
}
.top-about__item__txt__inner::before {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(105, 89, 199, 0)), to(#6357ac));
  background: linear-gradient(180deg, rgba(105, 89, 199, 0) 0%, #6357ac 100%);
  content: "";
}
.top-about__item__txt__inner .is-txt {
  z-index: 2;
  position: relative;
  font-size: clamp(14px, 5vw, 28px);
}
.top-about__item__txt__inner .is-txt em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-about__item__txt__inner .is-txt b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-about__item__txt__inner i {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
          align-items: center;
          justify-content: center;
  justify-self: end;
  width: 48px;
  margin-top: 1em;
  background: #ffffff;
}
.top-about__item__txt__inner i {
  height: 48px;
}
.top-about__item__txt__inner i {
  -webkit-transition: all 0.3s ease 0s;
  border-radius: 50%;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.top-about__item__txt__inner i::before {
  -webkit-transition: all 0.3s ease 0s;
  margin-left: 0.2em;
  color: #6959C7;
  transition: all 0.3s ease 0s;
}

/*--------------------------------------------------------------------/
	top-culture
/--------------------------------------------------------------------*/
.top-culture {
  z-index: 1;
  position: relative;
  padding-bottom: clamp(2em, 5vw, 5em);
}
.top-culture::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92%;
  height: 80%;
  border-top-left-radius: clamp(0.5em, 1vw, 1em);
  border-bottom-left-radius: clamp(0.5em, 1vw, 1em);
  background: -webkit-gradient(linear, left top, right top, from(#EEC9EA), to(#D4C4FF));
  background: linear-gradient(to right, #EEC9EA, #D4C4FF);
  content: "";
}
.top-culture__img {
  z-index: 1;
  position: relative;
  width: 96%;
}
.top-culture__img__add {
  position: absolute;
  bottom: calc(100% - 2em);
  left: 2%;
  width: 50%;
}
.top-culture__img__inner {
  overflow: hidden;
  border-radius: clamp(0.5em, 1vw, 1em);
}
.top-culture__txt {
  z-index: 2;
  position: relative;
  width: 92%;
  margin-top: -2em;
  margin-left: 8%;
}
.top-culture__txt__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-shadow: 0 0 10px rgba(105, 89, 199, .36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 2em;
          flex-direction: column;
  padding: clamp(2em, 3vw, 3em) clamp(1.5em, 8%, 5em) clamp(1.5em, 3vw, 3em);
  border-radius: clamp(0.5em, 1vw, 1em);
  background: #ffffff;
          box-shadow: 0 0 10px rgba(105, 89, 199, .36);
}
.top-culture__txt__ttl {
  font-size: clamp(15px, 5.36vw, 30px);
}
.top-culture__txt__ttl em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  color: #6959C7;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-culture__txt__ttl b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-culture__txt__txt .txt {
  margin-bottom: clamp(1.5em, 2vw, 2em);
  font-size: clamp(8.7px, 3.11vw, 16px);
}

/*--------------------------------------------------------------------/
	top-list
/--------------------------------------------------------------------*/
.top-list {
  padding-top: clamp(6em, 12vw, 12em);
  padding-bottom: clamp(6em, 12vw, 12em);
}
.top-list__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(2em, 4vw, 4em);
          flex-direction: column;
}
.top-list__item {
  overflow: hidden;
  border-radius: clamp(0.5em, 1vw, 1em);
}
.top-list__item.is-graduate .top-list__item__txt {
  background: rgba(238, 201, 234, .4);
}
.top-list__item.is-graduate .top-list__item__txt__ttl em {
  color: #DD93D4;
}
.top-list__item.is-career .top-list__item__txt {
  background: #F0E6FF;
}
.top-list__item.is-career .top-list__item__txt__ttl em {
  color: #6959C7;
}
.top-list__item__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column-reverse;
}
.top-list__item__txt {
  padding: clamp(2em, 3vw, 3em) clamp(1.5em, 8%, 5em) clamp(1.5em, 3vw, 3em);
}
.top-list__item__txt__ttl {
  margin-bottom: 0.75em;
  font-size: clamp(15px, 5.36vw, 30px);
}
.top-list__item__txt__ttl em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-list__item__txt__ttl b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-list__item__txt__txt {
  margin-bottom: clamp(1.5em, 3vw, 3em);
}
.top-list__item__txt .btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*--------------------------------------------------------------------/
	top interview
/--------------------------------------------------------------------*/
.top-interview {
  position: relative;
  position: relative;
  padding-top: clamp(4em, 9vw, 9em);
  padding-bottom: clamp(9em, 12vw, 12em);
  overflow: hidden;
}
.top-interview::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 60vw;
  border-top-left-radius: clamp(0.5em, 25%, 8em);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(239, 238, 253, 0)), color-stop(26%, rgba(239, 238, 253, .65)), to(#efeefd));
  background: linear-gradient(0deg, rgba(239, 238, 253, 0) 1%, rgba(239, 238, 253, .65) 26%, #efeefd 100%);
  content: "";
}
.top-interview__inner {
  z-index: 3;
  position: relative;
}
.top-interview__ttl {
  margin-bottom: 0.75em;
  font-size: clamp(15px, 5.36vw, 60px);
}
.top-interview__ttl em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  color: #6959C7;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-interview__ttl b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-interview__btn {
  margin-top: clamp(1.5em, 2vw, 2em);
}

.top-interview__list {
  position: relative;
}
.top-interview__list .swiper {
  position: relative;
  width: 100%;
  padding-bottom: clamp(2em, 3vw, 3em);
  overflow: visible;
}
.top-interview__list .swiper-control {
  position: relative;
  width: 100%;
  height: 48px;
}
.top-interview__list .swiper-next_prev {
  -ms-flex-negative: 0;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
          column-gap: 6px;
      flex-shrink: 0;
  width: 102px;
  height: 48px;
}
.top-interview__list .swiper-button-prev,
.top-interview__list .swiper-button-next {
  display: block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  float: none;
  background-image: none;
}
.top-interview__list .swiper-button-prev::before,
.top-interview__list .swiper-button-next::before {
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #6959C7;
  content: "";
  transition: all 0.3s ease 0s;
}
.top-interview__list .swiper-button-prev::after,
.top-interview__list .swiper-button-next::after {
  -webkit-transition: all 0.3s ease 0s;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 1.5em;
  transition: all 0.3s ease 0s;
}
.top-interview__list .swiper-button-prev:hover::before,
.top-interview__list .swiper-button-next:hover::before {
  background: #675CE3;
}
.top-interview__list .swiper-button-prev:hover::after,
.top-interview__list .swiper-button-next:hover::after {
  color: #ffffff;
}
.top-interview__list .swiper-button-prev:after {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.top-interview__list .swiper-button-prev::after {
  -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
}
.top-interview__list .swiper-button-next:after {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.top-interview__list .swiper-button-next::after {
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
}
.top-interview__list .swiper-navigation-icon {
  display: none !important;
}
.top-interview__list .swiper-scrollbar {
  -webkit-transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: calc(102px + 1em);
  width: calc(100% - 102px - 1em);
  height: 6px;
          transform: translateY(-50%);
  background: #f6f6f6;
}
.top-interview__list .swiper-scrollbar-drag {
  -webkit-transition: all 0.3s ease 0s;
  height: 6px;
  background: #C9CED2;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.top-interview__list .swiper-scrollbar-drag:hover {
  background-color: #6959C7;
}

/*--------------------------------------------------------------------/
	top-internship
/--------------------------------------------------------------------*/
.top-internship {
  margin-bottom: clamp(6em, 12vw, 12em);
}
.top-internship__txt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-shadow: 0 0 10px rgba(93, 84, 187, .36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
          flex-direction: column;
  border-radius: clamp(0.5em, 1vw, 1em);
          box-shadow: 0 0 10px rgba(93, 84, 187, .36);
}
.top-internship__txt__head {
  position: relative;
  width: 100%;
  background: #6959C7;
  color: #ffffff;
}
.top-internship__txt__head__inner {
  position: relative;
  padding: clamp(4em, 5vw, 5em) clamp(1.5em, 8%, 5em) clamp(1.5em, 3vw, 3em);
}
.top-internship__txt__head__add {
  position: absolute;
  bottom: calc(100% - 3em);
  left: 10%;
  width: clamp(90px, 25%, 130px);
}
.top-internship__txt__head__ttl {
  margin-bottom: 0.75em;
  font-size: clamp(15px, 5.36vw, 30px);
}
.top-internship__txt__head__ttl em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  color: #DD93D4;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-internship__txt__head__ttl b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-internship__txt__body {
  width: 100%;
  background: #ffffff;
}
.top-internship__txt__body__inner {
  position: relative;
  padding: clamp(1.5em, 3vw, 3em) clamp(1.5em, 8%, 5em) clamp(2em, 4vw, 4em) clamp(1.5em, 8%, 5em);
}
.top-internship__txt__body .txt {
  margin-bottom: 1.5em;
  font-size: clamp(8.7px, 3.11vw, 16px);
}

.top-internship__bg {
  z-index: 1;
  position: relative;
  width: 200%;
  margin-top: -1.5em;
  overflow: hidden;
}
.top-internship__bg__inner {
  -webkit-animation: marquee 20s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
          animation: marquee 20s linear infinite;
}
.top-internship__bg__inner img {
  width: 100%;
}

/* 左 → 右 or 右 → 左はここで調整 */
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
@-webkit-keyframes marquee2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
@keyframes marquee2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); /* 左の外からスタート */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* ちょうど1枚分だけ右へ */
  }
}
/*--------------------------------------------------------------------/
	topseparate
/--------------------------------------------------------------------*/
.top-separate {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
  margin-bottom: clamp(3em, 6vw, 6em);
}

.top-separate__box {
  width: 100%;
}
.top-separate__box.is-family {
  background: #F0E6FF;
}
.top-separate__box.is-family .top-separate__box__ttl em {
  color: #DD93D4;
}
.top-separate__box.is-school {
  background: #DEDCF5;
}
.top-separate__box.is-school .top-separate__box__ttl em {
  color: #6959C7;
}
.top-separate__box__inner {
  position: relative;
  padding: clamp(1.5em, 3vw, 3em) clamp(1.5em, 5%, 5em) clamp(2em, 4vw, 4em);
}
.top-separate__box__add {
  width: clamp(90px, 20%, 140px);
}
.top-separate__box__ttl {
  margin-bottom: 0.75em;
  font-size: clamp(12px, 4.29vw, 30px);
  text-align: center;
}
.top-separate__box__ttl em {
  display: block;
  display: block;
  position: relative;
  margin-bottom: 0.75em;
  color: #6959C7;
  font-style: normal;
  font-weight: 700;
  font-size: 0.56em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-separate__box__ttl b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.top-separate__box__txt {
  margin-bottom: 1.5em;
}
.top-separate__box .btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/*--------------------------------------------------------------------/
	top-news
/--------------------------------------------------------------------*/
.top-news {
  padding-bottom: clamp(6em, 12vw, 12em);
  overflow: hidden;
}
.top-news__inner {
  padding: clamp(1.5em, 3vw, 3em) clamp(1.5em, 5%, 5em);
  border-radius: clamp(0.5em, 1vw, 1em);
  background: rgba(79, 61, 182, .08);
}
.top-news__ttl {
  margin-bottom: clamp(1em, 2vw, 2em);
  color: #333333;
  font-size: clamp(12px, 4.29vw, 30px);
}
.top-news__ttl em {
  display: -block;
  position: relative;
  margin-bottom: 0.2em;
  color: #6959C7;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-news__ttl b {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.top-news__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
}

.top-news__box {
  position: relative;
  text-align: left;
}
.top-news__box:last-child a {
  border-bottom: 1px solid #C9CED2;
}
.top-news__box a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  height: 100%;
  padding-block: 1em;
  overflow: hidden;
  border-top: 1px solid #C9CED2;
  color: #333333;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.top-news__box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-news__box__img {
  width: 100%;
}
.top-news__box__img__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}
.top-news__box__img__inner::before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}
.top-news__box__img__inner > div,
.top-news__box__img__inner figure,
.top-news__box__img__inner a,
.top-news__box__img__inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-news__box__txt {
  position: relative;
}
.top-news__box__txt__inner {
  width: 100%;
}
.top-news__box__txt i {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          align-items: center;
          justify-content: center;
  justify-self: end;
  width: 24px;
  margin-top: 1em;
  background: #6959C7;
}
.top-news__box__txt i {
  height: 24px;
}
.top-news__box__txt i {
  -webkit-transition: all 0.3s ease 0s;
  border-radius: 50%;
  font-size: 8px;
  font-size: 0.5rem;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.top-news__box__txt i::before {
  -webkit-transition: all 0.3s ease 0s;
  margin-left: 0.2em;
  color: #ffffff;
  transition: all 0.3s ease 0s;
}
.top-news__box__sub {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
  margin-bottom: 1em;
  gap: 0.5em;
}
.top-news__box__date {
  padding-top: 0.3em;
  color: #6959C7;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
}
.top-news__box__category {
  -ms-flex-wrap: wrap;
  -webkit-column-gap: 0.4em;
     -moz-column-gap: 0.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          column-gap: 0.4em;
  row-gap: 0.2em;
      flex-wrap: wrap;
}
.top-news__box__category .category-item {
  font-size: 0.7em;
}
.top-news__box__ttl {
  font-size: calc(1rem + 0.22059vw - 0.61765px);
}
@media (min-width: 376px) {
  /*====================================================================/
  /*--iPhone 以上--
  /====================================================================*/
}
@media (min-width: 576px) {
  /*====================================================================/
  /*--スマホ 以上--
  /====================================================================*/
  .top-about__item__txt__inner i {
    margin-top: 0;
  }
  .top-news__box__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .top-news__box__img {
    width: 27.02%;
  }
  .top-news__box__txt {
    -webkit-column-gap: 0.5em;
       -moz-column-gap: 0.5em;
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: grid;
    grid-template-columns: auto 1fr;
            column-gap: 0.5em;
            align-items: center;
    width: 72.98%;
    padding: 0.75em 3.75%;
  }
  .top-news__box__txt i {
    margin-top: 0;
  }
  .top-news__box__ttl {
    font-size: calc(0.9rem + 0.37594vw - 2.16541px);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
  /*--スマホ以上 タブレット iPadmini未満--
  /====================================================================*/
}
@media (min-width: 768px) {
  /*====================================================================/
  /*--タブレット　iPadmini 以上--
  /====================================================================*/
  .main-view__img {
    aspect-ratio: 55/26;
    width: 94%;
    margin-inline: auto;
  }
  .main-view__catch {
    top: calc(100% - 8vw);
  }
  .main-view__catch__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-column-gap: 1em;
       -moz-column-gap: 1em;
            column-gap: 1em;
            flex-direction: row;
            align-items: center;
    font-size: clamp(15px, 1.95vw, 32px);
  }
  .main-view__catch__add {
    bottom: calc(100% - 2.5em);
    left: -3em;
    width: 26.84%;
  }
  .main-view__catch .is-ttl {
    font-size: 2.9em;
  }
  .scroll-line {
    left: min(0.3%, 1em);
  }
  .top-message__inner {
    padding-bottom: 160vw;
  }
  .top-message .l-cont {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: flex-end;
  }
  .top-message__txt__catch {
    font-size: clamp(20px, 2.6vw, 45px);
  }
  .top-message__txt__txt {
    font-size: clamp(15px, 1.95vw, 21px);
  }
  .top-about__head__ttl .is-img {
    width: clamp(80px, 40%, 210px);
  }
  .top-about__head__ttl .is-txt {
    font-size: clamp(40px, 5.21vw, 72px);
  }
  .top-about__head__txt {
    font-size: clamp(14px, 1.82vw, 24px);
  }
  .top-about__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
            flex-direction: row;
  }
  .top-about__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 32%;
  }
  .top-about__item__txt__inner .is-txt {
    font-size: clamp(13px, 1.69vw, 28px);
  }
  .top-about__item__txt__inner i {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .top-culture::before {
    width: 90%;
  }
  .top-culture__img {
    width: 91.43%;
  }
  .top-culture__img__add {
    bottom: calc(100% - 3em);
    width: 34.5%;
  }
  .top-culture__txt {
    margin-top: -12vw;
  }
  .top-culture__txt__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: clamp(3em, 4vw, 4em) clamp(1.5em, 5%, 5em);
  }
  .top-culture__txt__ttl {
    -ms-flex-negative: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
        flex-shrink: 0;
    padding-right: 8%;
    border-right: 1px solid #9f73d2;
    font-size: clamp(20px, 2.6vw, 60px);
  }
  .top-culture__txt__txt {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    width: auto;
    padding-left: 5%;
  }
  .top-culture__txt__txt .txt {
    font-size: clamp(10.5px, 1.37vw, 18px);
  }
  .top-list__item__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .top-list__item__txt {
    width: 52%;
    padding: clamp(3em, 4vw, 4em) clamp(1.5em, 3%, 5em) clamp(3em, 4vw, 4em) clamp(1.5em, 8%, 10em);
  }
  .top-list__item__txt__ttl {
    font-size: clamp(26px, 3.39vw, 60px);
  }
  .top-list__item__txt__txt {
    font-size: clamp(10px, 1.3vw, 18px);
  }
  .top-list__item__img {
    width: 48%;
  }
  .top-interview {
    padding-top: clamp(6em, 10vw, 10em);
  }
  .top-interview__btn {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: flex-end;
  }
  .top-internship__txt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .top-internship__txt__head {
    width: 50%;
    border-top-left-radius: clamp(0.5em, 1vw, 1em);
    border-bottom-left-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-internship__txt__head__inner {
    padding: clamp(5em, 6vw, 6em) clamp(1.5em, 5%, 5em) clamp(3em, 4vw, 4em) clamp(1.5em, 10%, 10em);
  }
  .top-internship__txt__head__ttl {
    font-size: clamp(26px, 3.39vw, 60px);
  }
  .top-internship__txt__body {
    width: 50%;
    border-top-right-radius: clamp(0.5em, 1vw, 1em);
    border-bottom-right-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-internship__txt__body__inner {
    padding: clamp(3em, 4vw, 4em) clamp(1.5em, 5%, 5em) clamp(3em, 4vw, 4em) clamp(1.5em, 10%, 10em);
  }
  .top-internship__txt__body .txt {
    font-size: clamp(11px, 1.43vw, 20px);
  }
  .top-internship__bg {
    width: 100%;
  }
  .top-internship__bg__inner {
    -webkit-animation: marquee2 35s linear infinite;
            animation: marquee2 35s linear infinite;
  }
  .top-separate {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .top-separate__box {
    width: 50%;
  }
  .top-separate__box.is-family {
    border-top-left-radius: clamp(0.5em, 1vw, 1em);
    border-bottom-left-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-separate__box.is-school {
    border-top-right-radius: clamp(0.5em, 1vw, 1em);
    border-bottom-right-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-separate__box__inner {
    padding: clamp(4em, 5vw, 5em) clamp(1.5em, 5%, 5em) clamp(3em, 4vw, 4em);
  }
  .top-separate__box__add {
    -webkit-transform: translate(-50%);
    position: absolute;
    bottom: calc(100% - 2em);
    left: 50%;
            transform: translate(-50%);
  }
  .top-separate__box__ttl {
    font-size: clamp(20px, 2.6vw, 40px);
  }
  .top-separate__box__txt {
    font-size: clamp(10px, 1.3vw, 16px);
    text-align: center;
  }
  .top-news__box__txt i {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1175px) {
  /*====================================================================/
  /*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
  /====================================================================*/
}
@media (min-width: 1176px) {
  /*====================================================================/
  /*--XGAサイズ　iPadPro 以上--
  /====================================================================*/
  .top-message::before {
    height: calc(100% + 5em);
  }
  .top-message__inner {
    padding-top: clamp(9em, 16vw, 16em);
    padding-bottom: clamp(20em, 30vw, 36em);
    background: url(../img/top/aboutus_bg_pc.webp) bottom center/100% no-repeat;
  }
  .top-message__add01 {
    top: 10vw;
    right: calc(50% + 435px);
    aspect-ratio: 250/383;
    width: 26.04%;
  }
  .top-message__add01 .is-about01 {
    top: 0;
    left: 0;
    width: 94%;
  }
  .top-message__add01 .is-about02 {
    right: 0;
    bottom: 0;
    width: 76%;
  }
  .top-message__add02 {
    bottom: 22%;
    left: calc(50% + 250px);
    aspect-ratio: 319/383;
    width: 33.17%;
  }
  .top-message__add02 .is-about03 {
    top: 0;
    right: 0;
    width: 81.63%;
  }
  .top-message__add02 .is-about04 {
    bottom: 0;
    left: 0;
    width: 54%;
  }
  .top-message__txt__catch {
    font-size: 2.81rem;
  }
  .top-message__txt__txt {
    font-size: 1.31rem;
  }
  .top-about__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
    -webkit-column-gap: clamp(1.5em, 2vw, 2em);
       -moz-column-gap: clamp(1.5em, 2vw, 2em);
            column-gap: clamp(1.5em, 2vw, 2em);
            flex-direction: row;
            align-items: flex-end;
  }
  .top-about__list {
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
  }
  .top-about__item {
    width: 31.33%;
  }
  .top-culture__img__add {
    bottom: calc(100% - 4em);
  }
  .top-culture__txt {
    width: 89.12%;
    margin-left: 10.88%;
  }
  .top-culture__txt__inner {
    padding: clamp(4em, 5vw, 5em) clamp(1.5em, 8%, 8em);
  }
  .top-interview::before {
    border-top-left-radius: clamp(0.5em, 30%, 12em);
  }
  .top-interview__list .swiper-control {
    height: 64px;
  }
  .top-interview__list .swiper-next_prev {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    width: 136px;
    height: 64px;
  }
  .top-interview__list .swiper-button-prev,
  .top-interview__list .swiper-button-next {
    width: 64px;
    height: 64px;
  }
  .top-interview__list .swiper-scrollbar {
    left: calc(136px + 1em);
    width: calc(100% - 136px - 1em);
    height: 8px;
  }
  .top-interview__list .swiper-scrollbar-drag {
    height: 8px;
  }
  .top-internship__txt__head__add {
    bottom: calc(100% - 4em);
    width: clamp(90px, 34%, 190px);
  }
  .top-separate__box__inner {
    padding: clamp(5em, 6vw, 6em) clamp(1.5em, 5%, 5em) clamp(3em, 4vw, 4em);
  }
  .top-separate__box__add {
    bottom: calc(100% - 3em);
  }
  .top-news__inner {
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 30% 67%;
            column-gap: 3%;
    padding: clamp(3em, 4vw, 4em) clamp(1.5em, 8%, 8em);
  }
  .top-news__ttl {
    grid-row: 1/2;
    grid-column: 1/2;
    margin-bottom: clamp(2em, 3vw, 3em);
    font-size: clamp(28px, 2.59vw, 40px);
  }
  .top-news .btn-wrap {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .top-news__list {
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .top-news__box__ttl {
    font-size: 1.38rem;
  }
}
@media (min-width: 1176px) and (max-width: 1552px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro以上 PC未満--
  /====================================================================*/
}
@media (min-width: 1296px) {
  .main-view {
    padding-top: 100px;
  }
  .main-view__caution {
    padding-top: 100px;
  }
}
@media (min-width: 1553px) {
  /*====================================================================/
  /*---PC 以上--
  /====================================================================*/
  .main-view__catch {
    top: calc(100% - 7em);
  }
  .top-message__txt__ttl {
    font-size: 2.38rem;
  }
  .top-about__item__txt__inner i {
    width: 64px;
    height: 64px;
    font-size: 1.13rem;
  }
  .top-culture__txt__txt .txt {
    font-size: 1.13rem;
  }
  .top-list__item__txt__ttl {
    font-size: 3.75rem;
  }
  .top-list__item__txt__txt {
    font-size: 1.13rem;
  }
  .top-internship__txt__body .txt {
    font-size: 1.25rem;
  }
  .top-separate__box__ttl {
    font-size: 2.5rem;
  }
  .top-separate__box__txt {
    font-size: 1rem;
  }
  .top-news__ttl {
    font-size: 2.5rem;
  }
  .top-news__box__img {
    width: 200px;
  }
  .top-news__box__txt {
    width: calc(100% - 200px);
  }
}
@media (min-width: 1553px) and (max-width: 1752px) {
  /*====================================================================/
  /*--px以上 Large PC未満--
  /====================================================================*/
}
@media (min-width: 1753px) {
  /*====================================================================/
  /*--Large PC 以上--
  /====================================================================*/
  .main-view__catch__inner {
    font-size: 2rem;
  }
  .top-about__head__ttl .is-img {
    width: auto;
    max-width: 210px;
  }
  .top-about__head__ttl .is-txt {
    font-size: 4.38rem;
  }
  .top-about__head__txt {
    font-size: 1.5rem;
  }
  .top-about__item__txt__inner .is-txt {
    font-size: 1.75rem;
  }
  .top-culture__txt__ttl {
    font-size: 3.75rem;
  }
  .top-interview__ttl {
    font-size: 3.75rem;
  }
  .top-internship__txt__head__ttl {
    font-size: 3.75rem;
  }
}
@media (min-width: 1296px) and (min-width: 1921px) {
  .main-view {
    padding-top: 5.21vw;
  }
  .main-view__caution {
    padding-top: 5.21vw;
  }
}
@media (min-width: 1921px) {
  .top-message__add {
    max-width: 30.1vw;
  }
  .top-message__add01 {
    right: 74%;
  }
  .top-message__add02 {
    left: 65%;
  }
  .top-message__txt {
    max-width: 34.37vw;
  }
  .top-about__item__txt__inner i {
    width: 2.5vw;
  }
  .top-about__item__txt__inner i {
    height: 2.5vw;
  }
  .top-news__box__txt i {
    width: 1.25vw;
  }
  .top-news__box__txt i {
    height: 1.25vw;
  }
}
@media (min-width: 1753px) and (min-width: 1921px) {
  .top-about__head__ttl .is-img {
    max-width: 10.93vw;
  }
}
@media (min-width: 768px) and (min-width: 1921px) {
  .top-about__item__txt__inner i {
    width: 1.67vw;
  }
  .top-about__item__txt__inner i {
    height: 1.67vw;
  }
  .top-news__box__txt i {
    width: 1.67vw;
  }
  .top-news__box__txt i {
    height: 1.67vw;
  }
}
@media (min-width: 1553px) and (min-width: 1921px) {
  .top-about__item__txt__inner i {
    width: 3.33vw;
  }
  .top-about__item__txt__inner i {
    height: 3.33vw;
  }
}
@media (max-width: 1752px) {
  /*====================================================================/
  /*--Large PC 未満--
  /====================================================================*/
}
@media (max-width: 1552px) {
  /*====================================================================/
  /*--PC 未満--
  /====================================================================*/
}
@media (max-width: 1175px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro 未満--
  /====================================================================*/
  .top-message__add01 {
    bottom: 0%;
    left: 0;
    aspect-ratio: 2/3;
    width: 100%;
  }
  .top-message__add01 .is-about01 {
    top: 0;
    left: 8%;
    width: 60%;
  }
  .top-message__add01 .is-about02 {
    top: 55%;
    left: 4%;
    width: 50%;
  }
  .top-message__add02 {
    bottom: 0%;
    left: 0;
    aspect-ratio: 2/3;
    width: 100%;
  }
  .top-message__add02 .is-about03 {
    top: 29%;
    right: 10%;
    width: 50%;
  }
  .top-message__add02 .is-about04 {
    top: 69%;
    right: 5%;
    width: 36%;
  }
  .top-news__list {
    margin-bottom: 2em;
  }
}
@media (max-width: 767px) {
  /*====================================================================/
  /*--タブレット iPadmini 未満--
  /====================================================================*/
  .top-message__txt {
    padding-inline: 3%;
  }
  .top-internship__txt__head {
    border-top-right-radius: clamp(0.5em, 1vw, 1em);
    border-top-left-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-internship__txt__body {
    border-bottom-right-radius: clamp(0.5em, 1vw, 1em);
    border-bottom-left-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-separate__box.is-family {
    border-top-right-radius: clamp(0.5em, 1vw, 1em);
    border-top-left-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-separate__box.is-school {
    border-bottom-right-radius: clamp(0.5em, 1vw, 1em);
    border-bottom-left-radius: clamp(0.5em, 1vw, 1em);
  }
  .top-separate__box__add {
    margin-bottom: 1.5em;
    margin-inline: auto;
  }
}
@media (max-width: 575px) {
  /*====================================================================/
  /*--iPhone 以下--
  /====================================================================*/
  .top-news__box__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-news__box__txt {
    width: 100%;
    padding-top: 1em;
  }
}
/*# sourceMappingURL=map/top.css.map */
