.swiper-scrollbar {
	max-width: 364px;
	height: 8px;
	margin: 0 auto 5em;
	cursor: pointer;
}

@media(max-width:767px) {
	.swiper-scrollbar {
		display: none;
}
}

.swiper-scrollbar-drag {
	background: #000;
}

.swiper-slide {
	width: auto;
	text-align: center;
}

@media(max-width:767px) {
	.swiper-slide {
		width: 100%;
}
}

.swiper-control {
	display: block;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: #000;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.swiper-control :focus {
	outline: none;
}

.swiper-control.swiper-next {
	background: url(/recruit/assets/img/icon_slider_next.png);
	background-size: contain;
	transition: .5s;
}

.swiper-control.swiper-next:hover {
	opacity: .5;
}

@media(min-width:1250px) {
	.swiper-control.swiper-next {
		right: -50px;
}
}

.swiper-control.swiper-prev {
	background: url(/recruit/assets/img/icon_slider_prev.png);
	background-size: contain;
	transition: .5s;
}

.swiper-control.swiper-prev:hover {
	opacity: .5;
}

@media(min-width:1250px) {
	.swiper-control.swiper-prev {
		left: -50px;
}
}

.swipers {
	position: relative;
}

.swiper-prev {
	left: 0;
}

.swiper-next,
.swiper-prev {
	position: absolute;
	top: 50%;
	z-index: 2;
	margin-top: -20px;
}

.swiper-next {
	right: 0;
}

.gallery__content__slideitem {
	width: 100%;
	margin: 0 auto;
}

@media(max-width:767px) {
	.gallery__content__slideitem {
		width: auto;
}
}

.gallery img {
	max-width: 100%;
}

@media(max-width:767px) {
	.gallery img {
		max-width: 100%;
}
}

.swiper-button-disabled {
	opacity: 0 !important;
}

.footer__bottom {
	background: #004484;
}

.footer__bottom__logo {
	display: flex;
	align-items: center;
}

.footer__bottom__logo a {
	margin: 0;
}
.about__contents {
  margin-top: 80px;
  text-align: center;
}

@media (min-width: 768px) {
  .about__contents {
    margin-top: 120px;
  }
}

.about__contents img {
  margin: 0 auto 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .about__contents img {
    margin: 0 auto 60px;
    width: 1000px;
    max-width: 100%;
  }
}

.about__contents__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .about__contents__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1110px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .about__contents__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about__contents__list__item {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: left;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 69, 230, 0.3);
}

.about__contents__list__item:hover {
  color: inherit;
  text-decoration: none;
}

.about__contents__list__item::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: block;
  width: 2px;
  height: 0;
  content: "";
  background-color: var(--optim-brand-accent);
  transition: 0.3s;
}

.about__contents__list__item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: block;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--optim-brand-accent);
  transition: 0.3s;
}

.about__contents__list__item:hover::before,
.about__contents__list__item:hover .about__contents__list__item__inner::before {
  height: 100%;
}

.about__contents__list__item:hover::after,
.about__contents__list__item:hover .about__contents__list__item__inner::after {
  width: 100%;
}

.about__contents__list__item__inner {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-areas:
    "thumb title"
    "thumb text";
}

.about__contents__list__item__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  width: 2px;
  height: 0;
  content: "";
  background-color: var(--optim-brand-accent);
  transition: 0.3s;
}

.about__contents__list__item__inner::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--optim-brand-accent);
  transition: 0.3s;
}

@media (min-width: 768px) {
  .about__contents__list__item__inner {
    grid-template-columns: 1fr;
    grid-template-rows: 202.5px auto;
    grid-template-areas:
      "thumb"
      "text";
  }
}

.about__contents__list__item__thumb {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  grid-area: thumb;
}

.about__contents__list__item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about__contents__list__item__thumb::after {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--optim-brand-gray-alpha-50);
  }
}

.about__contents__list__item__title {
  align-self: center;
  padding: 12px 16px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  grid-area: title;
}

@media (min-width: 768px) {
  .about__contents__list__item__title {
    position: relative;
    z-index: 1;
    align-self: center;
    justify-self: center;
    padding: 0 16px;
    font-size: 36px;
    line-height: 1.1;
    color: var(--white);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 69, 230, 0.3);
    grid-area: thumb;
  }
}

.about__contents__list__item__text {
  align-self: start;
  padding: 4px 16px 12px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  grid-area: text;
}

@media (min-width: 768px) {
  .about__contents__list__item__text {
    padding: 20px;
    font-size: 18px;
  }
}

.about__other__text {
  font-size: 16px;
}

@media (min-width: 768px) {
  .about__other__text {
    font-size: 20px;
  }
}
