@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Oswald:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


/* Animations */
@-webkit-keyframes bg-scrolling-reverse {
  100% { background-position: 50px 50px; }
}
@-moz-keyframes    bg-scrolling-reverse {
  100% { background-position: $50px 50px; }
}
@-o-keyframes      bg-scrolling-reverse {
  100% { background-position: 50px 50px; }
}
@keyframes bg-scrolling-reverse {
  100% { background-position: 50px 50px; }
}

@-webkit-keyframes bg-scrolling {
  0% { background-position: 50px 50px; }
}
@-moz-keyframes    bg-scrolling {
  0% { background-position: 50px 50px; }
}
@-o-keyframes      bg-scrolling {
  0% { background-position: 50px 50px; }
}
@keyframes         bg-scrolling {
  0% { background-position: 50px 50px; }
}
}

.home-infogame {
  position: relative;
}
.home-infogame .modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
}
.home-infogame .modal.active {
  display: block;
}
.home-infogame .modal img { width: 100%;}
.home-infogame .modal .btn-wrapper {
  max-width: 800px;
  width: 90%;
  margin-bottom: 10px;
}
.home-infogame .modal .js-close-btn {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.home-infogame .modal .js-close-btn::before,
.home-infogame .modal .js-close-btn::after {
  display: block;
  position: absolute;
  top: 0;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #fff;
}
.home-infogame .modal .js-close-btn::before {
  transform: rotate(45deg);
  right: 40%;
}
.home-infogame .modal .js-close-btn::after {
  transform: rotate(-45deg);
  left: 50%;
}
.home-infogame .modal .inner {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.home-infogame .modal .inner .modal-content {
  max-width: 800px;
  width: 90%;
  box-sizing: border-box;
  background-color: #fff;
}
.home-infogame .modal .modal-content .link_item {
  display: block;
}
.home-infogame .modal .modal-content .no-show {
  background-color: #fff;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-infogame .modal .modal-content .no-show input {
  margin-right: 10px;
}
.home-infogame .modal .modal-content .no-show input,
.home-infogame .modal .modal-content .no-show label {
  cursor: pointer;
  color: #000;
}
@media all and (max-width: 769px) {
  .home-infogame .modal .btn-wrapper {
    width: 80%;
    margin-bottom: 0px;
  }
  .home-infogame .modal .js-close-btn {
    width: 30px;
    height: 30px;
  }
  .home-infogame .modal .js-close-btn::before,
  .home-infogame .modal .js-close-btn::after {
    width: 3px;
  }
  .home-infogame .modal .inner .modal-content {
    width: 80%;
  }
  .home-infogame .modal .modal-content .no-show {
    height: 40px;
  }
  .home-infogame .modal .modal-content .no-show input,
  .home-infogame .modal .modal-content .no-show label {
    font-size: 15px;
  }
}


.modal.course-modal {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 400px;
  height: fit-content;
  aspect-ratio: 2 / 1;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10000;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.modal.course-modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.course-modal img { width: 100%;}
.modal.course-modal .btn-wrapper {
  width: 100%;
  margin-bottom: -15px;
}
.modal.course-modal .js-close-btn {
  display: block;
  background-color: #ccc;
  border-radius: 100vw;
  width: 35px;
  height: 35px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.modal.course-modal .js-close-btn::before,
.modal.course-modal .js-close-btn::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 70%;
  background-color: #000;
}
.modal.course-modal .js-close-btn::before {
  transform: rotate(45deg);
  right: 45%;
}
.modal.course-modal .js-close-btn::after {
  transform: rotate(-45deg);
  left: 48%;
}
.modal.course-modal .inner {
  position: relative;
  z-index: 0;
  top: inherit;
  right: inherit;
  bottom: 0;
  left: inherit;
  margin: auto;
  width: 100%;
  height: 100%;
  display: block;
}
.modal.course-modal .inner .modal-content {
  max-width: inherit;
  width: 98%;
}
.modal.course-modal .modal-content .link_item {
  display: block;
}
@media all and (max-width: 769px) {
	.modal.course-modal {
		bottom: 65px;
		width: 300px;
	}
	.modal.course-modal .btn-wrapper {
		width: 98%;
	}
	.modal.course-modal .js-close-btn {
		width: 25px;
		height: 25px;
	}
	.modal.course-modal .inner .modal-content {
		width: 96%;
	}
}


.home img {
  max-width: 100%;
  height: auto;
}
#home-ani {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
#home-ani_v2 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  z-index: -1;
/* img size is 50x50 */
background: url("../img/home/infogame/bg.png") repeat 0 0;
-webkit-animation: bg-scrolling-reverse 1.5s infinite; /* Safari 4+ */
-moz-animation:    bg-scrolling-reverse 1.5s infinite; /* Fx 5+ */
-o-animation:      bg-scrolling-reverse 1.5s infinite; /* Opera 12+ */
animation:         bg-scrolling-reverse 1.5s infinite; /* IE 10+ */
-webkit-animation-timing-function: linear;
-moz-animation-timing-function:    linear;
-o-animation-timing-function:      linear;
animation-timing-function:         linear;
}


/* 総合TOP */
header#home {
	background-color: rgba(0, 0, 0, 0) !important;
	position: absolute;
	z-index: 2;
	inset: 0;
	margin: auto;
	display: grid;
	place-content: center;
	place-items: center;
	pointer-events: none;
}
header#home .site-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
header#home .site-header .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 480px;
	height: 300px;
	-webkit-transition: width 0.5s ease;
	transition: width 0.5s ease;
	transform: translateX(-2.8rem);
	position: relative;
}
header#home .site-header .logo::after {
	content: "";
	background: url(../img/top/logo_bg.png) no-repeat center/cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	filter: blur(30px);
	z-index: -1;
}
#home .departmentNav {
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	position: relative;
}
#home .departmentNav::before,
#home .departmentNav::after {
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
}
#home .departmentNav::before {
	left: 0;
	background-image: linear-gradient(300deg,rgba(170, 60, 150, 1) 0%, rgba(30, 150, 209, 1) 100%);
}
#home .departmentNav::after {
	right: 0;
	background-image: linear-gradient(300deg,rgba(20, 75, 145, 1) 0%, rgba(0, 200, 210, 1) 50%, rgba(45, 196, 155, 1) 100%);
}
#home .departmentNav__menu {
  width                : 100%;
  height               : 100%;
  display              : grid;
  grid-template-columns: repeat(2, 50%);
}
#home .departmentNav__menu::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/top/bg.webp") no-repeat center/cover;
	z-index: 0;
}
#home .departmentNav__menu-item {
  position: relative;
  z-index : 1;
  overflow: hidden;
}
#home .departmentNav__menu-item .departmentNav__menu-item_inner {
  display : flex;
  width   : 100%;
  height  : 100%;
  position: relative;
  z-index : 0;
}
#home .departmentNav__menu-item a:hover span {
	opacity: 1;
}
#home .departmentNav__menu-item a:hover {
	opacity: .7;
}
#home .departmentNav__menu-item img {
	width: 100%;
} 
#home .departmentNav__menu-item h2 {
	position: absolute;
	width: 70%;
	height: fit-content;
	aspect-ratio: 500 / 260;
	z-index: 1;
}
#home .departmentNav__menu-item.--infogame h2 {
	bottom: 0;
	left: 0;
}
#home .departmentNav__menu-item.--automotive h2 {
	top: 0;
	right: 0;
}

