.content__box {
  padding: 0 0;
}
@media only screen and (max-width: 767px) {
  .content__box {
    padding: 0 0;
  }
}
.content__box .page__ttl {
  text-align: center;
  position: relative;
  z-index: 10;
  transform: translateY(50%);
}
@media only screen and (max-width: 767px) {
  .content__box .page__ttl {
    margin-bottom: 0;
  }
}
.content__box .page__ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 620px;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .content__box .page__ttl span {
    width: 66%;
    max-width: 260px;
  }
}
.content__box .page__ttl span picture {
  display: block;
  width: 100%;
}
.content__box .page__ttl span img {
  width: 100%;
  height: auto;
}
.content__box .page__ttl span::after {
  content: "";
  display: flex;
  align-items: center;
  width: 11.3%;
  height: auto;
  aspect-ratio: 65/87;
  background: url(/recruit/assets/images/common/chara01.svg) center center/contain no-repeat;
  position: absolute;
  right: 6.5%;
  top: 50%;
  z-index: 1;
  margin: auto;
  animation: float-bobbing 3s ease-in-out infinite;
}
@media only screen and (max-width: 767px) {
  .content__box .page__ttl span::after {
    display: none;
  }
}
.content__box > .content__inner {
  width: 90%;
  max-width: 1400px;
  margin-inline: auto;
  box-sizing: border-box;
  border: 3px solid #000000;
  border-radius: 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .content__box > .content__inner {
    border: none;
    background: none;
    border-radius: 0;
  }
}
.content__box > .content__inner .img__box {
  position: relative;
}
.content__box > .content__inner .img__box.box--pc {
  display: block;
}
.content__box > .content__inner .img__box.box--pc::after {
  content: "";
  display: flex;
  align-items: center;
  width: 6%;
  height: auto;
  aspect-ratio: 65/87;
  background: url(/recruit/assets/images/common/chara02.svg) center center/contain no-repeat;
  position: absolute;
  inset: 0;
  top: -20%;
  right: 57%;
  margin: auto;
  animation: float-bobbing 3s ease-in-out infinite;
}
@media only screen and (max-width: 767px) {
  .content__box > .content__inner .img__box.box--pc::after {
    display: none;
  }
}
.content__box > .content__inner .img__box.box--sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .content__box > .content__inner .img__box.box--pc {
    display: none;
  }
  .content__box > .content__inner .img__box.box--sp {
    display: block;
  }
  .content__box > .content__inner .img__box.box--sp::after {
    content: "";
    display: flex;
    align-items: center;
    width: 17%;
    height: auto;
    aspect-ratio: 65/87;
    background: url(/recruit/assets/images/common/chara02.svg) center center/contain no-repeat;
    position: absolute;
    inset: 0;
    top: 50%;
    margin: auto;
    animation: float-bobbing 3s ease-in-out infinite;
  }
}
.content__box > .content__inner .img__box img {
  width: 100%;
  height: auto;
}

.about__link {
  padding-block: 45px 200px;
}
@media only screen and (max-width: 767px) {
  .about__link {
    padding-block: 45px;
  }
}
.about__link ul {
  width: 90%;
  max-width: 840px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .about__link ul {
    width: 82%;
    display: block;
  }
}
.about__link ul li {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .about__link ul li + li {
    margin-top: 20px;
  }
}
.about__link ul li a {
  padding: clamp(1.40625rem, 2.0833333333vw, 1.875rem) clamp(2.34375rem, 3.4722222222vw, 3.125rem);
  box-sizing: border-box;
  background: #fcee21;
  border-radius: 100px;
  border: 3.5px solid #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000000;
  font-size: clamp(1.3125rem, 1.9444444444vw, 1.75rem);
  font-weight: 700;
  transition: all 0.3s;
}
.about__link ul li a:before, .about__link ul li a:after {
  content: "";
  display: block;
  transition: all 0.3s;
}
.about__link ul li a:before {
  width: clamp(1.3125rem, 1.9444444444vw, 1.75rem);
  height: clamp(1.3125rem, 1.9444444444vw, 1.75rem);
  -webkit-mask-image: url(/recruit/assets/images/common/icon_blank02.svg);
          mask-image: url(/recruit/assets/images/common/icon_blank02.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #000000;
}
.about__link ul li a:after {
  width: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  height: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  -webkit-mask-image: url(/recruit/assets/images/common/arrow01.svg);
          mask-image: url(/recruit/assets/images/common/arrow01.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #000000;
}
@media print, screen and (min-width: 768px) {
  .about__link ul li a:hover {
    background: #ffffff;
    color: #40bbf0;
  }
  .about__link ul li a:hover:before {
    background: #40bbf0;
  }
  .about__link ul li a:hover:after {
    background: #40bbf0;
  }
}

@keyframes float-bobbing {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-80%);
  }
}