/* settings */
* {
  font-family: "Noto Sans JP", "Noto Sans JP", "Noto Sans Japanese", "Noto Sans CJK JP", sans-serif;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  text-decoration: none;
  font-style: normal;
  font-weight: 300;
  text-align: justify;
  box-sizing: border-box;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.notes {
  font-size: 80%;
  color: #bbb;
}
@media screen and (max-width: 769px) {
  .notes {
    font-size: 1.15rem;
  }
}

a, button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.curriculum__button {
  cursor: pointer;
  display: block;
  background-color: #212121;
  border-radius: 24px;
  margin: 40px auto;
  color: white;
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-right: 8px;
  width: 260px;
  height: 48px;
}
.curriculum__button::before {
  content: "";
  width: 256px;
  height: 44px;
  border-radius: 24px;
  border: solid 2px #e2e2e2;
  position: absolute;
  top: -2px;
  left: 0;
  transition: all 0.2s ease-out;
}
.curriculum__button span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: white;
}
@media screen and (min-width: 770px) {
  .curriculum__button:hover {
    background-color: rgba(33, 33, 33, 0.9);
    transition: all 0.4s ease-out;
    transform: translateY(4px);
  }
  .curriculum__button:hover::before {
    transform: translateY(-4px);
  }
}
.curriculum__button::after {
  content: url("../images/button_pass.svg");
  position: absolute;
  right: 24px;
  vertical-align: baseline;
}
@media screen and (max-width: 769px) {
  .curriculum__button {
    width: 240px;
    height: 48px;
    font-size: 1.3rem;
    margin: 7.46vw auto;
  }
  .curriculum__button::before {
    content: "";
    width: 240px;
    height: 46px;
    border-radius: 24px;
    border: solid 2px #e2e2e2;
    position: absolute;
    top: -4px;
    left: -2px;
    transition: all 0.2s ease-out;
  }
  .curriculum__button::after {
    top: 30%;
    scale: 0.9;
  }
}
.curriculum__button:slick-arrow {
  content: none;
}

.fup1 {
  opacity: 0;
}
.fup1_action {
  -webkit-animation: 1s ease fup1 forwards;
          animation: 1s ease fup1 forwards;
}