#home .departmentNav__menu-item .text {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 1;
}
#home .departmentNav__menu-item .text .button {
	width: 16rem;
	height: fit-content;
	aspect-ratio: 26 / 16;
}
#home .departmentNav__menu-item .text ul {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin: 1rem;
}
#home .departmentNav__menu-item .text ul a {
	background-color: #000;
	border-radius: 30px;
	color: #fff;
	font-size: clamp(16px, 27/1366* 100vw, 27px);
	font-weight: bold;
	padding: 5px 1.5rem 8px 1rem;
	position: relative;
	width: fit-content;
}
#home .departmentNav__menu-item .text ul a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: .5rem;
	margin: auto;
	width: 8px;
	height: 8px;
	background-color: #ffffff;
	clip-path: polygon(8px 50%, 0% 0%, 0% 8px);
}
#home .departmentNav__menu-item .text ul a span {
	display: block;
	transform: skewX(-15deg);
}
#home .departmentNav__menu-item.--infogame .text {
	flex-direction: column;
}
#home .departmentNav__menu-item.--infogame .text ul {
	align-items: flex-end;
}
#home .departmentNav__menu-item.--automotive .text {
}
#home .departmentNav__menu-item .students {
  width : calc(100% - 80px);
  height: calc(100% - 80px);
  margin: auto;
}
#home .departmentNav__menu-item .students .img {
  display: block;
  width  : 100%;
  height : 100%;
  position: relative;
}
#home .departmentNav__menu-item .students .img::before {
  content       : "";
  position      : absolute;
  width         : 100%;
  height        : 100%;
  left          : 0;
  top           : 0;
  z-index       : 0;
}
#home .departmentNav__menu-item .students img {
  object-fit: cover;
  height: 100%;
}
@media all and (max-width: 769px) {
	header#home .site-header .logo {
		width: 12rem;
		height: fit-content;
		aspect-ratio: 480 / 300;
		transform: translateX(0);
	}
	#home .departmentNav__menu {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(2, 50%);
	}
	#home .departmentNav::before,
	#home .departmentNav::after {
		width: 100%;
		height: 50%;
	}
	#home .departmentNav::before {
		background-image: linear-gradient(-300deg,rgba(170, 60, 150, 1) 0%, rgba(30, 150, 209, 1) 100%);
	}
	#home .departmentNav::after {
		top: inherit;
		bottom: 0;
		background-image: linear-gradient(-300deg,rgba(20, 75, 145, 1) 0%, rgba(0, 200, 210, 1) 50%, rgba(45, 196, 155, 1) 100%);
	}
	#home .departmentNav__menu-item h2 {
		width: 55%;
	}
	#home .departmentNav__menu-item.--infogame h2 {
		bottom: 8%;
		left: .5rem;
	}
	#home .departmentNav__menu-item.--automotive h2 {
		top: 15%;
	}
	#home .departmentNav__menu-item .text {
		justify-content: inherit;
	}
	#home .departmentNav__menu-item.--automotive .text {
		align-items: flex-start;
		flex-direction: column-reverse;
	}
	#home .departmentNav__menu-item .text ul {
		margin: 1.2rem;
	}
	#home .departmentNav__menu-item.--infogame .text ul {
		margin-top: 1rem;
		margin-bottom: 0;
	}
	#home .departmentNav__menu-item.--automotive .text ul {
		margin-top: 0;
		margin-bottom: 1rem;
	}
	#home .departmentNav__menu-item .text ul a {
		padding: 3px 1.3rem 6px .7rem;
	}
	#home .departmentNav__menu-item .text ul a::after {
		width: 6px;
		height: 6px;
		clip-path: polygon(6px 50%, 0% 0%, 0% 6px);
	}
	#home .departmentNav__menu-item .text .button {
		margin: 0 .5rem;
		width: 8rem;
	}
	#home .departmentNav__menu-item .students {
		width: calc(100% - 3rem);
		height: calc(100% - 3rem);
	}
}






main.index__home {
  background-color: rgba(255, 255, 255, 0.5);
}
main.index__home img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

main.index__home .notosans {
  font-family: 'Noto Sans JP', sans-serif;
}
main.index__home .oswald {
  font-family: 'Oswald', sans-serif;
}
main.index__home .headline {
    padding-bottom: 2.8rem;
}
main.index__home .headline .hl-img {
  width: calc(100vw / (1366 / var(--hl-w,1366)));
  max-width: calc(var(--hl-w) * 1px);
  min-width: calc(var(--hl-w) * 1px);
  margin: 0 auto;
}

main.index__home .contents__inner {
  padding-block: 6rem;
}
main.index__home .contents__inner .--grid {
    display: grid;
}
main.index__home .contents__block {
  margin: 0 auto;
  width: calc(100% - (100vw / (1366 / 220)));
  max-width: 1200px;
}
main.index__home .contents__block.--mw-full {
  width: 100%;
  max-width: inherit;
}

main.index__home .button-wrraper {
  padding-top: 3rem;
}
main.index__home .button-wrapper.--align-center>a {
  margin-inline: auto;
}
main.index__home .type__normal {
	background: #fff;
	border-radius: 100vw;
	border: 1px solid #000;
	max-width: 550px;
	height: 55px;
	justify-content: center;
	padding: 0 1em;
	font-size: clamp(12px, 18/1366* 100vw, 18px);
}
main.index__home .type__normal::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border-radius: 100vw;
	mix-blend-mode: multiply;
	transition: all 0.3s ease;
	transform: translate(5px, 5px);
}
main.index__home .type__normal::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1rem;
	margin: auto;
	width: 12px;
	height: 12px;
	background-color: #000;
	clip-path: polygon(12px 50%, 0% 0%, 0% 12px);
}
main.index__home .type__normal:hover,
main.index__home .type__normal:hover span {
	opacity: 1;
}
main.index__home .type__normal:hover::before {
	transform: translate(0, 0);
}
main.index__home .type__normal .label {
  color: #fff !important;
  font-weight: 600;
  position: relative;
}
main.index__home .button {
  display: flex;
  align-items: center;
  margin: 3rem auto 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
/*  */
.home-infogame main.index__home .type__normal::before {
	background: linear-gradient(-90deg,rgba(170, 60, 150, 1) 0%, rgba(30, 150, 209, 1) 100%);
}
.home-automotive main.index__home .type__normal::before {
	background: linear-gradient(90deg,rgba(20, 75, 145, 1) 0%, rgba(0, 200, 210, 1) 50%, rgba(45, 196, 155, 1) 100%);
}
@media only screen and (max-width: 769px) {
  main.index__home .contents__inner {
    padding-block: 3rem;
  }
  main.index__home .contents__block {
    width: calc(100% - 2rem);
    max-width: inherit;
  }

  main.index__home .headline {
    padding-bottom: 1.8rem;
  }
  main.index__home .headline .hl-img {
    width: calc(100vw / (375 / (var(--hl-w,375) * .5)));
    min-width: inherit;
  }

  main.index__home .type__normal {
    width: 25vw;
    min-width: 220px;
    height: 30px;
    margin: 1.5rem auto 0;
  }
  main.index__home .type__normal::after {
    width: 8px;
    height: 8px;
    right: 0.5rem;
	clip-path: polygon(8px 50%, 0% 0%, 0% 8px);
  }
}



/* MV */
main.index__home .mv {
  background-color: #e67f11;
  overflow: hidden;
}
main.index__home .mv__inner {
  position: relative;
}
/* main.index__home .mv__inner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin: auto;
	background: url(../img/home/automotive/bg-mv.png) no-repeat center/cover;
	z-index: 2;
} */
main.index__home .mv__copy {
  position: absolute;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  inset: 0;
  margin: auto;
  z-index: 2;
}
main.index__home .mv__copy .copy {
  width: calc(100vw / (1366 / var(--copy-width, 1366)));
  max-width: calc(var(--copy-width) * 1.2px);
  min-width: calc(var(--copy-width) * 1px);
  margin: 0 auto;
}
main.index__home .mv__copy .copy img {
  opacity: 0;
}

main.index__home .site-mv-bg {
	position: relative;
	z-index: 0;
	align-items: center;
	display: flex;
	justify-content: center;
}
main.index__home .site-mv-bg video {
	object-fit: cover;
	z-index: 1;
}
main.index__home .site-mv-bg #mv-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
main.index__home .site-mv-bg #mv-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.index__home .site-mv-bg #mv-banner:hover img {
	opacity: 1;
}
main.index__home .mv__slider {
  display: flex;
  height: 605px;
  height: 600px;
  height: 43.9238653001vw;
  min-height: 600px;
}
main.index__home .mv__slider-center {
	width: 100%;
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
  }