@-webkit-keyframes fup1 {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fup1 {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.fdw1 {
  opacity: 0;
  -webkit-animation: 1.2s ease fdw1 forwards;
          animation: 1.2s ease fdw1 forwards;
}

@-webkit-keyframes fdw1 {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fdw1 {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.height1 {
  -webkit-animation: 1.6s ease-out height1 infinite;
          animation: 1.6s ease-out height1 infinite;
}

@-webkit-keyframes height1 {
  0% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes height1 {
  0% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
.height2:after {
  -webkit-animation: 1.4s ease-out height2 infinite;
          animation: 1.4s ease-out height2 infinite;
}

@-webkit-keyframes height2 {
  0% {
    transform: rotate(-90deg) translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: rotate(-90deg) translateX(6px);
    opacity: 1;
  }
}
@keyframes height2 {
  0% {
    transform: rotate(-90deg) translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: rotate(-90deg) translateX(6px);
    opacity: 1;
  }
}
.rotate1:hover::after {
  -webkit-animation: 2s rotate1 linear infinite;
          animation: 2s rotate1 linear infinite;
}

@-webkit-keyframes rotate1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.right1:hover::before {
  -webkit-animation: 0.8s right1 ease forwards;
          animation: 0.8s right1 ease forwards;
}

@-webkit-keyframes right1 {
  0% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@keyframes right1 {
  0% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@media screen and (min-width: 927px) {
  .right2:hover:after {
    -webkit-animation: 1s right2 linear infinite;
            animation: 1s right2 linear infinite;
  }
}

@-webkit-keyframes right2 {
  0% {
    transform: translateX(-8px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
@keyframes right2 {
  0% {
    transform: translateX(-8px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
details[open] .accordion.careerSupport__columnContent {
  -webkit-animation: 1s accordion ease-out;
          animation: 1s accordion ease-out;
}

@-webkit-keyframes accordion {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
@keyframes accordion {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
.header_anime {
  margin: 0 auto;
  -webkit-animation: 0.4s header_anime ease-out forwards;
          animation: 0.4s header_anime ease-out forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes header_anime {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes header_anime {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.load_bg {
  width: 100vw;
  height: 100vh;
  background-color: #E33092;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-animation: loading 1s ease-in-out forwards;
          animation: loading 1s ease-in-out forwards;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
    transform: translate(0);
  }
  70% {
    opacity: 0.96;
    transform: translate(0);
  }
  100% {
    opacity: 0.8;
    transform: translate(0, -100vh);
  }
}
@keyframes loading {
  0% {
    opacity: 1;
    transform: translate(0);
  }
  70% {
    opacity: 0.96;
    transform: translate(0);
  }
  100% {
    opacity: 0.8;
    transform: translate(0, -100vh);
  }
}
.spinner {
  width: 96px;
  height: 113px;
  margin: 40vh auto;
  background-image: url(../images/loading.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: fuwafuwa 1.2s infinite ease-in-out;
          animation: fuwafuwa 1.2s infinite ease-in-out;
}

@-webkit-keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
html {
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media screen and (min-width: 770px) {
  html .SP {
    display: none !important;
  }
}
@media screen and (max-width: 769px) {
  html {
    font-size: 62.5%;
  }
  html .PC {
    display: none !important;
  }
}
html .wrapper {
  overflow: clip;
}
html .wrapper header .header__inner {
  position: fixed;
  top: 0;
  left: 3.25vw;
  right: 3.25vw;
  z-index: 9998;
  width: 92.5%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0px 18px 18px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 926px) {
  html .wrapper header .header__inner {
    background-color: transparent;
  }
}
html .wrapper header .header__inner .h__logo {
  display: block;
  width: 120px;
  height: 34px;
}
@media screen and (max-width: 769px) {
  html .wrapper header .header__inner .h__logo {
    display: inline-block;
    width: 98px;
    height: auto;
    position: fixed;
    z-index: 9997;
  }
  html .wrapper header .header__inner .h__logo img {
    width: 100%;
    height: auto;
  }
}
html .wrapper header .header__inner .header__nav {
  margin-left: 9.4vw;
}
@media screen and (max-width: 1000px) {
  html .wrapper header .header__inner .header__nav {
    margin-left: 5.4vw;
  }
}
html .wrapper header .header__inner .header__nav ul {
  display: flex;
}
@media screen and (max-width: 769px) {
  html .wrapper header .header__inner .header__nav ul {
    display: none;
  }
}
html .wrapper header .header__inner .header__nav ul li {
  padding: 0 20px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  html .wrapper header .header__inner .header__nav ul li {
    font-size: 13px;
  }
}
@media screen and (min-width: 927px) {
  html .wrapper header .header__inner .header__nav ul li:nth-of-type(6), html .wrapper header .header__inner .header__nav ul li:nth-of-type(7) {
    display: none;
  }
}
html .wrapper header .header__inner .header__nav ul li a {
  color: #212121;
  font-weight: 500;
  transition: all 0.2s ease-out;
  padding-bottom: 4px;
}
html .wrapper header .header__inner .header__nav ul li a.current {
  border-bottom: 2px solid #E33092;
}
@media screen and (max-width: 926px) {
  html .wrapper header .header__inner .header__nav ul li a.current {
    border: none;
  }
}
@media screen and (min-width: 770px) {
  html .wrapper header .header__inner .header__nav ul li a:hover {
    color: #E33092;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper header .header__inner .header__nav ul li {
    font-size: 1.4rem;
  }
}
html .wrapper header .header__inner .openBtn {
  position: fixed;
  z-index: 9997;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 0 0 0 32px;
  box-shadow: -3px 3px 6px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
@media screen and (max-width: 926px) {
  html .wrapper header .header__inner .openBtn {
    display: block;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper header .header__inner .openBtn {
    width: 60px;
    height: 60px;
  }
}
html .wrapper header .header__inner .openBtn span {
  position: absolute;
  display: inline-block;
  height: 2px;
  background-color: #212121;
  border-radius: 2px;
  transition: all 0.4s;
}
html .wrapper header .header__inner .openBtn span:nth-of-type(1) {
  width: 28px;
  top: 20px;
  right: 16px;
}
html .wrapper header .header__inner .openBtn span:nth-of-type(2) {
  width: 22px;
  top: 28px;
  right: 16px;
}
html .wrapper header .header__inner .openBtn span:nth-of-type(3) {
  width: 22px;
  top: 36px;
  right: 16px;
}
html .wrapper header .header__inner .openBtn.open {
  background-color: #212121;
  border-radius: 0 0 0 18px;
  width: 60px;
  height: 60px;
}
html .wrapper header .header__inner .openBtn.open span {
  background-color: #fff;
}
html .wrapper header .header__inner .openBtn.open span:nth-of-type(1) {
  width: 20px;
  right: 20px;
  transform: translateY(8px) rotate(225deg);
}
html .wrapper header .header__inner .openBtn.open span:nth-of-type(2) {
  display: none;
}
html .wrapper header .header__inner .openBtn.open span:nth-of-type(3) {
  width: 20px;
  right: 20px;
  transform: translateY(-8px) rotate(-225deg);
}
@media screen and (max-width: 926px) {
  html .wrapper header .header__inner {
    height: 68px;
    padding: 20px;
    display: block;
    left: 0;
    width: 100%;
    border-radius: 0 0px 0px 18px;
    transition: all 0.4s;
    background: transparent;
  }
  html .wrapper header .header__inner .header__nav {
    margin-top: -100vh;
  }
  html .wrapper header .header__inner.open {
    display: block;
    width: 100vw;
    height: 100vh;
    left: 0;
    z-index: 9998;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0;
  }
  html .wrapper header .header__inner.open .header__nav {
    transition: all 0.4s ease;
    margin: 0;
  }
  html .wrapper header .header__inner.open .header__nav ul {
    display: block;
    margin-top: 16vw;
  }
  html .wrapper header .header__inner.open .header__nav ul li:nth-of-type(6) a {
    color: #E33092;
    vertical-align: middle;
    position: relative;
    padding-left: calc(4vw + 3rem);
  }
  html .wrapper header .header__inner.open .header__nav ul li:nth-of-type(6) a:before {
    content: "";
    background-image: url(../images/icon_seikyu.svg);
    background-repeat: none;
    background-size: contain;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 4vw;
  }
  html .wrapper header .header__inner.open .header__nav ul li:nth-of-type(7) a {
    color: #E33092;
    padding-left: 8vw;
    padding-left: calc(4vw + 3rem);
    position: relative;
  }
  html .wrapper header .header__inner.open .header__nav ul li:nth-of-type(7) a:before {
    content: "";
    background-image: url(../images/icon_setsumei.svg);
    background-repeat: none;
    background-size: contain;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 4vw;
  }
  html .wrapper header .header__inner.open .header__nav ul li a {
    display: block;
    font-size: 1.5rem;
    width: 100%;
    height: 14vw;
    line-height: 14vw;
    margin: 0 auto;
    position: relative;
    padding: 0;
    padding-left: 4vw;
  }
}
@media screen and (max-width: 926px) and (max-width: 926px) {
  html .wrapper header .header__inner.open .header__nav ul li a {
    height: 10vw;
    line-height: 10vw;
  }
}
@media screen and (max-width: 926px) and (max-width: 769px) {
  html .wrapper header .header__inner.open .header__nav ul li a {
    height: 14vw;
    line-height: 14vw;
  }
}
@media screen and (max-width: 926px) {
  html .wrapper header .header__inner.open .header__nav ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-image: url("../images/menu_dotted.svg");
    background-size: contain;
    left: 0;
    bottom: 0;
  }
}
html .wrapper header .header__floatBtn.is-hidden {
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}
html .wrapper header .header__floatBtn a {
  position: fixed;
  display: block;
  z-index: 9996;
  height: 124px;
  width: 124px;
}
html .wrapper header .header__floatBtn a img {
  display: block;
  width: 100%;
  height: 100%;
}
html .wrapper header .header__floatBtn a.siryo {
  bottom: calc(6.5% + 124px + 80px);
  right: 2%;
}
html .wrapper header .header__floatBtn a.siryo:hover::before {
  display: block;
  position: absolute;
  content: url("../images/siryoBtn_pc_illust.svg");
  top: 0px;
  right: 110px;
  opacity: 1;
  z-index: 1;
}
html .wrapper header .header__floatBtn a.siryo:after {
  display: block;
  position: absolute;
  content: url("../images/siryoBtn_pc_after.svg");
  z-index: 9997;
  top: -14px;
  left: -12px;
  padding: 14px;
  transform: rotate(0deg);
}
html .wrapper header .header__floatBtn a.siryo img {
  position: relative;
  display: block;
}
html .wrapper header .header__floatBtn a.setsumei {
  bottom: calc(5% + 72px);
  right: 2%;
  z-index: 9995;
}
html .wrapper header .header__floatBtn a.setsumei:hover::before {
  display: block;
  position: absolute;
  content: url("../images/setsumeiBtn_pc_illust.svg");
  top: 0px;
  right: 110px;
  opacity: 1;
  z-index: 1;
}
html .wrapper header .header__floatBtn a.setsumei:after {
  display: block;
  position: absolute;
  content: url("../images/setsumeiBtn_pc_after.svg");
  z-index: 9997;
  top: -14px;
  left: -14px;
  transform: rotate(0deg);
}
html .wrapper .main .mainVisual figure .kv {
  width: 100%;
  height: auto;
}
html .wrapper .main .mainVisual h1 {
  position: absolute;
  z-index: 999;
  top: 10vw;
  right: 56vw;
  width: 29.54vw;
  height: auto;
}
html .wrapper .main .mainVisual h1:after {
  content: "";
  background-image: url("../images/uiuxdesign_pc_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 29.54vw;
  height: 29.27vw;
  position: absolute;
  z-index: -1;
  top: 32px;
  right: 24px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual h1:after {
    content: "";
    background-image: url("../images/uiuxdesign_pc_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 48.13vw;
    height: 47.4vw;
    top: 4vw;
    right: auto;
    left: -4vw;
  }
}
html .wrapper .main .mainVisual h1 img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual h1 img {
    width: 48.13vw;
    height: auto;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual h1 {
    top: 21vw;
    left: 8vw;
    right: auto;
  }
}
html .wrapper .main .mainVisual .main__copy {
  position: absolute;
  top: 17.5vw;
  left: 55vw;
  width: 28vw;
}
html .wrapper .main .mainVisual .main__copy img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual .main__copy {
    top: 80vw;
    right: 8vw;
    left: auto;
    width: 53.33vw;
  }
}
html .wrapper .main .mainVisual .scroll {
  position: absolute;
  top: 38vw;
  left: 40vw;
  z-index: 10;
  line-height: 1.5;
}
html .wrapper .main .mainVisual .scroll a {
  font-size: 80%;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  color: #212121;
  font-weight: 500;
  transition: 0.4s;
  padding: 40px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual .scroll a {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 770px) {
  html .wrapper .main .mainVisual .scroll a:hover {
    color: #E33092;
    opacity: 0.8;
  }
}
html .wrapper .main .mainVisual .scroll a span {
  display: block;
  position: relative;
}
html .wrapper .main .mainVisual .scroll a span:before {
  content: url("../images/scroll.svg");
  position: absolute;
  top: -20px;
  left: -26px;
  transform: scale(0.8);
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual .scroll a span:before {
    content: url("../images/scroll_sp.svg");
    top: -20px;
    left: -18px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .mainVisual .scroll {
    top: 104vw;
    left: 12vw;
    font-size: 1.1rem;
  }
  html .wrapper .main .mainVisual .scroll span {
    position: relative;
  }
  html .wrapper .main .mainVisual .scroll span:before {
    content: url(../images/scroll_sp.svg);
    position: absolute;
    top: -3vw;
    left: -6vw;
  }
}
html .wrapper .main .intro {
  position: relative;
}
html .wrapper .main .intro .intro__ttl {
  font-family: "Caveat", cursive;
  font-size: 52px;
  letter-spacing: 0.152em;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .intro .intro__ttl {
    font-size: 2.8rem;
    margin-left: 80px;
  }
}
@media only screen and (max-width: 768px) {
  html .wrapper .main .intro .intro__ttl {
    font-size: 4.8rem;
    margin: 0 4vw;
  }
}
@media screen and (max-width: 500px) {
  html .wrapper .main .intro .intro__ttl {
    font-size: 3.4rem;
    margin: 0 4vw;
  }
}
html .wrapper .main .intro .intro__txt {
  max-width: 800px;
  margin: 60px auto 0px;
  line-height: 2.4;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .intro .intro__txt {
    font-size: 14px;
    margin-left: 80px;
  }
}
html .wrapper .main .intro .intro__txt:nth-of-type(2) {
  margin: 0 auto 60px;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .intro .intro__txt:nth-of-type(2) {
    font-size: 14px;
    margin-left: 80px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .intro .intro__txt {
    font-size: 1.46rem;
    margin: 6vw 4vw 1vw;
    letter-spacing: 0.1em;
    text-align: justify;
    line-height: 2;
  }
}
html .wrapper .main .intro .intro__img01 {
  display: block;
  position: absolute;
  top: 0px;
  right: 90px;
  width: 28vw;
  height: auto;
  z-index: -10;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .intro .intro__img01 {
    right: 4vw;
  }
}
html .wrapper .main .intro .intro__img02 {
  display: block;
  position: absolute;
  bottom: -88px;
  left: 0;
  width: 15vw;
  height: auto;
  z-index: -10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .intro .intro__img02 {
    bottom: -86px;
    width: 64vw;
    left: auto;
    right: 0;
    padding: 0 4vw;
  }
}
html .wrapper .main .content {
  margin: 120px auto 0;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .content {
    margin: 10.66vw auto 0;
  }
}
html .wrapper .main .content h2 {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content h2 {
    padding: 0 4vw;
  }
}
html .wrapper .main .content h2 img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content h2 .ttl__en01 {
    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-weight: 500;
    color: #E33092;
    text-align: center;
    letter-spacing: 0.06em;
    font-size: 4rem;
  }
  html .wrapper .main .content h2 .ttl__en02 {
    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-weight: 500;
    color: #E33092;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 4rem;
  }
}
@media screen and (max-width: 769px) and (max-width: 468px) {
  html .wrapper .main .content h2 .ttl__en02.ttl__career {
    font-size: 3.1rem;
  }
}
html .wrapper .main .content .ttl__jp {
  max-width: 1000px;
  display: block;
  text-align: center;
  font-size: 18px;
  margin: 12px auto 60px;
  color: #E33092;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .content .ttl__jp {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .ttl__jp {
    font-size: 1.3rem;
    margin: 0 auto 6.3vw;
  }
}
html .wrapper .main .content .content__txt {
  max-width: 1000px;
  text-align: center;
  line-height: 2;
  margin: 0 auto 80px;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .content .content__txt {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .content__txt {
    text-align: justify;
    margin: 0 5%;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 8vw;
    line-height: 1.8;
  }
}
html .wrapper .main .content details {
  max-width: 720px;
  margin: 100px auto 60px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details {
    margin: 6.3vw 5% 10.66vw;
  }
}
html .wrapper .main .content details summary {
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 48px;
  line-height: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  color: #212121;
  background-color: #fff;
  border: 2px solid #212121;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details summary {
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 8px 0 9px 0;
    height: auto;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details summary {
    font-size: 1.3rem;
  }
}
html .wrapper .main .content details summary .column__ttl {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: bold;
  padding-right: 1em;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details summary .column__ttl {
    font-size: 1.4rem;
    display: block;
    text-align: center;
    top: 10px;
    left: 10px;
  }
}
html .wrapper .main .content details summary .column__ttl:before {
  content: url("../images/column_dot.svg");
  position: absolute;
  left: 24px;
  top: 0px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details summary .column__ttl:before {
    top: 10px;
    left: 10px;
  }
}
html .wrapper .main .content details summary span.columnBtn {
  position: absolute;
  right: 26px;
  top: 9px;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #212121;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details summary span.columnBtn {
    right: 10px;
    top: 8px;
    width: 38px;
    height: 38px;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details summary span.columnBtn {
    width: 32px;
    height: 32px;
  }
}
html .wrapper .main .content details summary .minus {
  position: absolute;
  width: 16px;
  height: 2px;
  right: 32px;
  background-color: #fff;
  top: 50%;
  border-radius: 2px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details summary .minus {
    right: 21px;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details summary .minus {
    right: 18px;
  }
}
html .wrapper .main .content details summary .plus {
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #fff;
  right: 39px;
  top: calc(50% - 7px);
  border-radius: 2px;
  transition: all 0.4s;
  transform: rotate(90deg);
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details summary .plus {
    right: 28px;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details summary .plus {
    right: 25px;
  }
}
html .wrapper .main .content details[open] summary {
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 48px;
  line-height: 44px;
  border: 2px solid #212121;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #212121;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details[open] summary {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0 0 -4.4vw;
    padding: 8px 0 9px 0;
    height: auto;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details[open] summary {
    font-size: 1.3rem;
  }
}
html .wrapper .main .content details[open] summary .column__ttl {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: bold;
  padding-right: 1em;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details[open] summary .column__ttl {
    display: block;
    text-align: center;
    top: 10px;
    left: 10px;
    font-size: 1.4rem;
  }
}
html .wrapper .main .content details[open] summary .column__ttl:before {
  content: url("../images/column_dot.svg");
  position: absolute;
  left: 24px;
  top: 0px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details[open] summary .column__ttl:before {
    top: 10px;
    left: 10px;
  }
}
html .wrapper .main .content details[open] summary span.columnBtn {
  position: absolute;
  right: 26px;
  top: 9px;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #212121;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details[open] summary span.columnBtn {
    right: 10px;
    top: 8px;
    width: 38px;
    height: 38px;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details[open] summary span.columnBtn {
    width: 32px;
    height: 32px;
  }
}
html .wrapper .main .content details[open] summary .minus {
  background-color: #fff;
  transform: rotate(180deg);
  transition: all 0.4s ease;
  z-index: 5;
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details[open] summary .minus {
    right: 18px;
  }
}
html .wrapper .main .content details[open] summary .plus {
  position: absolute;
  background-color: #212121;
  transition: all 0.4s;
  transform: rotate(180deg);
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content details[open] summary .plus {
    right: 23px;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content details[open] summary .plus {
    right: 25px;
  }
}
html .wrapper .main .content .columnArea.careerSupport__column details summary {
  position: relative;
}
html .wrapper .main .content .columnArea.careerSupport__column details summary:before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 84px;
  position: absolute;
  top: -84px;
  left: calc(50% - 40px);
  background-image: url(../images/column04_beforeImg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.careerSupport__column details summary:before {
    width: 72px;
    height: 72px;
    top: -72px;
    left: auto;
    right: 10%;
  }
}
@media screen and (min-width: 770px) {
  html .wrapper .main .content .columnArea.careerSupport__column details summary:hover {
    transition: 0.4s ease all;
    background-color: #eee;
  }
}
html .wrapper .main .content .columnArea.careerSupport__column details[open] summary {
  position: relative;
  transition: all 0.4s;
  background-color: white;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.careerSupport__column details[open] summary {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .content .columnArea.careerSupport__column details[open] summary {
    font-size: 1.3rem;
  }
}
html .wrapper .main .content .columnArea.careerSupport__column details[open] summary:before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 90px;
  position: absolute;
  top: -82px;
  left: calc(50% - 40px);
  background-image: url(../images/column04_beforeImg_op.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
  transform: translateX(-10px);
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.careerSupport__column details[open] summary:before {
    width: 72px;
    height: 72px;
    top: -72px;
    bottom: 0;
    left: auto;
    right: 10%;
  }
}
html .wrapper .main .content .details {
  margin: 100px auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .details {
    margin: 10.66vw 5%;
  }
}
html .wrapper .main .content .details .summary {
  max-width: 720px;
  margin: 0 auto 40px;
  position: relative;
  line-height: 44px;
  border: 2px solid #212121;
  border-left: 0;
  border-right: 0;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #212121;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .content .details .summary {
    height: auto;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .details .summary {
    height: auto;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 6.4vw;
    padding: 4px 0;
  }
}
html .wrapper .main .content .details .summary .column__ttl {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: bold;
  padding-right: 1em;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .content .details .summary .column__ttl {
    margin-bottom: -4px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .details .summary .column__ttl {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    top: 10px;
    left: 10px;
  }
}
html .wrapper .main .content .details .summary .column__ttl:before {
  content: url("../images/column_dot.svg");
  position: absolute;
  left: 24px;
  top: 0px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .details .summary .column__ttl:before {
    top: 10px;
    left: 10px;
  }
}
html .wrapper .main .content .details .summary span.columnBtn {
  position: absolute;
  right: 26px;
  top: 9px;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #212121;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .details .summary span.columnBtn {
    right: 10px;
    top: 8px;
  }
}
html .wrapper .main .content .columnArea.course__column .details .summary {
  position: relative;
}
html .wrapper .main .content .columnArea.course__column .details .summary:before {
  content: "";
  display: inline-block;
  width: 84px;
  height: 84px;
  position: absolute;
  top: -72px;
  left: calc(50% - 40px);
  background-image: url(../images/column01_beforeImg_op.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.course__column .details .summary:before {
    width: 72px;
    height: 72px;
    top: -64px;
    bottom: 0;
    left: auto;
    right: 10%;
  }
}
html .wrapper .main .content .columnArea.curriculum__column .details .summary {
  position: relative;
}
html .wrapper .main .content .columnArea.curriculum__column .details .summary:before {
  content: "";
  display: inline-block;
  width: 84px;
  height: 84px;
  position: absolute;
  top: -76px;
  left: calc(50% - 40px);
  background-image: url(../images/column02_beforeImg_op.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.curriculum__column .details .summary:before {
    width: 72px;
    height: 72px;
    top: -68px;
    bottom: 0;
    left: auto;
    right: 10%;
  }
}
html .wrapper .main .content .columnArea.schoolLife__column .details .summary {
  position: relative;
}
html .wrapper .main .content .columnArea.schoolLife__column .details .summary:before {
  content: "";
  display: inline-block;
  width: 84px;
  height: 84px;
  position: absolute;
  top: -72px;
  left: calc(50% - 40px);
  background-image: url(../images/column03_beforeImg_op.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.schoolLife__column .details .summary:before {
    width: 72px;
    height: 72px;
    top: -62px;
    bottom: 0;
    left: auto;
    right: 10%;
  }
}
html .wrapper .main .content .columnArea.careerSupport__column .details .summary {
  position: relative;
}
html .wrapper .main .content .columnArea.careerSupport__column .details .summary:before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 84px;
  position: absolute;
  top: -84px;
  left: calc(50% - 40px);
  background-image: url(../images/column03_beforeImg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .content .columnArea.careerSupport__column .details .summary:before {
    width: 72px;
    height: 72px;
    top: -72px;
    left: auto;
    right: 10%;
  }
}
@media screen and (max-width: 926px) {
  html .wrapper .main .course h2 {
    margin-top: 28vw;
  }
}
html .wrapper .main .course .course__box {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5% 60px;
  gap: 5%;
  margin: 0 auto;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .course .course__box {
    display: block;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .course__box {
    padding-bottom: 0;
  }
}
html .wrapper .main .course .course__box .course__txtArea {
  margin-top: 40px;
}
html .wrapper .main .course .course__box .course__txtArea .course__num {
  color: #E33092;
  font-size: 32px;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: 400;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .course__box .course__txtArea .course__num {
    font-size: 2rem;
  }
}
html .wrapper .main .course .course__box .course__txtArea h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .course__box .course__txtArea h3 {
    font-size: 1.8rem;
  }
}
html .wrapper .main .course .course__box .course__txtArea .course__underline {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #212121;
  margin: 30px 0;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .course .course__box .course__txtArea .course__underline {
    margin: 20px 0;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .course__box .course__txtArea .course__underline {
    margin: 4vw 0;
  }
}
html .wrapper .main .course .course__box .course__txtArea p {
  line-height: 1.7;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .course__box .course__txtArea p {
    font-size: 1.5rem;
    margin-bottom: 1em;
  }
}
html .wrapper .main .course .course__box .course__imgArea {
  height: auto;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .course .course__box .course__imgArea {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .course__box .course__imgArea {
    margin: 5.33vw auto 0;
    padding: 0;
  }
}
html .wrapper .main .course .course__box .course__imgArea img {
  display: block;
  max-width: 440px;
  height: auto;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .course .course__box .course__imgArea img {
    max-width: none;
    width: 100%;
    height: auto;
  }
}
html .wrapper .main .course .course__box:nth-of-type(2n-1) {
  flex-direction: row-reverse;
}
html .wrapper .main .course .course__box:nth-of-type(4) {
  padding-bottom: 0;
}
html .wrapper .main .course .columnArea {
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .columnArea {
    padding-top: 10.66vw;
  }
}
html .wrapper .main .course .columnArea ul {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
html .wrapper .main .course .columnArea ul li {
  margin-bottom: 20px;
}
html .wrapper .main .course .columnArea ul li img {
  display: block;
  margin: 0 auto;
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .columnArea ul {
    justify-content: center;
  }
  html .wrapper .main .course .columnArea ul::after {
    content: "";
    display: block;
    width: calc(256px + 10.4vw);
    height: auto;
  }
  html .wrapper .main .course .columnArea ul li img {
    margin: 1.3vw 2.6vw;
  }
}
html .wrapper .main .course .columnArea small.notes {
  display: block;
  text-align: right;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .columnArea small.notes {
    text-align: justify;
    padding: 0 4vw;
  }
}
html .wrapper .main .course .columnArea .course__button {
  display: block;
  background-color: #212121;
  border-radius: 24px;
  margin: 40px auto;
  color: white;
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
  padding-right: 8px;
  width: 300px;
  height: 48px;
  line-height: 48px;
  position: relative;
}
html .wrapper .main .course .columnArea .course__button::before {
  content: "";
  width: 296px;
  height: 44px;
  border-radius: 24px;
  border: solid 2px #e2e2e2;
  position: absolute;
  top: -2px;
  left: 0;
  transition: all 0.2s ease-out;
}
@media screen and (min-width: 770px) {
  html .wrapper .main .course .columnArea .course__button:hover {
    transition: all 0.4s ease-out;
    transform: translateY(4px);
    background-color: rgba(33, 33, 33, 0.9);
  }
  html .wrapper .main .course .columnArea .course__button:hover::before {
    transition: all 0.4s ease-out;
    transform: translateY(-4px);
  }
  html .wrapper .main .course .columnArea .course__button:hover::after {
    transition: all 0.4s ease-out;
    transform: rotate(-270deg);
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .columnArea .course__button {
    margin: 8vw auto 0;
    width: 69.33vw;
    height: 44px;
    font-size: 1.3rem;
    line-height: 44px;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  html .wrapper .main .course .columnArea .course__button {
    width: 240px;
    height: 48px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .columnArea .course__button::before {
    content: "";
    width: calc(69.33vw - 4px);
    height: 4px;
    border-radius: 24px;
    border: solid 2px #e2e2e2;
    position: absolute;
    top: -4px;
    left: 0;
    transition: all 0.2s ease-out;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  html .wrapper .main .course .columnArea .course__button::before {
    width: 240px;
    height: 48px;
    left: -2px;
  }
}
html .wrapper .main .course .columnArea .course__button::after {
  content: url("../images/button_pass.svg");
  position: absolute;
  right: 24px;
  top: 2px;
  transform: rotate(90deg);
}
@media screen and (max-width: 769px) {
  html .wrapper .main .course .columnArea .course__button::after {
    top: 0;
    scale: 0.9;
  }
}
html .wrapper .main .curriculum {
  max-width: 1000px;
  margin: 0 auto;
}
html .wrapper .main .curriculum .curriculum__wrap {
  padding: 0 4vw;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap {
    margin: 60px 4vw 0;
    padding: 0;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box {
  display: flex;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box {
    margin-top: 10.66vw;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__box:not(:first-of-type) .curriculum__months .left__wrap {
  margin-top: -110px;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__course02 {
  margin-top: 60px;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months {
  position: relative;
  margin-right: 54px;
  margin-top: -30px;
  padding-bottom: 20px;
}
@media screen and (min-width: 570px) and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months {
    width: 14vw;
    height: auto;
    margin-right: 4vw;
    padding-top: 4px;
  }
}
@media only screen and (max-width: 569px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months {
    width: 20vw;
    height: auto;
    margin-right: 4vw;
    padding-top: 4px;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months .left__wrap {
  height: calc(100% + 110px);
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months .left__wrap img {
  width: 126px;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months .left__wrap img {
    width: 100%;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months .left__wrap06 {
  height: 100%;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months._show {
  opacity: 1;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__months._show img {
  opacity: 1;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt {
    width: 66.66vw;
    margin-bottom: 0;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curr__choice {
  display: inline-block;
  background-color: #212121;
  color: #fff;
  padding: 0.02em 0.6em 0.1em;
  border-radius: 1.6em;
  margin-bottom: 8px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curr__choice {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    padding: 0.1em 0.6em 0.2em;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt h3 {
    font-size: 1.8rem;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__underline {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #212121;
  margin: 30px 0;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__underline {
    margin: 4vw 0;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt strong {
  display: block;
  font-size: 20px;
  padding-bottom: 30px;
  font-weight: 500;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt strong {
    font-size: 1.4rem;
    padding-bottom: 5.3vw;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt p {
  line-height: 2;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt p:nth-of-type(2) {
  padding-top: 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt p {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 {
  display: flex;
  align-items: flex-start;
  margin: 36px auto 60px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 {
    display: block;
    margin: 4.6vw auto;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__icon {
  display: flex;
  flex-wrap: wrap;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__icon img {
  display: block;
  width: 54px;
  height: auto;
  padding: 0 4px 8px 0;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__icon img {
    width: 8vw;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__img {
  margin-left: auto;
  max-width: 400px;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__img {
    max-width: 320px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__img {
    margin-top: 3.2vw;
    max-width: none;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__txt02 .curriculum__img img {
  display: block;
  width: 100%;
  height: auto;
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__graduate {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__graduate {
    display: block;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__graduate li {
  width: 49%;
  height: auto;
  padding-bottom: 16px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__graduate li {
    width: 100%;
  }
}
html .wrapper .main .curriculum .curriculum__wrap .curriculum__box .curriculum__txt .curriculum__graduate li img {
  display: block;
  width: 100%;
}
html .wrapper .main .curriculum .columnArea {
  max-width: 720px;
  margin: 0 auto;
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul {
  position: relative;
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li {
  position: absolute;
  z-index: 10;
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li img {
  display: block;
  width: 66%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li img {
    width: 100%;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(1) {
  top: 22px;
  left: 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(1) {
    width: 32vw;
    top: 2vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(2) {
  top: 18px;
  right: -60px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(2) {
    width: 38.6vw;
    top: 2.4vw;
    right: 4vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(3) {
  top: 108px;
  left: -36px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(3) {
    width: 29.8vw;
    left: -1vw;
    top: 15.8vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(4) {
  top: 110px;
  right: -110px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(4) {
    width: 25.6vw;
    right: 2vw;
    top: 14vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(5) {
  top: 280px;
  left: 0px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(5) {
    width: 39.6vw;
    top: 36vw;
    left: 8vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(6) {
  top: 252px;
  right: -102px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent ul li:nth-of-type(6) {
    width: 39.6vw;
    top: 29vw;
    right: 0;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_imgBg {
  padding-top: 40px;
  margin: 0 auto 66px;
  max-width: 472px;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_imgBg {
    width: 44vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_imgBg img {
  display: block;
  width: 100%;
  height: auto;
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt {
  margin-left: auto;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt {
    width: 80vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt h4 {
  text-align: right;
  max-width: 530px;
}
@media only screen and (max-width: 380px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt h4 {
    padding-top: 0vw;
  }
}
@media only screen and (max-width: 576px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt h4 {
    padding-top: 8vw;
  }
}
@media only screen and (min-width: 577px) and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt h4 {
    padding-top: 13vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt h4 img {
  width: 100%;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt h4 img {
    width: 80vw;
  }
}
html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt p {
  text-align: right;
  margin-left: auto;
  max-width: 100%;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .curriculum .columnArea .curriculum__columnContent .column02_txt p img {
    width: 72%;
    margin-top: -20px;
  }
}
html .wrapper .main .schoolLife .schoolLife__box {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .schoolLife .schoolLife__box {
    display: block;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .schoolLife__box {
    margin: 0 5%;
    padding-bottom: 0;
  }
}
html .wrapper .main .schoolLife .schoolLife__box .slick {
  padding: 0 40px 0;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .schoolLife__box .slick {
    width: 100%;
    padding: 0;
  }
}
html .wrapper .main .schoolLife .schoolLife__box .slick .slick__img {
  width: 100%;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .schoolLife .schoolLife__box .slick .slick__img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .schoolLife__box .slick .slick__img {
    width: 100%;
  }
}
html .wrapper .main .schoolLife .schoolLife__box .slick .slick__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .schoolLife__box .slick .slick__img img {
    width: 100%;
  }
}
html .wrapper .main .schoolLife .schoolLife__box p {
  letter-spacing: 0.06em;
  line-height: 2;
  position: absolute;
  display: inline-block;
  top: 4%;
  right: 0;
  width: 40%;
  padding-left: 2%;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .schoolLife .schoolLife__box p {
    position: static;
    width: auto;
    padding-left: 80px;
    font-size: 16px;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .schoolLife__box p {
    font-size: 1.3rem;
    padding-left: 4%;
  }
}
html .wrapper .main .schoolLife .schoolLife__box p span {
  display: block;
  padding-bottom: 16px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .schoolLife__box {
    display: block;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl {
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl {
    padding-top: 2.4vw;
  }
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl:nth-of-type(2) {
    margin-bottom: 6.4vw;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dt {
  font-weight: 700;
  letter-spacing: 0.06em;
  max-width: 208px;
  line-height: 2;
  text-align: center;
  margin: 0 auto 60px;
  border-radius: 20px;
  position: relative;
  font-size: 24px;
  color: #E33092;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dt {
    width: 39vw;
    height: auto;
    margin-bottom: 3.2vw;
    font-weight: 500;
    font-size: 2rem;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dt::before {
  content: "";
  display: block;
  background-color: #E33092;
  position: absolute;
  width: 180px;
  height: 2px;
  top: 50%;
  left: -246px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dt::before {
    width: 24vw;
    left: -24vw;
    height: 1px;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dt::after {
  content: "";
  display: block;
  background-color: #E33092;
  position: absolute;
  width: 180px;
  height: 2px;
  top: 50%;
  right: -246px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dt::after {
    width: 24vw;
    right: -24vw;
    height: 1px;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li {
  display: flex;
  max-width: 680px;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li {
    display: block;
    margin-bottom: 6.4vw;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_img {
  vertical-align: bottom;
  line-height: 0;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_img img {
    width: 100%;
    height: auto;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt {
  display: flex;
  justify-content: space-between;
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt .column03__num {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  color: #E33092;
  font-size: 24px;
  font-weight: 400;
  padding-left: 28px;
  padding-right: 14px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt .column03__num {
    padding: 0;
    font-size: 2rem;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt div h3 {
  font-size: 18px;
  font-weight: 500;
  padding-top: 4.5px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt div h3 {
    font-size: 1.8rem;
    padding-top: 0;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt div p {
  margin-top: 16px;
  line-height: 1.69;
  font-weight: 300;
  font-size: 13px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt div p {
    font-size: 1.3rem;
    margin: 3.46vw auto 4vw;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li .column03_txt {
    display: block;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl dd ul li {
    display: block;
    width: 100%;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl:nth-of-type(1) dd ul li {
  flex-direction: row-reverse;
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl:nth-of-type(2) dd ul li .column03_txt {
  padding-right: 28px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl:nth-of-type(2) dd ul li .column03_txt {
    padding-right: 0;
  }
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent dl:nth-of-type(2) dd ul li .column03_txt span {
  padding-left: 0;
}
html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent .notes {
  display: block;
  text-align: right;
  padding-right: 28px;
  display: block;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .schoolLife .columnArea .schoolLife__columnContent .notes {
    padding: 0;
    text-align: left;
  }
}
html .wrapper .main .careerSupport .career__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4vw;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content {
    margin: 0 auto 3.2vw;
    padding: 0;
  }
}
html .wrapper .main .careerSupport .career__content h3 {
  text-align: center;
  border-bottom: solid 2px #212121;
  padding-bottom: 4px;
  line-height: 42px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin: 0 20px 20px;
}
html .wrapper .main .careerSupport .career__content h3 span {
  color: #212121;
  padding-right: 0.5em;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content h3 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: solid 1px #E33092;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  html .wrapper .main .careerSupport .career__content h3 span {
    padding-right: 0.25em;
  }
}
html .wrapper .main .careerSupport .career__content figure {
  margin: 60px auto 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content figure {
    margin: 5.3vw auto 0;
  }
}
html .wrapper .main .careerSupport .career__content figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content figure img {
    width: 100%;
  }
}
html .wrapper .main .careerSupport .career__content p {
  padding: 20px;
  margin: 10px 20px;
  line-height: 1.8;
  font-size: 13px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content p {
    font-size: 1.2rem;
    padding: 0 2vw;
    margin: 3.2vw 4vw 6.3vw;
  }
}
html .wrapper .main .careerSupport .career__content p span {
  display: block;
  height: 1em;
}
html .wrapper .main .careerSupport dl {
  margin-top: 40px;
  margin-bottom: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl {
    padding-top: 2.4vw;
  }
}
html .wrapper .main .careerSupport dl dt {
  color: #E33092;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  margin: 40px auto 60px;
  position: relative;
  font-size: 24px;
  max-width: 208px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dt {
    margin: 0 auto 3.2vw;
  }
}
html .wrapper .main .careerSupport dl dt::before {
  content: "";
  display: block;
  background-color: #E33092;
  position: absolute;
  width: 180px;
  height: 2px;
  top: 50%;
  left: -246px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dt::before {
    width: 24vw;
    left: -24vw;
    height: 1px;
  }
}
html .wrapper .main .careerSupport dl dt::after {
  content: "";
  display: block;
  background-color: #E33092;
  position: absolute;
  width: 180px;
  height: 2px;
  top: 50%;
  right: -246px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dt::after {
    width: 24vw;
    right: -24vw;
    height: 1px;
  }
}
html .wrapper .main .careerSupport dl dt .career__subTtl {
  padding: 0 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dt {
    width: 39vw;
    font-size: 1.8rem;
    margin-bottom: 5.73vw;
    font-weight: 500;
  }
}
html .wrapper .main .careerSupport dl dd {
  max-width: 720px;
  margin: 0 auto;
}
html .wrapper .main .careerSupport dl dd ul {
  padding-bottom: 14px;
}
html .wrapper .main .careerSupport dl dd ul li {
  display: flex;
  max-width: 820px;
  height: auto;
  margin: 0 auto 50px;
}
html .wrapper .main .careerSupport dl dd ul li .column03_img {
  vertical-align: bottom;
  line-height: 0;
}
html .wrapper .main .careerSupport dl dd ul li .column03_img img {
  width: 168px;
  height: 125px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_img img {
    width: 100%;
    height: auto;
  }
}
html .wrapper .main .careerSupport dl dd ul li .column03_txt {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_txt {
    display: block;
    margin: 0 5%;
    padding: 0 2vw;
  }
}
html .wrapper .main .careerSupport dl dd ul li .column03_txt .column03__num {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  color: #E33092;
  font-size: 24px;
  font-weight: 400;
  padding-right: 14px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_txt .column03__num {
    padding: 0;
    font-size: 2rem;
  }
}
html .wrapper .main .careerSupport dl dd ul li .column03_txt div {
  padding-right: 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_txt div {
    padding: 0;
  }
}
html .wrapper .main .careerSupport dl dd ul li .column03_txt div h4 {
  font-size: 18px;
  font-weight: 500;
  padding-top: 4.5px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_txt div h4 {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-top: 0;
  }
}
html .wrapper .main .careerSupport dl dd ul li .column03_txt div h4 span {
  font-size: 13px;
  display: inline-block;
  color: #fff;
  background-color: #E33092;
  padding: 0 0.8em 0.1em;
  border-radius: 1.6em;
  margin-left: 1em;
  margin-top: -2px;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_txt div h4 span {
    padding: 0 0.6em;
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-left: 0.5em;
  }
}
html .wrapper .main .careerSupport dl dd ul li .column03_txt div p {
  margin-top: 16px;
  line-height: 1.69;
  font-weight: 300;
  font-size: 13px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li .column03_txt div p {
    font-size: 1.3rem;
    margin: 3.46vw auto 4vw;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport dl dd ul li {
    display: block;
    width: auto;
    margin-bottom: 10.66vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent {
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid #212121;
  border-top: none;
  padding: 40px;
  border-radius: 0 0 12px 12px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent {
    width: 98%;
    padding: 4vw 1vw;
    margin-top: 4vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol {
  position: relative;
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol:before {
  content: "";
  width: 3px;
  height: 580px;
  position: absolute;
  background-color: #E33092;
  top: 16px;
  left: 87px;
  z-index: 10;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol:before {
    height: 100%;
    left: 10rem;
  }
}
@media only screen and (max-width: 556px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol:before {
    left: 8.6rem;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li {
  display: flex;
  margin-bottom: 32px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li {
    margin-bottom: 18px;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__num {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: 500;
  font-size: 24px;
  text-align: justify;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__num {
    padding-left: 3vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__num:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 9px;
  background-color: #E33092;
  position: absolute;
  top: 14px;
  left: 84px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__num:before {
    top: 0.5em;
    left: 9.7rem;
  }
}
@media only screen and (max-width: 556px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__num:before {
    left: 8.3rem;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__txt {
  padding-top: 3px;
  padding-left: 60px;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__txt {
    font-size: 1.3rem;
    padding-left: 10vw;
    padding-right: 4vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li .column04__txt span {
  display: block;
  height: 1em;
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li:nth-of-type(2) .column04__txt {
  padding-left: 50px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li:nth-of-type(2) .column04__txt {
    padding-left: 8.4vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent ol li:nth-of-type(3) .column04__txt {
  padding-left: 50px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li:nth-of-type(3) .column04__txt {
    padding-left: 8.4vw;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent ol li:nth-of-type(4) .column04__txt {
    padding-left: 10vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent figure {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .careerSupport__columnContent figure {
    width: auto;
    margin: 0 4vw;
  }
}
html .wrapper .main .careerSupport .careerSupport__columnContent figure img {
  width: 100%;
  height: auto;
}
html .wrapper .main .careerSupport .career__content--step {
  padding: 60px 0;
  background-image: url(../images/step_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content--step {
    padding: 10.66vw 0;
    margin: 0;
  }
}
html .wrapper .main .careerSupport .career__content--step figure {
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content--step figure {
    width: 100%;
  }
}
html .wrapper .main .careerSupport .career__content--step figure img {
  width: 100%;
  padding-left: 40px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .careerSupport .career__content--step figure img {
    padding-left: 0;
  }
}
html .wrapper .main .faq details {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .faq details {
    margin: 0 4vw;
  }
}
html .wrapper .main .faq details summary {
  border-radius: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  text-align: left;
  height: auto;
  line-height: 1.6;
  padding: 24px 0;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details summary {
    padding: 1.2rem 2%;
  }
}
html .wrapper .main .faq details summary .question__summary {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details summary .question__summary {
    padding-right: 13vw;
  }
}
html .wrapper .main .faq details summary .question__summary span.question {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: 500;
  font-size: 24px;
  margin: 0 30px 0 60px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details summary .question__summary span.question {
    font-size: 2.4rem;
    margin: 0 4vw;
  }
}
html .wrapper .main .faq details summary .question__summary span.question__ttl {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details summary .question__summary span.question__ttl {
    font-size: 1.6rem;
  }
}
html .wrapper .main .faq details summary span.columnBtn {
  top: 50%;
  transform: translateY(calc(50% - 28px));
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details summary span.columnBtn {
    transform: translateY(calc(50% - 38px));
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .faq details summary span.columnBtn {
    transform: translateY(calc(50% - 32px));
  }
}
html .wrapper .main .faq details summary .plus {
  top: calc(50% - 8px);
}
html .wrapper .main .faq details summary .minus {
  top: calc(50% - 1px);
}
html .wrapper .main .faq details .answer__box {
  display: flex;
  align-items: start;
  background-color: #F5F5F7;
  padding: 24px 0;
  font-size: 16px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details .answer__box {
    font-size: 1.6rem;
    margin-top: 2.4rem;
    padding: 2.4rem 2%;
  }
}
html .wrapper .main .faq details .answer__box span.answer {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: bold;
  font-size: 24px;
  margin: 0 30px 0 60px;
  color: #E33092;
  line-height: 1;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details .answer__box span.answer {
    font-size: 2.4rem;
    margin: 0 4vw;
  }
}
html .wrapper .main .faq details .answer__box .answer__txt {
  margin-right: 60px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details .answer__box .answer__txt {
    margin-right: 4vw;
  }
}
html .wrapper .main .faq details[open] summary {
  border-radius: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  text-align: left;
  padding: 24px 0;
  line-height: 1.6;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details[open] summary {
    padding: 1.2rem 2%;
  }
}
html .wrapper .main .faq details[open] summary span.columnBtn {
  top: 50%;
  transform: translateY(calc(50% - 28px));
}
@media screen and (max-width: 769px) {
  html .wrapper .main .faq details[open] summary span.columnBtn {
    transform: translateY(calc(50% - 38px));
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .faq details[open] summary span.columnBtn {
    transform: translateY(calc(50% - 32px));
  }
}
html .wrapper .main .faq details[open] summary .minus {
  top: calc(50% - 1px);
}
html .wrapper .main .faq details:nth-last-of-type(1) {
  border-bottom: 2px solid #212121;
}
html .wrapper .main .faq details:nth-last-of-type(1) .answer__box a {
  color: #212121;
  font-weight: 600;
  border-bottom: 1px solid #212121;
  transition: 0.4s ease;
}
@media screen and (min-width: 770px) {
  html .wrapper .main .faq details:nth-last-of-type(1) .answer__box a:hover {
    color: #E33092;
    border-bottom: 1px solid #E33092;
  }
}
html .wrapper .main .campus .campus__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2%;
  display: grid;
  place-items: stretch center;
  grid-template-columns: repeat(2, auto);
  gap: 4%;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .campus .campus__content {
    gap: 2.5%;
    grid-auto-flow: row;
  }
}
html .wrapper .main .campus .campus__content .campus__list {
  max-width: 90%;
}
@media screen and (max-width: 926px) {
  html .wrapper .main .campus .campus__content .campus__list {
    max-width: 36vw;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list {
    max-width: 42vw;
    margin-bottom: 10.66vw;
  }
}
html .wrapper .main .campus .campus__content .campus__list figure {
  margin: 0 auto;
  height: auto;
}
html .wrapper .main .campus .campus__content .campus__list figure img {
  display: block;
  width: 100%;
  height: auto;
}
html .wrapper .main .campus .campus__content .campus__list h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 20px auto 30px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list h3 {
    font-size: 1.8rem;
    margin: 3.2vw 2.3vw;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .campus .campus__content .campus__list h3 {
    font-size: 1.4rem;
  }
}
html .wrapper .main .campus .campus__content .campus__list address {
  margin: 0 13px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address {
    margin: 0 5%;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper {
    margin: 0 auto;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li {
  margin-bottom: 10px;
  font-size: 13px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li {
    letter-spacing: 0.05em;
    font-size: 1.3rem;
    margin-bottom: 1.5vw;
    line-height: 1.5;
    padding-right: 0;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li {
    font-size: 1.1rem;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) {
  font-size: 15px;
  position: relative;
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a {
  font-weight: 700;
  padding-left: 26px;
  color: #212121;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a {
    font-size: 1.3rem;
    padding-left: 2.6rem;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a {
    font-size: 1.1rem;
    padding-left: 2.2rem;
  }
}
@media screen and (min-width: 770px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a:hover {
    transition: 0.4s all;
    color: #E33092;
  }
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a:hover:after {
    transition: 0.4s all;
    background-color: #E33092;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a span {
  position: absolute;
  left: 0px;
  top: 4px;
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a span img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a span img {
    width: 1.3em;
    height: auto;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a::after {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  width: 86%;
  right: 0;
  background-color: #212121;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(1) a::after {
    width: 84%;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) {
  font-weight: 700;
  padding-left: 26px;
  margin-bottom: 36px;
  font-size: 15px;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) {
    font-size: 1.3rem;
    margin-bottom: 4.26vw;
    padding-left: 0;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) a {
  display: inline-block;
  font-weight: 700;
  color: #212121;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) a {
    letter-spacing: 0.05em;
    padding-left: 2.6rem;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) a {
    font-size: 1.2rem;
    padding-left: 2.3rem;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) a .phone__icon {
  position: absolute;
  left: 0px;
  top: 0px;
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) a .phone__icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) a .phone__icon img {
    width: 1.3rem;
    height: auto;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) .dayOff {
  font-size: 13px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .address__wrapper li:nth-of-type(2) .dayOff {
    font-size: 1.1rem;
    padding-left: 2.6rem;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .campus__map {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  position: relative;
  transition: 0.2s ease-out;
}
html .wrapper .main .campus .campus__content .campus__list address .campus__map::after {
  content: url("../images/button_pass_b.svg");
  transform: scale(0.8);
  position: absolute;
  top: 0.1em;
  right: 0.3em;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .campus__map::after {
    transform: scale(0.7);
    top: 0.12em;
  }
}
@media screen and (min-width: 770px) {
  html .wrapper .main .campus .campus__content .campus__list address .campus__map:hover a {
    transition: 0.2s ease-out;
    color: #E33092;
    border-bottom: solid 1px #E33092;
  }
  html .wrapper .main .campus .campus__content .campus__list address .campus__map:hover::after {
    transition: 0.2s ease-out;
    content: url("../images/button_pass_p.svg");
    position: absolute;
    top: 0.1em;
    right: 0.3em;
  }
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .campus__map span {
    display: block;
    height: 1.2em;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .campus .campus__content .campus__list address .campus__map {
    margin-top: 14px;
  }
}
html .wrapper .main .campus .campus__content .campus__list address .campus__map a {
  color: #212121;
  font-weight: 500;
  border-bottom: solid 1px #212121;
  padding-right: 16px;
}
@media screen and (max-width: 769px) {
  html .wrapper .main .campus .campus__content .campus__list address .campus__map a {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 456px) {
  html .wrapper .main .campus .campus__content .campus__list address .campus__map a {
    font-size: 1.1rem;
  }
}
html .wrapper footer {
  margin-top: 120px;
}
@media screen and (max-width: 769px) {
  html .wrapper footer {
    margin-top: 9.86vw;
  }
}
html .wrapper footer .footer__floatBtn {
  background-image: url("../images/footer_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  min-height: 200px;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn {
    min-height: 49.6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 50px 0 10px;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea {
    display: block;
    padding: 20px 0 10px;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea a {
  display: block;
  width: 300px;
  height: 60px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 58px;
  border-radius: 60px;
  margin: 0 0 20px;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea a {
    width: 240px;
    height: 48px;
    line-height: 48px;
    margin: 5.2vw auto;
    font-size: 1.3rem;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu {
  color: #E33092;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 928px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu:hover {
    transition: all 0.4s ease-out;
    transform: translateY(6px);
  }
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu:hover::before {
    transform: translateY(-6px);
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu::after {
  content: url("../images/button_pass_p.svg");
  position: absolute;
  right: 32px;
  top: -1px;
  vertical-align: baseline;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu::after {
    scale: 0.9;
    top: 0;
    right: 16px;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu::before {
  content: "";
  width: 296px;
  height: 56px;
  border-radius: 60px;
  border: solid 2px #E33092;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu::before {
    width: 240px;
    height: 48px;
    top: -2px;
    left: -2px;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu span {
  display: block;
  position: relative;
  margin: 0;
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu span::before {
  content: url("../images/seikyu_fotImg.svg");
  position: absolute;
  width: 88px;
  height: 88px;
  bottom: 50px;
  left: 32px;
  z-index: -4;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(20px) rotate(-15deg);
}
@media screen and (max-width: 924px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu span::before {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu span::before {
    opacity: 1;
    scale: 0.6;
    left: auto;
    right: calc(100% - 30px);
    bottom: 0px;
    transform: translateY(0) rotate(-10deg);
  }
}
@media screen and (min-width: 770px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu:hover span {
    display: block;
    position: relative;
    margin: 0;
  }
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__seikyu:hover span::before {
    content: url("../images/seikyu_fotImg.svg");
    position: absolute;
    width: 88px;
    height: 88px;
    bottom: 48px;
    left: 32px;
    z-index: -4;
    transition: all 0.4s;
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei {
  color: #fff;
  background-color: #E33092;
  position: relative;
}
@media screen and (min-width: 928px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei:hover {
    transition: all 0.4s ease-out;
    transform: translateY(6px);
  }
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei:hover::before {
    transform: translateY(-6px);
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei::after {
  content: url("../images/button_pass.svg");
  position: absolute;
  right: 32px;
  top: -1px;
  vertical-align: baseline;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei::after {
    scale: 0.9;
    top: 0;
    right: 16px;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei::before {
  content: "";
  width: 296px;
  height: 56px;
  border-radius: 60px;
  border: solid 2px #e2e2e2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei::before {
    width: 240px;
    height: 48px;
    top: -2px;
    left: -2px;
  }
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei span {
  display: block;
  position: relative;
  margin: 0;
}
html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei span::before {
  content: url("../images/setsumei_fotImg.svg");
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 40px;
  right: 32px;
  z-index: -4;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(20px) rotate(15deg);
}
@media screen and (max-width: 926px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei span::before {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei span::before {
    opacity: 1;
    scale: 0.65;
    left: calc(100% - 30px);
    bottom: 0;
    transform: translateY(0) rotate(10deg);
  }
}
@media screen and (min-width: 770px) {
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei:hover span {
    display: block;
    position: relative;
    margin: 0;
  }
  html .wrapper footer .footer__floatBtn .footer__btnArea .footer__setsumei:hover span::before {
    content: url("../images/setsumei_fotImg.svg");
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 40px;
    right: 32px;
    z-index: -4;
    transition: all 0.4s;
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
html .wrapper footer .footer__floatBtn--SP {
  height: 60px;
  width: 100%;
  position: fixed;
  bottom: 3%;
  right: 0;
  border-radius: 60px 60px 0 60px;
  display: flex;
  z-index: 9997;
  font-size: 1.5rem;
}
html .wrapper footer .footer__floatBtn--SP.is-hidden {
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}
html .wrapper footer .footer__floatBtn--SP .siryo {
  display: flex;
  align-items: center;
  width: 50%;
  height: 100%;
  background-color: #fffaff;
  color: #E33092;
  position: relative;
  margin-left: 2%;
  border-radius: 32px 32px 0 32px;
}
html .wrapper footer .footer__floatBtn--SP .siryo::after {
  content: "";
  border: solid 2px #E33092;
  position: absolute;
  bottom: 0;
  left: -2px;
  border-radius: 28px 32px 4px 40px;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
html .wrapper footer .footer__floatBtn--SP .siryo span {
  display: block;
  position: absolute;
  right: auto;
  left: calc(50% - 1rem);
  top: 26%;
  font-weight: 500;
}
html .wrapper footer .footer__floatBtn--SP .siryo span::before {
  content: url("../images/ico_seikyu_sp.svg");
  position: absolute;
  left: -4rem;
  bottom: -1rem;
  scale: 0.8;
}
html .wrapper footer .footer__floatBtn--SP .setsumei {
  display: flex;
  align-items: center;
  width: 50%;
  margin: 0 2%;
  height: 100%;
  background-color: #E33092;
  color: #fff;
  border-radius: 32px 32px 0 32px;
  position: relative;
  letter-spacing: 0.03em;
}
html .wrapper footer .footer__floatBtn--SP .setsumei::after {
  content: "";
  border: solid 2px #e2e2e2;
  position: absolute;
  bottom: 0;
  left: -2px;
  border-radius: 28px 32px 4px 40px;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
html .wrapper footer .footer__floatBtn--SP .setsumei span {
  display: block;
  position: absolute;
  left: calc(50% - 1.5rem);
  right: auto;
  top: 26%;
  font-weight: 500;
}
html .wrapper footer .footer__floatBtn--SP .setsumei span::before {
  content: url("../images/ico_setsumei_sp.svg");
  position: absolute;
  left: -4rem;
  bottom: -1rem;
  scale: 0.8;
}
html .wrapper footer .footer__backTop {
  position: fixed;
  bottom: 2%;
  right: 2%;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__backTop {
    bottom: 3%;
    left: 0;
  }
}
html .wrapper footer .footer__backTop .footer__backTopInner {
  display: block;
  width: 52px;
  height: 60px;
  border-radius: 0 20px 0 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: #212121;
  text-align: center;
  padding-top: 28px;
  font-size: 13px;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-weight: 500;
  z-index: 9998;
  position: relative;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__backTop .footer__backTopInner {
    scale: 1;
    color: white;
    background-color: #212121;
    border-radius: 0 32px 0 0;
  }
}
html .wrapper footer .footer__backTop .footer__backTopInner:after {
  content: url("../images/button_pass_b.svg");
  position: absolute;
  top: 16px;
  left: calc(50% - 3.5px);
  scale: 1.4;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .footer__backTop .footer__backTopInner:after {
    content: url("../images/button_pass.svg");
    scale: 1;
  }
}
@media screen and (min-width: 770px) {
  html .wrapper footer .footer__backTop .footer__backTopInner:hover {
    transition: 0.2s ease-out;
    color: white;
    background-color: #212121;
  }
  html .wrapper footer .footer__backTop .footer__backTopInner:hover:after {
    content: url("../images/button_pass.svg");
    position: absolute;
    top: 16px;
    left: calc(50% - 3.5px);
    scale: 1.4;
  }
}
html .wrapper footer .copyright {
  text-align: center;
  display: block;
  margin: 40px auto 40px;
  font-size: 14px;
}
@media screen and (max-width: 769px) {
  html .wrapper footer .copyright {
    margin: 4vw auto;
    font-size: 1.1rem;
  }
}

.announce__box {
  position: absolute;
  top: 34vw;
  left: 55vw;
  width: clamp(220px, 41.6666666667vw, 500px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 1em 1.5em;
  z-index: 10;
}
.announce__box p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.announce__box .f_bold {
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .announce__box {
    top: 109vw;
    left: 38vw;
  }
}

.txt_link {
  display: inline-block;
  color: #e43594;
  text-decoration: underline;
  padding-left: 0.8em;
  position: relative;
  transition: 0.3s all;
}
.txt_link::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0.6em;
  border-style: solid;
  border-top: 0.3em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.4em solid currentColor;
  border-right: 0;
}
.txt_link:hover {
  opacity: 0.7;
  transition: 0.3s all;
}

.footer__snsArea {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-bottom: 50px;
}
.footer__snsArea > li {
  width: 50px;
}
.footer__snsArea > li a {
  display: block;
  transition: 0.3s ease-in;
}
.footer__snsArea > li a:hover {
  opacity: 0.7;
  transition: 0.3s ease-in;
}
.footer__snsArea > li img {
  width: 100%;
}
@media screen and (max-width: 769px) {
  .footer__snsArea {
    padding-bottom: 20px;
  }
}

.event__row {
  width: min(1240px, 100%);
  display: flex;
  gap: 40px 6.6666666667%;
  padding: 0 20px 60px;
  margin: 0 auto;
}
.event__row .event__col {
  width: 46.6666666667%;
}
.event__row .event__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto min(40px, 5vw);
}
@media screen and (max-width: 769px) {
  .event__row {
    flex-direction: column;
    padding: 0 5% 60px;
  }
  .event__row .event__col {
    width: 100%;
  }
  .event__row .event__ttl {
    font-size: 1.4rem;
  }
}

.event__area > li {
  position: relative;
}
.event__area > li + li {
  margin-top: min(30px, 5vw);
  padding-top: min(30px, 5vw);
}
.event__area > li + li::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 0;
  border-top: 2px dotted #ccc;
  transform: translateX(-50%);
}
.event__area > li a {
  display: block;
  color: currentColor;
  transition: 0.3s ease-in;
}
.event__area > li a:hover {
  opacity: 0.7;
  transition: 0.3s ease-in;
}
.event__area > li .itemWrapper {
  display: flex;
  gap: 20px 4.8309178744%;
}
.event__area > li .itemWrapper .thumbnail {
  width: 39.61352657%;
}
.event__area > li .itemWrapper .textArea {
  width: 55.5555555556%;
}
.event__area > li .itemWrapper .date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 0 10px;
  background: #E33092;
  border-radius: 5px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .event__area > li .itemWrapper .date {
    font-size: 0.9rem;
  }
}
.event__area > li .itemWrapper .dateDate {
  font-size: 80%;
}
.event__area > li .itemWrapper .text {
  margin: min(20px, 4vw) 0 min(30px, 3vw);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .event__area > li .itemWrapper .text {
    font-size: 0.9rem;
  }
}
.event__area > li img {
  width: 100%;
  border-radius: 0 min(30px, 5vw) 0 0;
}
.event__area > li .detail {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8rem;
  padding-right: 10px;
  position: relative;
}
.event__area > li .detail::after {
  content: url(../images/button_pass_b.svg);
  transform: scale(0.8);
  position: absolute;
  top: 0.1em;
  right: 0;
}