main.index__home .mv__slider-left {
  width: 50%;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
main.index__home .mv__slider-right {
  width: 50%;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
main.index__home .mv__slider__list-item .img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
main.index__home .mv__slider__list-item img {
  will-change: transform;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.index__home .mv__message {
  position: absolute;
  left: 3rem;
  top: 3rem;
  z-index: 3;
  pointer-events: none;
  width: 100px;
  width: 6.9444444444vw;
  min-width: 100px;
}
main.index__home .mv-link a {
	display: block;
	padding: 5px 0;
}
main.index__home .mv-link a img {
	display: block;
	max-width: 430px;
	margin: 0 auto;
}
main.index__home .mv-link-button {
	display: block;
	position: fixed;
	z-index: 10;
	top: 280px;
	right: 120px;
	width: clamp(100px, calc(100 / 375 * 100vw), 160px);
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
main.index__home .mv-link-button.--hidden {
	opacity: 0;
	transform: translateY(-20px);
	pointer-events: none;
}
/*  */
/* .home-infogame main.index__home .mv__inner::before {
	background: url(../img/home/infogame/bg-mv.png) no-repeat center/cover;
} */
@media only screen and (max-width: 769px) {
  main.index__home {
    margin-top: 50px;
  }
  /* main.index__home .mv__inner::after {
    content: "";
    background: url(../img/home/automotive/bg-mv_sp-2.png) no-repeat bottom center/contain;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
  }
  .home-infogame main.index__home .mv__inner::after {
    background: url(../img/home/infogame/bg-mv_sp-2.png) no-repeat bottom center/contain;
  } */
  /* main.index__home .mv__inner::before {
    background-image: url(../img/home/automotive/bg-mv_sp-1.png);
    background-size: contain;
    background-position: top center;
  }
  .home-infogame main.index__home .mv__inner::before {
    background-image: url(../img/home/infogame/bg-mv_sp-1.png);
    background-size: contain;
    background-position: top center;
  } */
  main.index__home .mv__copy {
	margin: auto 0 0;
  }
  main.index__home .mv__copy .copy {
    width: calc(100vw / (375 / (var(--copy-width, 375) * 0.5)));
    min-width: inherit;
  }
  main.index__home .mv__slider {
    display: block;
    /* height: 140vw; */
	height: auto;
    min-height: inherit;
  }
  main.index__home .mv__slider-left {
    width: 100%;
    height: 50%;
  }
  main.index__home .mv__slider-right {
    width: 100%;
    height: 50%;
  }
  main.index__home .mv__slider-center {
	width: 100%;
	height: 100%;
  }
  main.index__home .mv__slider__list-item .img {
    width: 100%;
  }
  main.index__home .mv__message {
    left: .5rem;
    top: .5rem;
    width: 70px;
    width: 18.6666666667vw;
    min-width: inherit;
  }

  main.index__home .mv-link a img {
	width: 85%;
  }
  main.index__home .mv-link-button {
	top: calc(50px + 10px);
    right: 5px;
  }
}



/* pickup */
main.index__home .sec__pickup {
  overflow: hidden;
}
main.index__home .post-pickup.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: inherit;
}
main.index__home .post-pickup__list-item {
  display: grid;
  gap: 3.2rem;
}
main.index__home .post-pickup__list-item a {
  display: block;
  width: 100%;
  height: 100%;
  height: 269px;
  height: 20.7174vw;
  min-height: 241px;
  max-height: 290px;
  transition: opacity 0.3s ease;
}
main.index__home .post-pickup__list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.home-infogame main.index__home .sec__pickup {
	background-color: #E0F1F9;
}
.home-automotive main.index__home .sec__pickup {
	background-color: #DCF5F1;
}
@media (hover: hover) and (pointer: fine) {
  main.index__home .post-pickup__list-item a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 769px) {
  main.index__home .post-pickup__list-item {
    width: 80% !important;
    gap: 1.6rem;
  }
  main.index__home .post-pickup__list-item a {
    height: 131px;
    height: 34.9333333333vw;
    min-height: inherit;
    max-height: inherit;
  }
}

.tool-box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}
.tool-box .slider__pagination {
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  transform: translate3d(0px,0%,0) !important;
}
.tool-box .slider__pagination .swiper-pagination-bullet {
  width: 15px;
  width: 1.0980966325vw;
  max-width: 15px;
  min-width: 10px;
  height: 15px;
  height: 1.0980966325vw;
  max-height: 15px;
  min-height: 10px;
  margin: 0;
  background-color: #c9caca;
  transition: background-color 0.3s ease;
  opacity: 1;
}
.tool-box .slider__pagination .swiper-pagination-bullet-active {
  background-color: #f39800;
}
.home-infogame .tool-box .slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-infogame);
}
.home-automotive .tool-box .slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-automotive);
}
@media (hover: hover) and (pointer: fine) {
  .tool-box .slider__pagination .swiper-pagination-bullet:hover {
    background-color: #f39800;
  }
}
.tool-box button {
  all: unset;
  box-sizing: border-box;
  width: 43px;
  width: 3.1478770132vw;
  max-width: 43px;
  min-width: 27px;
  height: 18px;
  height: 3.1478770132vw;
  max-height: 43px;
  min-height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .tool-box button:hover {
    opacity: 0.7;
  }
}
.tool-box button.button__prev {
  background-image: url("../img/home/arrow_right_white.svg");
  transform: rotate(180deg);
}
.tool-box button.button__next {
  background-image: url("../img/home/arrow_right_white.svg");
}
.tool-box button[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.home-infogame .tool-box button.button__prev {
	background-image: url("../img/home/arrow_right_white_v2.svg");
	transform: rotate(180deg);
}
.home-infogame .tool-box button.button__next {
  background-image: url("../img/home/arrow_right_white_v2.svg");
}
.home-automotive .tool-box button.button__prev {
	background-image: url("../img/home/arrow_right_white_v3.svg");
	transform: rotate(180deg);
}
.home-automotive .tool-box button.button__next {
  background-image: url("../img/home/arrow_right_white_v3.svg");
}
@media only screen and (max-width: 769px) {
  .tool-box {
    padding-top: 2.4rem;
    gap: .875rem;
  }
  .tool-box .slider__pagination {
    gap: .6rem;
  }
}



/* カスタム投稿 - Open Campus  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .sec__oc * {
  box-sizing: border-box;
}
main.index__home .sec__oc {
background: url(../img/home/2026/bg_oc.webp) no-repeat center/cover;
}
main.index__home .sec__oc .lead {
  text-align: center;
}
main.index__home .sec__oc .lead p.notosans {
  background-image: linear-gradient(90deg, rgb(248, 187, 0), rgb(236, 112, 0));
  color: #fff;
  display: inline-block;
  font-size: clamp(1.6875rem, 1.38rem + 0.8199vw, 2.5rem);
  font-style: italic;
  font-weight: 500;
  padding: .5rem 1.5rem;
  position: relative;
  text-align: center;
}
main.index__home .sec__oc .lead p.triangle {
  background: #f29602;
  height: calc(tan(60deg) * 20px / 2);
  width: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: auto;
}
main.index__home .sec__oc .post {
  padding: 3rem 0;
}
main.index__home .sec__oc .type__normal::after {
  border: none;
  transform: rotate(0deg);
}
main.index__home .sec__oc .type__normal span {
  color: #ec7000;}
@media only screen and (max-width: 769px) {
  main.index__home .sec__oc .lead p.notosans {
    font-size: clamp(1rem, -0.5686rem + 3.9216vw, 2.25rem);
    line-height: clamp(1.8rem, 1.3rem + 1.8vw, 4.5rem);
    padding: 0 1rem 0.3rem;
  }
  main.index__home .sec__oc .post {
    padding: 1.5rem 0;
  }
}

main.index__home .post-open-campus__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
main.index__home .post-oc__list-item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  main.index__home .post-oc__list-item a:hover {
    opacity: 0.7;
  }
}
main.index__home .post-oc__list-item a::before {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  width: 30px;
  width: 30px;
  min-width: 20px;
  height: 30px;
  width: 30px;
  min-height: 20px;
  background-image: url("../img/home/arrow_right_orange.svg");
  border-radius: 50%;
}
main.index__home .post-oc__list-item a span {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
}
main.index__home .post-oc__list-item a .busIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 96px;
  background: url(../img/oc/mark-bus.svg) no-repeat center/cover;
}

main.index__home .post-oc__list-item a .txt {
  display: flex;
  flex-direction: column;
  height: 100px;
  justify-content: center;
}
main.index__home .post-oc__list-item a .txt.oc {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: .5rem;
  height: 70px;
}
main.index__home .post-oc__list-item a .topics {
  margin-top: 5px;
}
main.index__home .post-oc__list-item a .topics li {
  font-size: clamp(10px,1.2vw,16px);
  font-weight: 600;
  position: relative;
  text-align: left;
  margin: 5px 0;
}
main.index__home .post-oc__list-item a .topics li span {
  /* background: #ffdf57;
  display: inline; */
  line-height: 1.6;
  padding: 0 5px;
}
main.index__home .post-oc__list-item a .day {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 50/1366* 100vw, 50px);
  font-weight: 600;
  line-height: 1;
}
main.index__home .post-oc__list-item a .day > span {
  font-size: 0.5em;
  margin-left: 5px;
}
main.index__home .post-oc__list-item a .bus {
  background: #E16C01;
  color: #fff;
  font-size: clamp(6px, 14/1366* 100vw, 14px);
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  padding: .5em 1em;
  border-radius: 100vw;
  line-height: 1.4;
}
.home-infogame main.index__home .post-oc__list-item a .bus {
  background-image: linear-gradient(90deg, rgb(167, 134, 187), rgb(0, 98, 176));
}
.home-automotive main.index__home .post-oc__list-item a .bus {
  background-image: linear-gradient(90deg, rgb(248, 187, 0), rgb(236, 112, 0));
}

main.index__home .post-oc__list-item a .ttl {
  font-size: clamp(1rem, 0.5033rem + 1.3vw, 1.875rem);
  font-weight: bold;
}
main.index__home .post-oc__list-item a .time {
  font-size: clamp(10px, 24/1366* 100vw, 22px);
  font-weight: 600;
  line-height: 1;
}
main.index__home .post-oc__list-item a .img {
  width: 100%;
  height: 244px;
}
main.index__home .post-oc__list-item a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/*  */
.home-infogame main.index__home .post-oc__list-item a::before {
  background-image: url("../img/home/arrow_right_blue_v2.svg");
}
.home-automotive main.index__home .post-oc__list-item a::before {
  background-image: url("../img/home/arrow_right_green.svg");
}
@media only screen and (max-width: 769px) {
  main.index__home .post-open-campus__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  main.index__home .post-oc__list-item a::before {
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
  }
  main.index__home .post-oc__list-item a .busIcon {
    width: 2rem;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  main.index__home .post-oc__list-item a .txt {
    height: auto;
    min-height: 55px;
  }
  main.index__home .post-oc__list-item a .txt.oc {
    gap: .25rem;
    height: auto;
    min-height: 55px;
  }
  main.index__home .post-oc__list-item a .topics {
    margin-top: 0;
  }
  main.index__home .post-oc__list-item a .topics li {
    margin: 0;
    padding-right: 0;
  }
  main.index__home .post-oc__list-item a .topics li:last-child {
    padding-right: 30px;
  }
  main.index__home .post-oc__list-item a .topics li span {
    padding: 0;
  }
  main.index__home .post-oc__list-item a .ttl {
    font-size: clamp(.9rem, 0.5033rem + 1.3vw, 1.875rem);
  }
  main.index__home .post-oc__list-item a .img {
    height: 100px;
    height: 30vw;
  }
}



/* 学科・コース  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .sec__course {
  overflow: hidden;
}
main.index__home .sec__course .headline {
  padding-bottom: 0;
}
main.index__home .sec__course .l-hero {
	position: relative;
	display: none;
}
main.index__home .sec__course .course_headline {
	display: flex;
	flex-direction: column;
	gap: 1.5rem 0;
}
main.index__home .sec__course .course_headline img {
	width: 100%;
}
main.index__home .sec__course .course_headline h3 {
	color: #000;
	font-size: clamp(40px, 75/1366* 100vw, 80px);
	font-weight: 900;
}
main.index__home .sec__course .course_headline h3 span {
	font-size: 70%;
}
main.index__home .sec__course .course_headline .catch {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
main.index__home .sec__course .course_headline .catch span {
	background-color: #000;
	color: #fff;
	font-size: clamp(15px, 30/1366* 100vw, 30px);
	font-weight: 600;
	padding: 5px 10px 10px;
	transform: skewX(-15deg);
}

main.index__home .sec__course .course_headline .type__normal {
	height: 50px;
	max-width: 520px;
	margin: 0;
	padding: 0;
}
main.index__home .sec__course .course_headline .type__normal .label {
	font-size: clamp(14px, 20/1366* 100vw, 20px);
	font-weight: 700;
}
main.index__home .sec__course .course_headline .type__normal.gradation-01::before {
	background: linear-gradient(90deg,rgba(0, 91, 145, 1) 0%, rgba(30, 150, 209, 1) 50%, rgba(186, 230, 255, 1) 100%);}
main.index__home .sec__course .course_headline .type__normal.gradation-02::before {
	background: linear-gradient(90deg,rgba(102, 45, 139, 1) 0%, rgba(102, 45, 139, 1) 50%, rgba(189, 135, 188, 1) 100%);}
main.index__home .sec__course .course_headline .type__normal.gradation-03::before {
	background: linear-gradient(90deg,rgba(109, 120, 131, 1) 0%, rgba(170, 176, 183, 1) 70%);}
main.index__home .sec__course .course_headline .type__normal.gradation-04::before {
	background: linear-gradient(90deg,rgba(135, 115, 70, 1) 0%, rgba(180, 161, 134, 1) 60%);}
main.index__home .sec__course .course_headline .type__normal.gradation-06::before {
	background: linear-gradient(90deg,rgba(10, 99, 163, 1) 0%, rgba(109, 156, 208, 1) 60%);}
main.index__home .sec__course .course_headline .type__normal.gradation-07::before {
	background: linear-gradient(90deg,rgba(90, 92, 150, 1) 0%, rgba(148, 149, 195, 1) 60%);}

main.index__home .sec__course .l-hero-flex .right .course_list {
	display: grid;
	gap: 1rem;
}
@media only screen and (min-width: 770px) {
main.index__home .sec__course .l-hero-flex {
	margin-top: 5rem;
	position: relative;
}
main.index__home .sec__course .l-hero-flex + .l-hero-flex {
	margin-top: 8rem;
}
main.index__home .sec__course .l-hero-flex::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60%;
	height: 100%;
	
}
main.index__home .sec__course .l-hero-flex.info::after,
main.index__home .sec__course .l-hero-flex.car::after,
main.index__home .sec__course .l-hero-flex.electric::after {
	right: 0;
	background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 30%, rgba(0, 0, 0, 0) 100%);
}
main.index__home .sec__course .l-hero-flex.game::after,
main.index__home .sec__course .l-hero-flex.architecture::after,
main.index__home .sec__course .l-hero-flex.medical::after {
	left: 0;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 40%, rgba(0, 0, 0, 0) 100%);
}
main.index__home .sec__course .l-hero-flex > figure,
main.index__home .sec__course .l-hero-flex > figure img {
	width: 100%;
}

main.index__home .sec__course .l-hero-flex .right {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 45%;
	height: fit-content;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	z-index: 2;
}
main.index__home .sec__course .l-hero-flex.info .right,
main.index__home .sec__course .l-hero-flex.car .right,
main.index__home .sec__course .l-hero-flex.electric .right {
	right: 0;
}
main.index__home .sec__course .l-hero-flex.game .right,
main.index__home .sec__course .l-hero-flex.architecture .right,
main.index__home .sec__course .l-hero-flex.medical .right {
	left: 0;
}
main.index__home .sec__course .l-hero-flex.info .right {
	width: 50%;
}
main.index__home .sec__course .l-hero-flex.game .right {
	width: 55%;
}
main.index__home .sec__course .info .course_headline,
main.index__home .sec__course .game .course_headline {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1.5rem 1rem;
}
main.index__home .sec__course .info .course_headline .catch {
	grid-column: 1 / 3;
	flex-direction: row;
	gap: 0;
}
main.index__home .sec__course .info .course_headline .catch span:nth-child(1) {
	padding-right: 0;
}
main.index__home .sec__course .info .course_headline .catch span:nth-child(2) {
	padding-left: 0;
}
main.index__home .sec__course .architecture .course_headline .catch span:nth-child(2) {
	display: none;
}
main.index__home .sec__course .game .course_headline .catch {
	grid-column: 1 / 3;
}
main.index__home .sec__course .l-hero-flex .right .course_list.column-3 {
	grid-template-columns: repeat(3, 1fr);
}
main.index__home .sec__course .l-hero-flex.info .right .course_list.column-3 {
    grid-template-columns: repeat(6, 1fr);
}
main.index__home .sec__course .l-hero-flex.info .right .course_list.column-3 li:nth-child(1),
main.index__home .sec__course .l-hero-flex.info .right .course_list.column-3 li:nth-child(2) {
    grid-column: span 3;
}
main.index__home .sec__course .l-hero-flex.info .right .course_list.column-3 li:nth-child(n+3) {
    grid-column: span 2;
}
main.index__home .sec__course .l-hero-flex .right .course_list li {
	height: 10rem;
	position: relative;
}
main.index__home .sec__course .l-hero-flex.info .right .course_list li {
	height: 8rem;
}
main.index__home .sec__course .l-hero-flex .right .course_list li .new {
	position: absolute;
    top: -.5rem;
    left: -.5rem;
    width: 80px;
    height: 32px;
    aspect-ratio: 80 / 32;
    z-index: 1;
}
main.index__home .sec__course .l-hero-flex .right .course_list a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
main.index__home .sec__course .l-hero-flex .right .course_list a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
main.index__home .sec__course .l-hero-flex .right .course_list figure {
	display: block;
	width: 100%;
	height: 100%;
}
main.index__home .sec__course .l-hero-flex .right .course_list figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
main.index__home .sec__course .l-hero-flex .right .course_list p {
	border: 1px solid #fff;
	border-radius: 30px;
	box-sizing: border-box;
	color: #fff;
	font-size: clamp(10px, 15/1366* 100vw, 15px);
	padding: 5px;
	text-align: center;
	position: absolute;
	bottom: .5rem;
	left: 0;
	right: 0;
	margin: auto;
	width: 95%;
}
main.index__home .sec__course .l-hero-flex .right .course_list p::after {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	background-color: #fff;
	clip-path: polygon(8px 50%, 0% 0%, 0% 8px);
}
main.index__home .sec__course .l-hero-flex .right .course_list.column-3 {
	grid-template-columns: repeat(3, 1fr);
}

main.index__home .sec__course .l-hero-flex .course_english {
	position: absolute;
	bottom: -1rem;
	width: calc(100vw / (1366 / var(--hl-w,1366)));
	max-width: calc(var(--hl-w) * 1px);
	min-width: calc(var(--hl-w) * 1px);
	z-index: 2;
}
main.index__home .sec__course .l-hero-flex .course_english img { 
	width: 100%;}
}
main.index__home .sec__course .l-hero-flex.info .course_english,
main.index__home .sec__course .l-hero-flex.car .course_english,
main.index__home .sec__course .l-hero-flex.electric .course_english {
	left: -3rem;}
main.index__home .sec__course .l-hero-flex.game .course_english,
main.index__home .sec__course .l-hero-flex.architecture .course_english,
main.index__home .sec__course .l-hero-flex.medical .course_english {
	right: -3rem;}
@media only screen and (max-width: 769px) {
  main.index__home .sec__course .headline {
    padding-bottom: 1.8rem;
  }
  main.index__home .sec__course .course_headline img {
    height: 100%;
    width: auto;
  }
  main.index__home .sec__course .contents__inner {
    padding-block: 3rem;
  }
  main.index__home .sec__course .contents__block {
	width: 100%;
  }
  main.index__home .sec__course .l-hero-pc {
    display: none;
  }
  main.index__home .sec__course .l-hero {
    display: block;
  }
  main.index__home .sec__course .gradation {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  main.index__home .sec__course .gradation-08 {
    background-size: auto 90px;
  }
  main.index__home .sec__course .gradation-09 {
    background-size: auto 95px;
  }

  main.index__home .sec__course .l-hero-panel {
	position: relative;
	padding-top: 2rem;
  }
  main.index__home .sec__course .l-hero-panel > figure {
    position: absolute;
    top: 0;
    width: 100%;
    height: 55%;
  }
  main.index__home .sec__course .l-hero-panel > figure::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 70%;
	height: 100%;
  }
  main.index__home .sec__course .l-hero-panel.info > figure::before,
  main.index__home .sec__course .l-hero-panel.car > figure::before,
  main.index__home .sec__course .l-hero-panel.electric > figure::before {
	right: 0;
	background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 20%, rgba(0, 0, 0, 0) 100%);
  }
  main.index__home .sec__course .l-hero-panel.game > figure::before,
  main.index__home .sec__course .l-hero-panel.architecture > figure::before,
  main.index__home .sec__course .l-hero-panel.medical > figure::before {
	left: 0;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 30%, rgba(0, 0, 0, 0) 100%);
  }
  main.index__home .sec__course .l-hero-panel > figure::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%);
  }
  main.index__home .sec__course .l-hero-panel > figure img {
	width: 100%;
    height: 100%;
    object-fit: cover;
  }
  main.index__home .sec__course .course_headline {
	gap: .5rem 0;
	padding-bottom: 3rem;
	position: relative;
	margin: auto;
	width: calc(100% - 2rem);
  }
  main.index__home .sec__course .info .course_headline .catch,
  main.index__home .sec__course .info .course_headline h3,
  main.index__home .sec__course .info .course_headline .type__normal,
  main.index__home .sec__course .car .course_headline .catch,
  main.index__home .sec__course .car .course_headline h3,
  main.index__home .sec__course .car .course_headline .type__normal,
  main.index__home .sec__course .electric .course_headline .catch,
  main.index__home .sec__course .electric .course_headline h3,
  main.index__home .sec__course .electric .course_headline .type__normal {
	margin-left: auto;
	width: fit-content;
	min-width: 230px;
  }
  main.index__home .sec__course .game .course_headline,
  main.index__home .sec__course .architecture .course_headline,
  main.index__home .sec__course .medical .course_headline {
	margin-right: auto;
  }
  main.index__home .sec__course .course_headline .catch span {
	padding: 5px 10px 6px;
  }
  main.index__home .sec__course .architecture .course_headline .catch span:nth-child(2) {
	display: none;
  }
  main.index__home .sec__course .course_headline .type__normal {
	height: 35px;
  }
  main.index__home .sec__course .course_headline .course_english {
	position: absolute;
	bottom: -.75rem;
	margin-left: inherit !important;
	width: calc(100vw / (375 / (var(--hl-w,375) * .35))) !important;
	z-index: 2;
  }
  main.index__home .sec__course .info .course_headline .course_english,
  main.index__home .sec__course .car .course_headline .course_english,
  main.index__home .sec__course .electric .course_headline .course_english {
	left: 0;
  }
  main.index__home .sec__course .game .course_headline .course_english,
  main.index__home .sec__course .architecture .course_headline .course_english,
  main.index__home .sec__course .medical .course_headline .course_english {
	right: 0;
  }
  main.index__home .sec__course .course-list {
    display: block;
    margin-bottom: 3.5rem;
	margin-left: auto;
	width: calc(100% - 1rem);
  }
  main.index__home .sec__course .electric .course-list,
  main.index__home .sec__course .medical .course-list {
	margin-right: auto;
	width: calc(100% - 2rem);
  }
  main.index__home .sec__course .course-list li {
    position: relative;
  }
  main.index__home .sec__course .course-list li .new {
	position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: fit-content;
    aspect-ratio: 80 / 32;
    z-index: 1;
  }
  main.index__home .sec__course .course-list .slick-list {
      padding: 0 10% 0 0 !important;
  }
  main.index__home .sec__course .course-list .slick-slide {
      margin-right: 15px;
	  padding-top: 5px;
	  padding-right: 5px;
  }
  main.index__home .sec__course .course-list .slick-list img {
    width: 100%;
  }
  main.index__home .sec__course .course-list .slick-dots li {
	width: 10px;
    height: 10px;
    margin: 0 10px;
  }
  main.index__home .sec__course .course-list .slick-dots li.slick-active button {
	color: #1B1464;
    background: #1B1464;
  }
  main.index__home .sec__course .course-list .slick-dots li button {
    color: #C6C6C6;
    background: #C6C6C6;
	border-radius: 100vw;
	width: 12px;
	height: 12px;
  }
  main.index__home .sec__course .course-list .slick-dots li button::before {
	content: none;
  }
  main.index__home .sec__course .course-list a {
	position: relative;
  }
  main.index__home .sec__course .course-list a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  }
  main.index__home .sec__course .course-list .item-name {
	border: 1px solid #fff;
	border-radius: 30px;
	box-sizing: border-box;
	color: #fff;
	font-size: clamp(10px, 15/375* 100vw, 15px);
	padding: 5px;
	text-align: center;
	position: absolute;
	bottom: .5rem;
	left: 0;
	right: 0;
	margin: auto;
	width: 95%;
  }
  main.index__home .sec__course .course-list .item-name::after {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	background-color: #fff;
	clip-path: polygon(8px 50%, 0% 0%, 0% 8px);
  }
}




/* 選ばれる理由  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .sec__point .contents__block {
  max-width: 1150px;
}
main.index__home .sec__point .point__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}
main.index__home .sec__point .point__list-item {
  width: calc(100% / 2 - 1rem);
  position: relative;
}
main.index__home .sec__point .point__list-item::before {
	content: "";
	position: absolute;
	top: -.5rem;
	left: 1rem;
	width: 103px;
	height: 98px;
	aspect-ratio: 103 / 98;
	background: url("../img/home/2026/point_flag.svg") no-repeat left center / cover;
	z-index: 2;
}
main.index__home .sec__point .point__list-item a {
  background: #fff;
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 245px;
  overflow: hidden;
  position: relative;
}
main.index__home .sec__point .point__list-item a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -25%;
	width: 100%;
	height: 100%;
	background-position: left center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
	mix-blend-mode: multiply;
}
main.index__home .sec__point .point__list-item a:hover {
  opacity: 0.7;
}
main.index__home .sec__point .point__list-item figure {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
main.index__home .sec__point .point__list-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.index__home .sec__point .point__list-item .num {
  aspect-ratio: 110 / 168;
  width: 95px;
  position: absolute;
  bottom: 0;
  left: .5rem;
  z-index: 2;
}
main.index__home .sec__point .point__list-item .txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 35/1366* 100vw, 35px);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  position: absolute;
  bottom: 10px;
  left: 7rem;
  filter: drop-shadow(0 0 3px #000);
  z-index: 2;
}
main.index__home .sec__point .point__list-item .txt span {
	display: block;
}
main.index__home .sec__point .point__list-item:nth-child(2) figure img,
main.index__home .sec__point .point__list-item:nth-child(3) figure img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: auto;
  object-fit: inherit;
}
main.index__home .sec__point .point__list-item:nth-child(4) figure img,
main.index__home .sec__point .point__list-item:nth-child(5) figure img {
	position: absolute;
	top: -15%;
	height: auto;
	object-fit: inherit;
}
main.index__home .sec__point .point__list-item:nth-child(2) .txt span:nth-child(1),
main.index__home .sec__point .point__list-item:nth-child(2) .txt span:nth-child(2),
main.index__home .sec__point .point__list-item:nth-child(3) .txt span:nth-child(1),
main.index__home .sec__point .point__list-item:nth-child(3) .txt span:nth-child(2),
main.index__home .sec__point .point__list-item:nth-child(4) .txt span:nth-child(1),
main.index__home .sec__point .point__list-item:nth-child(5) .txt span:nth-child(1),
main.index__home .sec__point .point__list-item:nth-child(6) .txt span:nth-child(1) {
	font-size: 70%;
}
/*  */
.home-infogame main.index__home .sec__point {
  background-image: linear-gradient(180deg, #DCF0F8, #7AC3E5 70%);
}
.home-automotive main.index__home .sec__point {
  background-image: linear-gradient(180deg, #E4F7F7, #24BEBA 70%);
}
.home-infogame main.index__home .sec__point .point__list-item a::before {
	background-image: url("../img/home/2026/bg_point_v1.png");
}
.home-automotive main.index__home .sec__point .point__list-item a::before {
	background-image: url("../img/home/2026/bg_point_v2.png");
}
@media only screen and (max-width: 769px) {
  main.index__home .sec__point .point__list {
    gap: 1rem 0;
  }
  main.index__home .sec__point .point__list-item {
    width: 100%
  }
  main.index__home .sec__point .point__list-item::before {
	top: -.3rem;
	left: .5rem;
	width: 2.5rem;
	height: auto;
  }
  main.index__home .sec__point .point__list-item a {
    height: 30vw;
  }
  main.index__home .sec__point .point__list-item a::before {
	left: -15%;
  }
  main.index__home .sec__point .point__list-item .num {
    width: 35px;
  }
  main.index__home .sec__point .point__list-item .txt {
    bottom: 5px;
    left: 3rem;
  }
}



/* 教育実績  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .sec__support {
	background: #DFE6E9;
	overflow: hidden;
	position: relative;
}
main.index__home .sec__support::before {
	content: "";
	position: absolute;
	top: 15%;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
main.index__home .sec__support .support__list {
  grid-template-columns: repeat(3, 1fr);
  padding: 0 0 3rem;
}
.home-infogame main.index__home .sec__support::before {
	background-image: url(../img/home/2026/bg_support_v1.png);
}
.home-automotive main.index__home .sec__support::before {
	background-image: url(../img/home/2026/bg_support_v2.png);
}
@media only screen and (max-width: 769px) {
  main.index__home .sec__support .support__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
	padding-bottom: 0;
  }
  main.index__home .sec__support::before {
	top: 0;
	bottom: inherit;
	left: inherit;
	right: 0;
	width: 90%;
	height: 100%;
	background-position: top center;
  }
	.home-infogame main.index__home .sec__support::before {
		background-image: url(../img/home/2026/bg_support_v1_sp.png);
	}
	.home-automotive main.index__home .sec__support::before {
		background-image: url(../img/home/2026/bg_support_v2_sp.png);
	}
}



/* 最新情報  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .sec__news {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
main.index__home .sec__news .headline .hl-img {
  margin: 0 auto 0 0;
}
main.index__home .sec__news .news {
  display: grid;
  grid-template-columns: 350px auto;
}
main.index__home .sec__news .post {
  padding: 0;
  margin: auto;
  width: 100%;
}
main.index__home .sec__news .post__list-item {
  border-bottom: 1px dashed #E0E0E0;
}
main.index__home .sec__news .post__list-item:first-child a {
  padding-top: 0;
}
main.index__home .sec__news .post__list-item a {
  padding: 2rem 0 1rem;
  position: relative;
  align-items: center;
  display: grid;
  grid-template-columns: 7rem auto;
  gap: .5rem 0;
}
main.index__home .sec__news .post__list-item .category {
  background-color: inherit;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
main.index__home .sec__news .post__list-item .category .label {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 100px;
  font-size: clamp(10px, 16/1366* 100vw, 16px);
  padding: 0.5em;
  color: #fff;
}
main.index__home .sec__news .post__list-item .date {
  font-size: clamp(10px, 16/1366* 100vw, 16px);
  color: #fff;
}
main.index__home .sec__news .post__list-item .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: clamp(13px, 20/1366* 100vw, 20px);
  line-height: 1.5;
  color: #fff;
  grid-column: 3/1;
}
main.index__home .sec__news .post__list-item .arrow {
  content: "";
  position: absolute;
  z-index: 1;
  width: 2vw;
  height: 2vw;
  background-image: url(../img/home/arrow_right_orange.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  right: 0.5rem;
  bottom: 0;
  top: 0;
  margin: auto;
}
main.index__home .sec__news .button-wrapper {
  grid-column: 3/1;
}
main.index__home .sec__news .button {
  max-width: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
}
/*  */
.home-infogame main.index__home .sec__news {
	background-image: url(../img/home/2026/bg_news_v1.webp);
}
.home-automotive main.index__home .sec__news {
	background-image: url(../img/home/2026/bg_news_v2.webp);
}
.home-infogame main.index__home .sec__news .post__list-item .arrow {
  background-image: url(../img/home/arrow_right_white_v2.svg);
}
.home-automotive main.index__home .sec__news .post__list-item .arrow {
	background-image: url(../img/home/arrow_right_white_v3.svg);
  }
@media only screen and (max-width: 769px) {
  main.index__home .sec__news .news {
    grid-template-columns: 1fr;
  }
  main.index__home .sec__news .headline {
    grid-column: 3/1;
  }
  main.index__home .sec__news .headline .hl-img {
    margin: auto;
  }

  main.index__home .sec__news .post {
    grid-column: 3/1;
  }
  main.index__home .sec__news .post__list-item a {
    padding: 1rem 2rem .5rem 0;
    grid-template-columns: 4rem auto;
  }
  main.index__home .sec__news .post__list-item svg {
    width: 25px;
    right: 0.75rem;
  }
  main.index__home .sec__news .post__list-item .arrow {
    width: 5vw;
    height: 5vw;
  }

  main.index__home .sec__news .button {
    position: relative;
    left: inherit;
    bottom: inherit;
  }
/*  */
  .home-infogame main.index__home .sec__news::after {
    content: none;
  }
}



/* SNS  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .sec__sns {
	background: #fff;
  overflow: hidden;
}
main.index__home .sec__sns .contents__block > *:not(.headline) {
  margin-top: 4rem;
  padding-bottom: 4rem;
}
main.index__home .sec__sns .contents__block.bg-none > *:not(.headline) {
  background: none;
  margin-top: 4rem;
  padding-bottom: 0;
}
main.index__home .sec__sns .--has-bg-color-white {
  margin-top: 12.8rem;
}
main.index__home .sec__sns .headline {
  margin: auto;
  position: relative;
  padding-bottom: 0;
  width: calc(100% - 10rem);
}
main.index__home .sec__sns .headline .hl-img a {
  display: block;
}
main.index__home .sec__sns .instagram .headline,
main.index__home .sec__sns .youtube .headline {
  border-top: 1px solid #000;
  padding-top: 4rem;
  padding-bottom: 2.8rem;
}
main.index__home .sec__sns .instagram {
  margin-top: 4.8rem;
}
main.index__home .sec__sns .instagram .icon {
  border: none;
  position: relative;
  z-index: 1;
}
main.index__home .sec__sns .instagram .icon img {
  width: 280px;
  height: 280px;
  position: absolute;
  z-index: 2;
  right: 2rem;
  top: -12rem;
}
main.index__home .sec__sns .instagram .scroll {
  animation: scrollAnime 30s linear infinite;
}
main.index__home .sec__sns .instagram .scroll a {
  display: flex;
  width: 100vw;
  transition: opacity 0.3s ease;
}
main.index__home .sec__sns .instagram .scroll a:hover {
  opacity: 0.7;
}
main.index__home .sec__sns .instagram .scroll a img:first-child {
  animation: scrollAnime01 60s -30s linear infinite;
}
main.index__home .sec__sns .instagram .scroll a img:last-child {
  animation: scrollAnime02 60s linear infinite;
}
main.index__home .sec__sns .instagram .scroll img {
  width: 100vw;
}
main.index__home .sec__sns .sns__bnr__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 13%;
}
main.index__home .sec__sns .sns__bnr__list-item a {
  display: block;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 769px) {
  main.index__home .sec__sns .contents__block > *:not(.headline) {
    margin-top: 3rem;
    padding-bottom: 0;
  }
  main.index__home .sec__sns .--has-bg-color-white {
    margin-top: 6.4rem;
  }
  main.index__home .sec__sns .headline {
    width: calc(100% - 2.5rem);
  }
  main.index__home .sec__sns .instagram .headline,
  main.index__home .sec__sns .youtube .headline {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  main.index__home .sec__sns .instagram {
    margin-top: 2.4rem;
    position: relative;
  }
  main.index__home .sec__sns .instagram .icon {
    position: absolute;
    bottom: 22%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  main.index__home .sec__sns .instagram .icon img {
    width: 129px;
    height: 129px;
    top: inherit;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  main.index__home .sec__sns .instagram .scroll a {
    width: 300%;
  }
  main.index__home .sec__sns .instagram .scroll img {
    width: 100%;
  }
  main.index__home .sec__sns .sns__bnr__list {
    gap: 1rem;
    position: relative;
    width: 40%;
    margin: auto;
    right: inherit;
    transform: translateY(1.5rem);
  }
  main.index__home .sec__sns .sns__bnr__list-item a:hover {
    opacity: 0.7;
  }
}

@keyframes scrollAnime01 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollAnime02 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes scrollAnime03 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-300%);
  }
}

/* __30: カスタム投稿 - Youtube  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .post-youtube.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: inherit;
}
main.index__home .post-youtube__list-item {
  max-width: 590px;
}
main.index__home .post-youtube__list-item a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
main.index__home .post-youtube__list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
main.index__home .sec__sns .tool-box button {
  display: none;
}
@media only screen and (max-width: 769px) {
  .post-youtube__list-item {
    width: 80% !important;
  }
  .post-youtube__list-item a:hover {
    opacity: 0.7;
  }
}

/* __40: カスタム投稿 - Pickup Movie  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.index__home .post-pickup-movie .youtube-wrapper {
	position: relative;
    width: 100%;
    height: calc(240px * 16 / 9);
    margin: 15px auto 0;
    background: #000;
    border: 2px solid #fff;
    border-radius: 20px;
    overflow: hidden;
}
main.index__home .post-pickup-movie .youtube-wrapper p,
main.index__home .post-pickup-movie .youtube-wrapper iframe {
	width: 100%;
    height: 100%;
    border: 0;
}
@media only screen and (max-width: 769px) {
	main.index__home .post-pickup-movie .youtube-wrapper {
        width: 100%;
        height: calc(180px * 16 / 9);
	}
}