@charset "UTF-8";

.pcview {
  display: initial !important;
}

.spview {
  display: none;
}

.tbview {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcview {
    display: none !important;
  }
  .tbview {
    display: initial !important;
  }
}
@media screen and (max-width: 520px) {
  .tbview {
    display: none !important;
  }
  .spview {
    display: initial !important;
  }
}
html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.wrap {
  overflow-x: hidden;
  width: 100%;
}

img {
  display: block;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
}
a[href^="tel:"] {
  pointer-events: none;
}

p {
  font-size: 15px;
}

#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
#g-nav.panelactive::before {
  content: "";
  background: url(../img/header-deco01.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -20px;
  top: -20px;
  width: 261px;
  height: 289px;
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 520px) {
  #g-nav.panelactive::before {
    left: auto;
    right: 0;
    transform: scale(-1, 1);
    width: 160px;
    height: 219px;
  }
}
#g-nav.panelactive::after {
  content: "";
  background: url(../img/header-deco02.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 414px;
  height: 373px;
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 520px) {
  #g-nav.panelactive::after {
    display: none;
  }
}

.circle-bg {
  position: fixed;
  z-index: 5;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  /**/
  transform: scale(0);
  right: -50px;
  top: -50px;
  transition: all 0.6s;
}

.circle-bg.circleactive {
  transform: scale(50);
}
.circle-bg.circleactive #g-nav-list {
  display: block;
}

#g-nav-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100dvh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
}

#g-nav.panelactive .g-nav-flex {
  opacity: 1;
  z-index: 999;
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  max-width: 1000px;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.g-nav-flex {
  opacity: 0;
  position: absolute;
  z-index: -999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  display: flex;
  justify-content: space-between;
}
.g-nav-flex .g-nav-ul {
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.g-nav-flex .g-nav-ul li .en-font {
  font-size: 2rem;
  line-height: 1;
  font-family: area-normal, sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 2px;
  word-break: break-all;
  white-space: nowrap;
}
.g-nav-flex .g-nav-ul li a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  transition: 0.4s;
}
.g-nav-flex .g-nav-ul li a:hover {
  color: #2996de !important;
}
.g-nav-flex .g-nav-ul li .g-nav-recruit {
  pointer-events: none;
  position: relative;
}
@media screen and (max-width: 520px) {
  .g-nav-flex .g-nav-ul li .g-nav-recruit {
    pointer-events: auto;
  }
  .g-nav-flex .g-nav-ul li .g-nav-recruit:hover {
    color: #000 !important;
  }
  .g-nav-flex .g-nav-ul li .g-nav-recruit::before, .g-nav-flex .g-nav-ul li .g-nav-recruit::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #333;
  }
  .g-nav-flex .g-nav-ul li .g-nav-recruit::before {
    top: 27%;
    right: -30px;
    transform: rotate(0deg);
  }
  .g-nav-flex .g-nav-ul li .g-nav-recruit::after {
    top: 27%;
    right: -30px;
    transform: rotate(90deg);
    transition: 0.4s;
  }
}
@media screen and (max-width: 520px) {
  .g-nav-flex .g-nav-ul li .g-nav-recruit.active::after {
    transform: rotate(0);
    transition: 0.4s;
  }
}
.g-nav-flex .g-nav-ul li .ja-font {
  font-size: 0.9em;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  letter-spacing: 1.3px;
  margin-top: 7px;
  white-space: nowrap;
}
.g-nav-flex .g-nav-ul .g-nav-under {
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 30px;
}
.g-nav-flex .g-nav-ul .g-nav-under li .en-font {
  font-size: 1.4rem;
}
.g-nav-flex .g-nav-ul .g-nav-under li .ja-font {
  font-size: 0.8em;
}
@media screen and (max-width: 520px) {
  .g-nav-flex .g-nav-ul .g-nav-under {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .g-nav-flex .g-nav-ul {
    width: 49%;
    gap: 25px 0;
  }
  .g-nav-flex .g-nav-ul li .en-font {
    font-size: 1.5rem;
  }
  .g-nav-flex .g-nav-ul .g-nav-under {
    gap: 15px 0;
    margin-top: 20px;
  }
  .g-nav-flex .g-nav-ul .g-nav-under li .en-font {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 520px) {
  .g-nav-flex .g-nav-ul li a {
    flex-wrap: wrap;
    gap: 2px 0;
  }
  .g-nav-flex .g-nav-ul li a .en-font {
    font-size: 1.2rem;
    width: 100%;
  }
  .g-nav-flex .g-nav-ul li a .ja-font {
    width: 100%;
    margin-top: 0;
  }
  .g-nav-flex .g-nav-ul .g-nav-under {
    margin-top: 10px;
  }
  .g-nav-flex .g-nav-ul .g-nav-under li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .g-nav-flex {
    width: 90%;
  }
}
@media screen and (max-width: 520px) {
  .g-nav-flex {
    flex-direction: column;
    gap: 15px 0;
    position: initial;
    transform: initial;
    padding: 60px 0 10%;
    margin: 0 auto;
  }
  .g-nav-flex .g-nav-ul {
    width: 100%;
    gap: 15px 0;
  }
}

.h-bnr {
  display: none;
}
@media screen and (max-width: 520px) {
  .h-bnr {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .h-bnr li {
    width: 49%;
  }
  .h-bnr li a {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 13px 0;
    background: #2996de;
    color: #fff;
    line-height: 1;
  }
  .h-bnr li a span {
    display: block;
    font-weight: 500;
    font-family: area-normal, sans-serif;
    font-size: 0.7em;
    margin-top: 5px;
  }
  .h-bnr li:nth-of-type(2) a {
    background: #5ca9dd;
  }
  .h-bnr li:last-of-type {
    width: 100%;
  }
  .h-bnr li:last-of-type a {
    background: #15b900;
  }
}

.openbtn {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 9999;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: #000;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 30px;
}
.openbtn span:nth-of-type(2) {
  top: 38px;
}
.openbtn span:nth-of-type(3) {
  top: 46px;
}
@media screen and (max-width: 520px) {
  .openbtn {
    width: 60px;
    height: 60px;
  }
  .openbtn span {
    left: 17px;
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
  }
  .openbtn span:nth-of-type(2) {
    top: 28px;
  }
  .openbtn span:nth-of-type(3) {
    top: 36px;
  }
}

.openbtn.active span:nth-of-type(1) {
  top: 32px;
  left: 29px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 44px;
  left: 29px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media screen and (max-width: 520px) {
  .openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 21px;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 34px;
    left: 21px;
  }
}

.nav-btn {
  display: flex;
  justify-content: end;
  position: fixed;
  width: 100%;
  right: 80px;
  top: 0;
  z-index: 10;
}
.nav-btn li {
  width: 15%;
}
.nav-btn li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  max-height: 80px;
  background: #15b900;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-align: center;
}
.nav-btn li a span {
  display: block;
  font-size: 0.7em;
  font-weight: 500;
}
.nav-btn .line {
  opacity: 0;
}
.nav-btn .entry a {
  background: #2996de;
}
.nav-btn .intern a {
  background: #5ca9dd;
}
@media screen and (max-width: 768px) {
  .nav-btn li {
    width: 25%;
  }
}
@media screen and (max-width: 520px) {
  .nav-btn {
    display: none;
  }
}

.nav-btn.btn-active {
  z-index: 9999;
}
.nav-btn.btn-active .line {
  opacity: 1;
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header > .sns-btn {
  display: flex;
  gap: 0 10px;
  justify-content: end;
  position: fixed;
  width: 100%;
  bottom: 35px;
  right: 80px;
  opacity: 0;
  z-index: -999;
}
header > .sns-btn li {
  width: 30px;
}
header > .sns-btn li a {
  display: block;
}
@media screen and (max-width: 520px) {
  header > .sns-btn {
    display: none;
  }
}

header > .sns-btn.sns-active {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 9999;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header nav .sns-btn {
  display: none;
}
@media screen and (max-width: 520px) {
  header nav .sns-btn {
    display: flex;
    gap: 0 10px;
    justify-content: end;
    width: 100%;
  }
  header nav .sns-btn li {
    width: 30px;
  }
  header nav .sns-btn li a {
    display: block;
  }
}

.logo {
  width: 17%;
  position: absolute;
  z-index: 20;
  top: 33px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .logo {
    width: 23%;
    top: 25px;
  }
}
@media screen and (max-width: 520px) {
  .logo {
    width: 35%;
    top: 17px;
    left: 4%;
  }
}

.logo.logo-active {
  z-index: 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6% 0;
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
}
footer h1 {
  width: 17%;
}
footer .f-txt .f-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .f-txt .f-nav .fnav-cnt {
  display: flex;
  gap: 0 20px;
}
footer .f-txt .f-nav .fnav-cnt a {
  letter-spacing: 1.5px;
}
footer .f-txt .f-nav .sns-btn {
  display: flex;
  gap: 0 10px;
}
footer .f-txt .f-nav .sns-btn li {
  width: 30px;
}
footer .f-txt .f-nav .sns-btn li a {
  display: block;
}
footer .f-txt .copy {
  color: #b2b2b2;
  font-weight: 500;
  font-size: 15px;
  text-align: end;
  margin-top: 10px;
  letter-spacing: 1px;
}
@media screen and (max-width: 520px) {
  footer {
    flex-direction: column;
    gap: 15px 0;
    align-items: normal;
    padding: 10% 0 6%;
  }
  footer h1 {
    width: 48%;
  }
  footer .f-txt .f-nav {
    flex-direction: column;
    gap: 20px 0;
  }
  footer .f-txt .f-nav .fnav-cnt {
    width: 100%;
  }
  footer .f-txt .f-nav .sns-btn {
    justify-content: end;
    width: 100%;
  }
  footer .f-txt .copy {
    font-size: 10px;
  }
}

.home .slider-wrapper {
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 1;
}
.home .slider-wrapper .slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #1e1e1e;
}
.home .slider-wrapper .slider-container .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: top center;
  position: absolute;
  animation: slideshow 25s infinite;
  opacity: 0;
}
.home .slider-wrapper .slider-container .slide:nth-child(1) {
  background-image: url(../img/mainvl-slide01_25.webp);
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-container .slide:nth-child(1) {
    background-position: 60%, 100%;
  }
}
.home .slider-wrapper .slider-container .slide:nth-child(2) {
  background-image: url(../img/mainvl-slide02_25.webp);
  animation-delay: 5s;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-container .slide:nth-child(2) {
    background-position: 0%, 100%;
  }
}
.home .slider-wrapper .slider-container .slide:nth-child(3) {
  background-image: url(../img/mainvl-slide03_25.webp);
  animation-delay: 10s;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-container .slide:nth-child(3) {
    background-position: 60%, 100%;
  }
}
.home .slider-wrapper .slider-container .slide:nth-child(4) {
  background-image: url(../img/mainvl-slide04_25.webp);
  animation-delay: 15s;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-container .slide:nth-child(4) {
    background-position: 70%, 100%;
  }
}
.home .slider-wrapper .slider-container .slide:nth-child(5) {
  background-image: url(../img/mainvl-slide05_25.webp);
  animation-delay: 20s;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-container .slide:nth-child(5) {
    background-position: 30%, 100%;
  }
}
.home .slider-wrapper .slider-container .slide > img {
  width: 100%;
  height: auto;
}
.home .slider-wrapper .slider-txt {
  width: 100%;
  position: absolute;
  bottom: 10%;
  left: 8%;
  color: #fff;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-txt {
    height: 25%;
  }
}
.home .slider-wrapper .slider-txt::after {
  content: "";
  position: absolute;
  top: -101px;
  left: -55px;
  width: 100%;
  max-width: 377px;
  height: 100%;
  max-height: 117px;
  background-image: url(../img/dear-my-career.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  animation: fadeInDown 1s ease backwards;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-txt::after {
    top: -64px;
    left: -4%;
    max-width: 200px;
    max-height: 60px;
  }
}
.home .slider-wrapper .slider-txt > p {
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}
.home .slider-wrapper .slider-txt > p:nth-child(1) {
  font-size: 3.6vw;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-txt > p:nth-child(1) {
    font-size: 6vw;
  }
}
.home .slider-wrapper .slider-txt > p:nth-child(2) {
  font-size: 8.8vw;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-txt > p:nth-child(2) {
    font-size: 14vw;
  }
}
.home .slider-wrapper .slider-txt > p > span {
  display: inline-block;
  font-family: "kinuta-mincho-stdn", sans-serif, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.home .slider-wrapper .slider-txt .speed {
  letter-spacing: 0;
}
.home .slider-wrapper .slider-txt .speed span:nth-of-type(1), .home .slider-wrapper .slider-txt .speed span:nth-of-type(2), .home .slider-wrapper .slider-txt .speed span:nth-of-type(6), .home .slider-wrapper .slider-txt .speed span:nth-of-type(7) {
  font-size: 1.1em;
}
.home .slider-wrapper .slider-txt .speed span:nth-of-type(6) {
  margin-left: -25px;
}
@media screen and (max-width: 520px) {
  .home .slider-wrapper .slider-txt .speed span:nth-of-type(6) {
    margin-left: -15px;
  }
}
.home .slider-wrapper .slider-txt .create #p-one span, .home .slider-wrapper .slider-txt .create #p-two span {
  font-size: 0.7em;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    transform: translate(0px, -100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}

#svg-animation .st0 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 50;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
}

#svg-animation {
  max-width: 100%;
  height: auto;
}

@keyframes slideshow {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    transform: scale(1.2);
  }
}
h2 {
  font-size: 4.3rem;
  font-family: area-normal, sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
h2 span {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 0.4em;
  font-style: normal;
  display: block;
  font-weight: 500;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 520px) {
  h2 {
    font-size: 2rem;
  }
  h2 span {
    margin-top: 10px;
  }
}

main.home h3 {
  font-size: 1.9rem;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 520px) {
  main.home h3 {
    font-size: 1.3rem;
  }
}

main.home .message {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 10% 0;
}
main.home .message::before {
  background: url(../img/message-bg.svg) no-repeat;
  background-size: contain;
  top: -10px;
  left: -30px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.home .message .message-txt {
  margin-top: 8em;
}
main.home .message .message-txt p {
  font-size: clamp(26px, 2.3vw, 2rem);
  font-weight: 500;
  margin-bottom: 1.2em;
  line-height: 2;
  letter-spacing: 2px;
}
main.home .message .message-txt p:nth-of-type(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  main.home .message {
    flex-direction: column;
  }
  main.home .message::before {
    background: url(../img/message-bg-sp.svg) no-repeat;
    background-size: contain;
    left: 50%;
  }
  main.home .message .message-txt {
    margin-top: 1.5em;
  }
  main.home .message .message-txt p {
    font-size: 1rem;
    margin-bottom: 1em;
    line-height: 2.2;
    letter-spacing: 1px;
  }
}

main.home .video {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
main.home .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main.home .news,
main.internship .news {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
}
main.home .news .list,
main.internship .news .list {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
main.home .news .list li,
main.internship .news .list li {
  width: 19%;
}
main.home .news .list li .date,
main.internship .news .list li .date {
  font-size: 14px;
  margin-top: 10px;
}
main.home .news .list li dt,
main.internship .news .list li dt {
  font-size: 15px;
  font-weight: 500;
  padding: 2px 0 5px;
}
main.home .news .list li .likes,
main.internship .news .list li .likes {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #c80e47;
}
main.home .news .list li .likes .like-icon,
main.internship .news .list li .likes .like-icon {
  font-size: 18px;
}
main.home .news .list li .likes .material-icons,
main.internship .news .list li .likes .material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 520px) {
  main.home .news .list,
  main.internship .news .list {
    padding-top: 30px;
    gap: 20px 0;
    flex-wrap: wrap;
  }
  main.home .news .list li,
  main.internship .news .list li {
    width: 48%;
  }
  main.home .news .list li a,
  main.internship .news .list li a {
    display: block;
  }
  main.home .news .list li a img,
  main.internship .news .list li a img {
    border-radius: 4px;
    margin-bottom: 0;
    width: 100%;
    display: block;
    height: 100%;
  }
  main.home .news .list li a div,
  main.internship .news .list li a div {
    width: 100%;
  }
  main.home .news .list li a div .date,
  main.internship .news .list li a div .date {
    margin-top: 0;
    font-size: 0.7em;
  }
  main.home .news .list li a div dt,
  main.internship .news .list li a div dt {
    font-size: 13px;
  }
  main.home .news .list li a div .likes .material-icons,
  main.internship .news .list li a div .likes .material-icons {
    font-size: 15px;
  }
  main.home .news .list li a div .likes span,
  main.internship .news .list li a div .likes span {
    font-size: 13px;
  }
}

.topbtns {
  display: flex;
  justify-content: center;
  gap: 0 30px;
  padding-top: 40px;
}
.topbtns li {
  width: 30%;
}
.topbtns li a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
.topbtns li a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  .topbtns li a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
.topbtns li:nth-of-type(2) a {
  background: #fff;
  color: #2996de;
}
.topbtns li:nth-of-type(2) a:hover {
  background: #2996de;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .topbtns {
    justify-content: space-between;
    gap: 0;
    width: 90%;
    margin: 0 auto;
  }
  .topbtns li {
    width: 48%;
  }
}
@media screen and (max-width: 520px) {
  .topbtns {
    padding-top: 30px;
    flex-direction: column;
    gap: 10px 0;
  }
  .topbtns li {
    width: 100%;
  }
  .topbtns li a {
    font-size: 1rem;
    padding: 10px 0;
  }
}

main.home .what {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
  color: #fff;
  position: relative;
}
main.home .what::after {
  background: #2996de;
  top: 0px;
  left: 0px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.home .what h2 {
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.home .what h2 {
    padding-bottom: 30px;
  }
}
main.home .what > p {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
main.home .what > p > span {
  color: #fde52c;
  border-bottom: 2px solid #fde52c;
  position: relative;
}
main.home .what > p > span span {
  font-size: 1.4em;
  font-weight: 500;
}
main.home .what > p > span::after {
  content: "（2025年2月現在）";
  width: 100%;
  font-size: 0.6em;
  color: #fff;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  main.home .what > p > span {
    display: block;
    width: fit-content;
    margin: 0px auto 30px;
  }
}
@media screen and (max-width: 520px) {
  main.home .what > p {
    font-size: 1.2rem;
  }
}
main.home .what .sub-ttl {
  font-size: 1.9rem;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}
@media screen and (max-width: 520px) {
  main.home .what .sub-ttl {
    font-size: 1.4rem;
  }
}
main.home .what ul {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}
main.home .what ul li {
  width: 33.3333333333%;
  padding: 30px;
}
main.home .what ul li figure {
  width: 80%;
  margin: 0 auto;
}
main.home .what ul li .what-ttl {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 1.3px;
  padding-bottom: 30px;
}
@media screen and (max-width: 520px) {
  main.home .what ul li .what-ttl {
    padding-bottom: 20px;
    font-size: 1rem;
  }
}
main.home .what ul li .what-ttl span {
  display: block;
  font-size: 0.7em;
  color: #fde52c;
  letter-spacing: 2px;
}
main.home .what ul .br-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
}
main.home .what ul .br-right {
  border-right: 1px solid rgba(255, 255, 255, 0.1882352941);
}
@media screen and (max-width: 520px) {
  main.home .what ul {
    padding: 30px 0;
  }
  main.home .what ul li {
    width: 50%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main.home .what ul li figure {
    width: 100%;
  }
  main.home .what ul li:last-of-type {
    border-bottom: none;
  }
  main.home .what ul .br-right {
    border-right: none;
  }
  main.home .what ul .br-bottom {
    border-bottom: none;
  }
}
main.home .what .btn {
  width: 40%;
  margin: 0 auto;
}
main.home .what .btn a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
  background: #fff;
  color: #2996de;
  border: 2px solid #fff;
}
main.home .what .btn a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  main.home .what .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
main.home .what .btn a:hover {
  background: #2996de;
  color: #fff;
}
@media screen and (max-width: 520px) {
  main.home .what .btn {
    width: 90%;
  }
  main.home .what .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}

main.home .movie {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
}
main.home .movie h2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.home .movie h2 {
    padding-bottom: 30px;
  }
}
main.home .movie .movie-cnt {
  display: flex;
  justify-content: space-between;
}
main.home .movie .movie-cnt li {
  width: 32%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
main.home .movie .movie-cnt li p {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  text-align: center;
  width: 45%;
  padding: 3px 0;
}
@media screen and (max-width: 768px) {
  main.home .movie .movie-cnt li p {
    width: 55%;
  }
}
@media screen and (max-width: 520px) {
  main.home .movie .movie-cnt li p {
    width: 45%;
  }
}
main.home .movie .movie-cnt li img {
  transition: 0.4s;
}
main.home .movie .movie-cnt li img:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 520px) {
  main.home .movie .movie-cnt {
    flex-direction: column;
    gap: 20px 0;
  }
  main.home .movie .movie-cnt li {
    width: 90%;
    margin: 0 auto;
  }
}

main.home .why {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 0 10%;
}
main.home .why h2 {
  text-align: center;
  padding: 10% 0 50px 0;
}
@media screen and (max-width: 520px) {
  main.home .why h2 {
    padding-bottom: 30px;
    line-height: 1.2;
  }
}
main.home .why p {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (max-width: 520px) {
  main.home .why p {
    font-size: 1.1rem;
  }
}
main.home .why .field {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  padding: 6% 0;
}
main.home .why .field li {
  width: 18%;
}
main.home .why .field li a {
  display: block;
}
main.home .why .field li a:hover img {
  transform: scale(1.1);
}
main.home .why .field li img {
  transition: 0.4s;
  overflow: hidden;
  width: 70%;
  display: block;
  margin: 0 auto;
}
main.home .why .field li figure {
  object-fit: cover;
  overflow: hidden;
}
main.home .why .field li p {
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
  font-size: 1.0714285714vw;
}
@media screen and (max-width: 520px) {
  main.home .why .field li {
    width: 48%;
  }
  main.home .why .field li p {
    font-size: 12px;
  }
  main.home .why .field li img {
    width: 75%;
    margin: 0 auto;
  }
}
main.home .why .enterprise {
  border: 1.5px solid #2996de;
}
main.home .why .enterprise .etp-ttl {
  background: #2996de;
  padding: 10px 0;
  font-weight: 500;
  font-size: 1.3rem;
  color: #fff;
}
main.home .why .enterprise ul {
  padding: 40px 40px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2%;
  justify-content: space-between;
}
main.home .why .enterprise ul li {
  width: 22%;
}
main.home .why .enterprise .right {
  text-align: right;
  font-size: 15px;
  padding: 0 40px 40px;
}
@media screen and (max-width: 768px) {
  main.home .why .enterprise ul {
    gap: 0;
  }
}
@media screen and (max-width: 520px) {
  main.home .why .enterprise .etp-ttl {
    font-size: 1.1rem;
    padding: 7px 0;
  }
  main.home .why .enterprise ul {
    padding: 30px 20px 30px;
    gap: 0 5%;
    justify-content: flex-start;
    align-items: center;
  }
  main.home .why .enterprise ul li {
    width: 30%;
  }
  main.home .why .enterprise .right {
    font-size: 13px;
    padding: 0 20px 30px;
  }
}

main.home .alma {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding-bottom: 10%;
}
main.home .alma h2 {
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.home .alma h2 {
    padding-bottom: 30px;
    line-height: 1.2;
  }
}
main.home .alma .alma-cnt {
  background-color: #E9F4FC;
  padding: 3% 3% 5%;
}
main.home .alma .school {
  margin-bottom: 5%;
}
main.home .alma h3 {
  margin-bottom: 3%;
  padding-bottom: 0;
  padding-left: .5em;
  line-height: 2;
  border-bottom: 1px solid #2996DE;
  color: #2996DE;
  text-align: left;
}
main.home .alma ul {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
  gap: 1%;
}
main.home .alma ul li {
  position: relative;
  width: calc(98% / 3);
  padding-left: 2em;
}
@media screen and (max-width: 860px) {
  main.home .alma ul li {
    width: 49%;
  }
}
@media screen and (max-width: 520px) {
  main.home .alma ul li {
    width: 100%;
  }
}
main.home .alma ul li::after {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  left: .5em;
  top: .55em;
  content: "";
  background: #2996DE;
}
main.home .alma .btn {
  width: 40%;
  margin: 5% auto 0 auto;
}
main.home .alma .btn a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
main.home .alma .btn a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  main.home .alma .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  main.home .alma .btn {
    width: 90%;
  }
  main.home .alma .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}

main.home .reason {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
}
main.home .reason h2 {
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.home .reason h2 {
    padding-bottom: 30px;
  }
}
main.home .reason h3 {
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.home .reason h3 {
    padding-bottom: 30px;
  }
}
main.home .reason .reason-cnt {
  display: flex;
  justify-content: space-between;
}
main.home .reason .reason-cnt .reason-ttl {
  width: 45%;
}
main.home .reason .reason-cnt .reason-ttl .name {
  margin-top: 7%;
}
main.home .reason .reason-cnt .reason-ttl .name .occ {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
main.home .reason .reason-cnt .reason-ttl .name .occ span {
  background: #2996de;
  padding: 2px 20px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
main.home .reason .reason-cnt .reason-ttl .name .full-name {
  font-size: 2rem;
  font-weight: 500;
}
main.home .reason .reason-cnt .reason-ttl .name .full-name .romaji {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.7px;
}
main.home .reason .reason-cnt .reason-ttl .name .full-name .romaji span {
  color: #2996de;
  font-weight: 600;
}
main.home .reason .reason-cnt .reason-img {
  width: 55%;
}
main.home .reason .reason-cnt .reason-txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.3em 0;
}
main.home .reason .reason-cnt .reason-txt p {
  line-height: 1.5;
  font-size: clamp(14px, 1.5vw, 20px);
}
@media screen and (max-width: 520px) {
  main.home .reason .reason-cnt .reason-txt {
    width: 100%;
    gap: 1em 0;
  }
  main.home .reason .reason-cnt .reason-txt p {
    font-size: 15px;
  }
}
main.home .reason .reason-cnt h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 25px;
}
@media screen and (max-width: 520px) {
  main.home .reason .reason-cnt {
    flex-direction: column;
    gap: 20px 0;
  }
  main.home .reason .reason-cnt .reason-ttl {
    width: 100%;
  }
  main.home .reason .reason-cnt .reason-ttl figure {
    width: 70%;
  }
  main.home .reason .reason-cnt .reason-ttl .name .occ {
    font-size: 1rem;
  }
  main.home .reason .reason-cnt .reason-ttl .name .occ span {
    font-size: 1rem;
    padding: 2px 15px;
  }
  main.home .reason .reason-cnt .reason-ttl .name .full-name {
    font-size: 1.5rem;
  }
  main.home .reason .reason-cnt .reason-ttl .name .full-name .romaji {
    font-size: 1rem;
  }
  main.home .reason .reason-cnt .reason-img {
    width: 100%;
  }
  main.home .reason .reason-cnt h4 {
    font-size: 1.1rem;
    margin-top: 15px;
  }
}
main.home .reason .beginning {
  padding: 3% 0 5%;
}
main.home .reason .beginning .begin-ttl {
  font-family: area-normal, sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 1.5rem;
}
main.home .reason .beginning .begin-txt {
  padding: 30px;
  border: 1.5px solid #000;
  margin-top: 10px;
  font-size: 1rem;
}
@media screen and (max-width: 520px) {
  main.home .reason .beginning {
    padding: 5% 0;
  }
  main.home .reason .beginning .begin-ttl {
    font-size: 1.1rem;
  }
  main.home .reason .beginning .begin-txt {
    font-size: 15px;
    padding: 20px;
  }
}
main.home .reason .btn {
  width: 40%;
  margin: 0 auto;
}
main.home .reason .btn a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
main.home .reason .btn a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  main.home .reason .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  main.home .reason .btn {
    width: 90%;
  }
  main.home .reason .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
main.home .reason .reason02 {
  padding: 10% 0;
  position: relative;
}
@media screen and (max-width: 520px) {
  main.home .reason .reason02 {
    padding: 10% 0 0;
  }
}
main.home .reason .reason02 .career {
  width: 95%;
  margin: 5% auto 0;
}
@media screen and (max-width: 520px) {
  main.home .reason .reason02 .career {
    width: 100%;
    max-width: 7% auto 0;
  }
}
main.home .reason .reason02::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0%;
  background: url(../img/reason-deco01.svg) no-repeat;
  background-size: contain;
  width: 218px;
  height: 373px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.home .reason .reason02::before {
    background: none;
  }
}
main.home .reason .reason02::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 0%;
  background: url(../img/reason-deco02.svg) no-repeat;
  background-size: contain;
  width: 268px;
  height: 406px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.home .reason .reason02::after {
    top: -6px;
    width: 100px;
    height: 406px;
  }
}
main.home .reason .challenge {
  padding: 10% 0;
  position: relative;
}
main.home .reason .challenge::before {
  content: "CHALLENGE";
  font-family: area-normal, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(4rem, -2.94rem + 14.46vw, 7rem);
  color: #b2b2b2;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  right: -7px;
  top: -8%;
  z-index: -1;
}
main.home .reason .challenge h4 {
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: 7%;
  right: 2%;
  margin: 0 calc(50% - 50vw);
}
main.home .reason .challenge ul {
  display: flex;
  justify-content: space-between;
}
main.home .reason .challenge ul li {
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.home .reason .challenge ul li .challe-cnt .challenge-img {
  position: relative;
}
main.home .reason .challenge ul li .challe-cnt .challenge-img .challe-career {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #2996de;
  text-align: center;
  color: #fff;
  padding: 2px 0;
  font-size: 15px;
  width: 25%;
  width: 45%;
}
main.home .reason .challenge ul li .challe-cnt .challe-ttl {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  padding: 20px 0 15px;
}
@media screen and (max-width: 520px) {
  main.home .reason .challenge ul li .challe-cnt .challe-ttl {
    font-size: 1rem;
    padding: 15px 0 10px;
  }
  main.home .reason .challenge ul li .challe-cnt .challe-ttl .tbview {
    display: none !important;
  }
}
main.home .reason .challenge ul li .challe-cnt .challe-txt {
  font-size: 15px;
}
main.home .reason .challenge ul li .challe-name {
  font-size: 1.5rem;
  margin-top: 20px;
}
main.home .reason .challenge ul li .challe-name span {
  display: block;
  font-size: 0.5em;
}
@media screen and (max-width: 520px) {
  main.home .reason .challenge ul li .challe-name {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 520px) {
  main.home .reason .challenge ul {
    flex-direction: column;
    gap: 30px 0;
  }
  main.home .reason .challenge ul li {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  main.home .reason .challenge {
    top: 0;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  main.home .reason .challenge::before {
    position: initial;
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
    display: block;
  }
  main.home .reason .challenge h4 {
    position: initial;
    font-size: 1.1rem;
    margin: 0 0 5% 0;
    text-align: center;
  }
  main.home .reason .challenge ul li .challe-cnt .challenge-img .challe-career {
    width: 75%;
  }
}
@media screen and (max-width: 520px) {
  main.home .reason .challenge ul li .challe-cnt .challenge-img .challe-career {
    width: 45%;
  }
}

main.home .benefits {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
}
main.home .benefits ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 7%;
}
main.home .benefits ul li {
  width: 32%;
  border: 2px solid #000;
  background: #fff;
  padding: 0 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.home .benefits ul li:nth-child(2) {
  margin-top: 30px;
}
@media screen and (max-width: 520px) {
  main.home .benefits ul li:nth-child(2) {
    margin-top: 60px;
  }
}
main.home .benefits ul li:nth-child(3) {
  margin-top: -20px;
}
@media screen and (max-width: 520px) {
  main.home .benefits ul li:nth-child(3) {
    margin-top: 60px;
  }
}
main.home .benefits ul li figure {
  width: 35%;
  margin: -25% auto 0;
}
main.home .benefits ul li .b-ttl {
  font-size: 1.2rem;
  text-align: center;
}
main.home .benefits ul li .b-ttl span {
  display: block;
  font-size: 0.7em;
  letter-spacing: 2px;
  color: #2996de;
}
main.home .benefits ul li .btn {
  width: 100%;
  padding-top: 30px;
}
@media screen and (max-width: 520px) {
  main.home .benefits ul li .btn {
    padding-top: 20px;
  }
}
main.home .benefits ul li .btn a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
main.home .benefits ul li .btn a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  main.home .benefits ul li .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  main.home .benefits ul {
    padding-top: 22%;
    flex-direction: column;
    gap: 20px 0;
  }
  main.home .benefits ul li {
    width: 100%;
  }
}

main.home .insta {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 7%;
  position: relative;
}
main.home .insta::before {
  background: #f8fbfd;
  top: -20%;
  left: 0px;
  height: 120%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.home .insta h2 {
  padding-bottom: 50px;
}
main.home .insta .instagram-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0;
}
@media screen and (max-width: 520px) {
  main.home .insta .instagram-container {
    gap: 7px 0;
  }
}
main.home .insta .instagram-container .instagram-item {
  width: 19%;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
main.home .insta .instagram-container .instagram-item .instagram-card__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
main.home .insta .instagram-container .instagram-item .insta_video {
  top: 47%;
}
main.home .insta .btn {
  width: 40%;
  margin: 5% auto 0;
}
main.home .insta .btn a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
main.home .insta .btn a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  main.home .insta .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  main.home .insta .btn {
    width: 90%;
  }
}
@media screen and (max-width: 520px) {
  main.home .insta h2 {
    padding-bottom: 30px;
  }
  main.home .insta .instagram-container .instagram-item {
    width: 32%;
  }
  main.home .insta .instagram-container .instagram-item:last-of-type {
    display: none;
  }
}

main.home .recruit {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 3%;
  position: relative;
}
main.home .recruit::before {
  content: "";
  background: url(../img/top-recruit-deco.svg) no-repeat;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  right: -40px;
  top: 0;
  width: 324px;
  height: 405px;
  z-index: -1;
  background-size: contain;
}
main.home .recruit h2,
main.home .recruit h3,
main.home .recruit p {
  text-align: center;
}
main.home .recruit h2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.home .recruit h2 {
    padding-bottom: 30px;
  }
}
main.home .recruit p {
  font-size: 1.5rem;
}
main.home .recruit ul {
  margin: 0 calc(50% - 50vw);
  padding-top: 5%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
main.home .recruit ul li {
  width: 19%;
}
main.home .recruit ul li:nth-child(even) {
  margin-top: 30px;
}
main.home .recruit ul li a {
  background: url(../img/top-recruit01.jpg) no-repeat;
  background-size: 100% !important;
  background-position: center !important;
  word-break: break-all;
  display: block;
  color: #fff;
  font-family: area-normal, sans-serif;
  font-style: normal;
  text-align: center;
  line-height: 1;
  letter-spacing: 2px;
  transition: 0.4s;
  padding: 76.4% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.7857142857vw;
}
main.home .recruit ul li a span {
  display: block;
  font-size: 0.6em;
  margin-top: 15px;
  letter-spacing: 1.5px;
}
main.home .recruit ul li a:hover {
  background-size: 120% !important;
  background-position: center !important;
}
main.home .recruit ul li:nth-child(2) a {
  background: url(../img/top-recruit02_25.jpg) no-repeat;
}
main.home .recruit ul li:nth-child(3) a {
  background: url(../img/top-recruit03.jpg) no-repeat;
}
main.home .recruit ul li:nth-child(4) a {
  background: url(../img/top-recruit04.jpg) no-repeat;
}
main.home .recruit ul li:nth-child(5) a {
  background: url(../img/top-recruit05_25.jpg) no-repeat;
}
@media screen and (max-width: 520px) {
  main.home .recruit ul {
    flex-wrap: wrap;
  }
  main.home .recruit ul li {
    width: 50%;
  }
  main.home .recruit ul li:nth-child(even) {
    margin-top: 0;
  }
  main.home .recruit ul li a {
    height: 200px;
    font-size: 17px;
  }
  main.home .recruit ul li a span {
    font-size: 13px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 768px) {
  main.home .recruit::before {
    width: 120px;
    height: 325px;
    right: -8%;
  }
}
@media screen and (max-width: 520px) {
  main.home .recruit h3 {
    font-size: 1.1rem;
  }
  main.home .recruit p {
    font-size: 1rem;
  }
}

/*----------------------------フローティングバナー------------------------------*/
#flyin {
  z-index: 100;
  width: 360px;
  position: fixed;
  bottom: 35px;
  right: 35px;
  animation: flipInY 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: bottom 0.5s ease, background-position 0.5s ease;
  padding: 0;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 520px) {
  #flyin {
    width: 210px;
    bottom: 5px;
    right: 5px;
  }
}

#flyin .flyinclose {
  -webkit-transition: 0 0.5s ease 0.2s, opacity 0.5s ease, top 0.5s ease 0.2s;
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease, top 0.5s ease 0.2s;
  content: "";
  display: block;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: url(../img/float-bnrclose.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 10px;
  left: 0px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}
@media screen and (max-width: 520px) {
  #flyin .flyinclose {
    left: -9px;
  }
}

#flyin .date {
  background: #29b8be;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 15px;
}

#flyin .date p {
  text-align: center;
  color: #fff;
  line-height: 1.3;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

#flyin .date p:last-of-type {
  font-size: 1.7rem;
  font-weight: 500;
}

#flyin .date p:last-of-type span {
  display: block;
  font-size: 0.8rem;
  color: #fff;
}

.target {
  position: relative;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 520px) {
  .target {
    visibility: hidden;
  }
}

.target.is-hidden {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  pointer-events: none;
  display: none;
}

div#flyin:hover {
  transform: translateY(-5px);
  transition: all 0.5s;
}

main.underlayer .mainvl {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  max-height: 410px;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: flex-end;
}
main.underlayer .mainvl h1 {
  line-height: 1;
  font-family: area-normal, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #2996de;
  font-size: 3.7rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 15px 40px 0px 0;
}
main.underlayer .mainvl h1 span {
  display: block;
  color: #000;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 15px;
}
main.underlayer .mainvl p {
  width: 55%;
  margin-right: calc(50% - 50vw);
  flex: 0.83;
}
@media screen and (max-width: 520px) {
  main.underlayer .mainvl {
    width: 100%;
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-top: 60px;
  }
  main.underlayer .mainvl h1 {
    padding: 15px 20px 0 15px;
    margin-top: -30px;
    font-size: 1.7rem;
    position: relative;
  }
  main.underlayer .mainvl h1 span {
    font-size: 15px;
    margin-top: 10px;
  }
  main.underlayer .mainvl p {
    width: 100%;
  }
}

main.underlayer h3 {
  font-weight: 600;
  font-size: 2.8rem;
  color: #2996de;
  line-height: 1;
  margin-bottom: 3%;
}
main.underlayer h3 .bi-wd {
  font-size: 1.3em;
  color: #2996de;
  font-weight: 600;
}
main.underlayer h3 .mn-wd {
  color: #000;
  font-size: 0.38em;
  font-weight: 500;
  margin-left: 20px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 520px) {
  main.underlayer h3 {
    font-size: 2rem;
    margin-bottom: 5%;
  }
  main.underlayer h3 .mn-wd {
    font-size: 0.4em;
    margin-left: 0px;
    display: block;
    margin-top: 7px;
  }
}

main.recruit .features {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

main.recruit .features-inner {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  padding: 10% 0;
  margin-top: 5%;
  position: relative;
}
main.recruit .features-inner::before {
  background: url(../img/features-bg.svg) no-repeat;
  background-size: contain;
  top: 0px;
  left: 0;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.recruit .features-inner .features-cnt {
  width: 40%;
}
main.recruit .features-inner .features-cnt p {
  line-height: 2;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  padding: 11% 0 7%;
}
main.recruit .features-inner .features-cnt .img {
  width: 70%;
  line-height: 1;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main.recruit .features-inner .features-cnt .img {
    width: 35%;
  }
}
@media screen and (max-width: 520px) {
  main.recruit .features-inner .features-cnt .img {
    width: 70%;
    margin: 0 auto;
  }
}
main.recruit .features-inner .vimeo-cnt {
  width: 55%;
  margin-right: calc(50% - 50vw);
  flex: 1;
}
main.recruit .features-inner .vimeo-cnt .vimeo {
  aspect-ratio: 4/2.25;
  width: 100%;
}
main.recruit .features-inner .vimeo-cnt .vimeo iframe {
  width: 100%;
  height: 100%;
}
main.recruit .features-inner .vimeo-cnt .vimeo iframe .vp-center {
  align-items: flex-start !important;
}
@media screen and (max-width: 768px) {
  main.recruit .features-inner {
    flex-direction: column;
    gap: 30px 40px;
    margin-top: 0%;
  }
  main.recruit .features-inner .features-cnt {
    width: 100%;
  }
  main.recruit .features-inner .features-cnt p {
    padding: 5% 0 3%;
  }
  main.recruit .features-inner .vimeo-cnt {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  main.recruit .features-inner .features-cnt p {
    font-size: 1rem;
  }
}

main.general .work,
main.operator .work {
  padding-bottom: 10%;
  position: relative;
}
main.general .work::before,
main.operator .work::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 0;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 366px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
main.general .work .work-inr,
main.operator .work .work-inr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 3%;
}
main.general .work .work-inr .work-cnt,
main.operator .work .work-inr .work-cnt {
  width: 48%;
  background: #e9f4fc;
}
main.general .work .work-inr .work-cnt .work-img,
main.operator .work .work-inr .work-cnt .work-img {
  position: relative;
}
main.general .work .work-inr .work-cnt .work-img h4,
main.operator .work .work-inr .work-cnt .work-img h4 {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 3px 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
main.general .work .work-inr .work-cnt .work-txt,
main.operator .work .work-inr .work-cnt .work-txt {
  background: #e9f4fc;
  padding: 25px 20px;
}
main.general .work .work-inr .work-cnt .work-txt h5,
main.operator .work .work-inr .work-cnt .work-txt h5 {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
main.general .work .work-inr .work-cnt .work-txt h5::after,
main.operator .work .work-inr .work-cnt .work-txt h5::after {
  content: "";
  height: 1px;
  background: #8e8e8f;
  width: 50%;
}
main.general .work .work-inr .work-cnt .work-txt ul,
main.operator .work .work-inr .work-cnt .work-txt ul {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
main.general .work .work-inr .work-cnt .work-txt ul li,
main.operator .work .work-inr .work-cnt .work-txt ul li {
  display: flex;
  gap: 0 8px;
}
/*main.general .work .work-inr .work-cnt .work-txt ul li span,*/
main.operator .work .work-inr .work-cnt .work-txt ul li span {
  font-weight: 500;
}
main.general .work .work-inr .work-cnt .work-txt ul li span span,
main.operator .work .work-inr .work-cnt .work-txt ul li span span {
  display: block;
  font-weight: 300;
}
main.general .work .work-inr .work-cnt .work-txt ul li::before,
main.operator .work .work-inr .work-cnt .work-txt ul li::before {
  content: "●";
  color: #2996de;
}
main.general .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after,
main.operator .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after {
  width: 40%;
}
@media screen and (max-width: 520px) {
  main.general .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after,
  main.operator .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  main.general .work .work-inr,
  main.operator .work .work-inr {
    gap: 20px 0;
    padding-top: 7%;
  }
  main.general .work .work-inr .work-cnt,
  main.operator .work .work-inr .work-cnt {
    width: 100%;
  }
  main.general .work .work-inr .work-cnt .work-txt,
  main.operator .work .work-inr .work-cnt .work-txt {
    padding: 20px 20px;
  }
  main.general .work .work-inr .work-cnt .work-txt h5,
  main.operator .work .work-inr .work-cnt .work-txt h5 {
    padding: 30px 0 20px;
    flex-direction: column-reverse;
    gap: 10px;
    font-size: 1.1rem;
    align-items: inherit;
  }
}
@media screen and (max-width: 768px) {
  main.general .work .work-inr .work-cnt .work-txt h5::after,
  main.operator .work .work-inr .work-cnt .work-txt h5::after {
    width: 40%;
  }
}
@media screen and (max-width: 520px) {
  main.general .work .work-inr .work-cnt .work-txt h5::after,
  main.operator .work .work-inr .work-cnt .work-txt h5::after {
    width: 100%;
  }
}

main.general .item {
  position: relative;
}
main.general .item::after {
  content: "";
  position: absolute;
  top: -25%;
  right: -5%;
  background: url(../img/about-deco02.svg) no-repeat;
  background-size: contain;
  width: 318px;
  height: 356px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.general .item::after {
    display: none;
  }
}
main.general .item .item-inr {
  display: flex;
  justify-content: space-between;
}
main.general .item .item-inr .item-img {
  width: 50%;
}
main.general .item .item-inr .item-txt-cnt {
  width: 48%;
  display: flex;
  justify-content: space-between;
}
main.general .item .item-inr .item-txt-cnt .item-txt {
  width: 65%;
}
main.general .item .item-inr .item-txt-cnt .item-txt ol {
  padding-left: 1.5em;
  margin-bottom: 15px;
}
main.general .item .item-inr .item-txt-cnt .item-txt ol li {
  list-style: decimal;
}
main.general .item .item-inr .item-txt-cnt .item-txt .item-txt-box {
  background: #e9f4fc;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
main.general .item .item-inr .item-txt-cnt .item-txt .item-txt-box::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 2px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -10px;
  border-left-color: #e9f4fc;
  left: 100%;
  top: 35%;
}
main.general .item .item-inr .item-txt-cnt .item-man {
  width: 30%;
}
@media screen and (max-width: 520px) {
  main.general .item .item-inr {
    flex-direction: column;
    gap: 10px 0;
  }
  main.general .item .item-inr .item-img {
    width: 100%;
  }
  main.general .item .item-inr .item-txt-cnt {
    width: 100%;
    align-items: end;
  }
  main.general .item .item-inr .item-txt-cnt .item-txt {
    width: 65%;
  }
  main.general .item .item-inr .item-txt-cnt .item-txt ol {
    padding-left: 1em;
    margin-bottom: 10px;
  }
  main.general .item .item-inr .item-txt-cnt .item-txt ol li {
    font-size: 14px;
  }
  main.general .item .item-inr .item-txt-cnt .item-man {
    width: 30%;
  }
}

main.general .sdl,
main.mechanical .joining,
main.itenginner .joining {
  padding: 10% 0 0;
}
main.general .sdl ol,
main.mechanical .joining ol,
main.itenginner .joining ol {
  display: flex;
  justify-content: space-between;
  padding-top: 3%;
}
main.general .sdl ol li,
main.mechanical .joining ol li,
main.itenginner .joining ol li {
  width: 23%;
  background: #e9f4fc;
  padding: 20px 20px;
}
main.general .sdl ol li .sdl-img,
main.mechanical .joining ol li .sdl-img,
main.itenginner .joining ol li .sdl-img {
  line-height: 1;
  width: 60%;
  margin: 15px auto 0;
}
main.general .sdl ol li .sdl-img img,
main.mechanical .joining ol li .sdl-img img,
main.itenginner .joining ol li .sdl-img img {
  border-radius: 999px;
}
main.general .sdl ol li .center,
main.mechanical .joining ol li .center,
main.itenginner .joining ol li .center {
  text-align: center;
}
main.general .sdl ol li h4,
main.mechanical .joining ol li h4,
main.itenginner .joining ol li h4 {
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 12px 0 10px;
}
main.general .sdl ol li .time,
main.mechanical .joining ol li .time,
main.itenginner .joining ol li .time {
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  color: #2996de;
  line-height: 1;
  margin-top: -40px;
}
@media screen and (max-width: 520px) {
  main.general .sdl ol,
  main.mechanical .joining ol,
  main.itenginner .joining ol {
    padding-top: 5%;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  main.general .sdl ol li,
  main.mechanical .joining ol li,
  main.itenginner .joining ol li {
    width: 47%;
    margin: 0 auto;
    padding: 20px 10px;
  }
  main.general .sdl ol li .sdl-img,
  main.mechanical .joining ol li .sdl-img,
  main.itenginner .joining ol li .sdl-img {
    width: 80%;
  }
  main.general .sdl ol li p,
  main.mechanical .joining ol li p,
  main.itenginner .joining ol li p {
    text-align: center;
    font-size: 0.7rem;
  }
}

.enha {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
  position: relative;
}
.enha::after {
  background: #2996de;
  top: 50%;
  right: 0px;
  height: 85%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 27vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.enha::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  background: url(../img/general-enha-deco.svg) no-repeat;
  background-size: contain;
  width: 218px;
  height: 233px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
.enha h2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  .enha h2 {
    padding-bottom: 30px;
  }
}
.enha .enha-cnt {
  display: flex;
  justify-content: space-between;
}
.enha .enha-cnt .enha-txt {
  width: 30%;
  margin-top: 7%;
}
.enha .enha-cnt .enha-txt .occ {
  font-size: 1.1em;
}
.enha .enha-cnt .enha-txt .occ span {
  background: #2996de;
  color: #fff;
  padding: 2px 10px;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  width: fit-content;
  margin-bottom: 7px;
  letter-spacing: 1.5px;
}
.enha .enha-cnt .enha-txt .full-name {
  font-size: 2.3rem;
  font-weight: 500;
  margin-top: 25px;
}
.enha .enha-cnt .enha-txt .full-name .romaji {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  font-family: area-normal, sans-serif;
}
.enha .enha-cnt .enha-txt .full-name .romaji span {
  color: #2996de;
  font-weight: 700;
}
.enha .enha-cnt .enha-img {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .enha .enha-cnt .enha-txt .occ span {
    font-size: 1.1rem;
    padding: 2px 30px;
  }
}
@media screen and (max-width: 520px) {
  .enha .enha-cnt {
    flex-direction: column;
    gap: 10px 0;
  }
  .enha .enha-cnt .enha-txt {
    width: 100%;
    margin-top: 0%;
  }
  .enha .enha-cnt .enha-txt .name .occ .tbview {
    display: none !important;
  }
  .enha .enha-cnt .enha-txt .name .occ span {
    font-size: 1rem;
    padding: 2px 15px;
    margin-bottom: 5px;
  }
  .enha .enha-cnt .enha-txt .name .full-name {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  .enha .enha-cnt .enha-txt .name .full-name .romaji {
    font-size: 0.6em;
  }
  .enha .enha-cnt .enha-img {
    width: 100%;
  }
}
.enha .beginning {
  padding-top: 20px;
}
.enha .beginning .begin-ttl {
  font-family: area-normal, sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.enha .beginning .begin-txt {
  border: 2px solid #000;
  padding: 30px;
  background: #fff;
}
.enha .beginning .begin-txt > p {
  margin-bottom: 1em;
  font-size: 1em;
}
.enha .beginning ol {
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
}
.enha .beginning ol li {
  width: 31%;
  background: #e9f4fc;
  padding: 10px 20px;
  display: flex;
  gap: 0 20px;
  align-items: center;
}
.enha .beginning ol li p {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
}
.enha .beginning ol li p span {
  display: block;
  font-size: 0.8em;
  letter-spacing: 2px;
  color: #2996de;
  margin-top: 7px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .enha .beginning ol li {
    gap: 10px 20px;
  }
  .enha .beginning ol li figure {
    width: 30%;
  }
  .enha .beginning ol li p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .enha .beginning .begin-txt {
    padding: 20px;
  }
  .enha .beginning .begin-txt > p {
    font-size: 15px;
  }
  .enha .beginning ol {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .enha .beginning ol li {
    width: 100%;
  }
  .enha .beginning ol li figure {
    width: 20%;
  }
}
@media screen and (max-width: 520px) {
  .enha::after {
    top: 45%;
    right: 0px;
    height: 85%;
  }
}

.interview {
  position: relative;
}
.interview::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 366px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}

.interview h2 {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  .interview h2 {
    padding-bottom: 30px;
  }
}

.slider .slick-slide,
.slider2 .slick-slide {
  overflow-y: hidden;
  margin: 0 auto;
  height: 505px;
}

.item-insta {
  position: relative;
}
.item-insta .top-filter,
.item-insta .bottom-filter,
.item-insta .left-filter,
.item-insta .right-filter {
  background: transparent;
  position: absolute;
  z-index: 777;
}
.item-insta .top-filter {
  width: 100%;
  height: 33%;
  top: 55px;
  left: 0;
}
.item-insta .bottom-filter {
  width: 100%;
  height: 34%;
  bottom: 9%;
  left: 0;
}
.item-insta .left-filter {
  width: 40%;
  height: 80%;
  bottom: 9%;
  left: 0;
}
.item-insta .right-filter {
  width: 40%;
  height: 80%;
  bottom: 9%;
  right: 0;
}

.slider,
.slider2 {
  width: 100%;
  margin: 0 auto;
}

.slider div,
.slider2 div {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
  display: flex;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slick-track {
  display: flex;
  gap: 0 10px;
  justify-content: center;
}

.slick-initialized .slick-slide {
  width: 30% !important;
}

.slider .slick-slide {
  margin: 0 10px;
  width: 100% !important;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  display: none !important;
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center !important;
  margin: 20px 0 0 0 !important;
}

.slick-dots li {
  display: inline-block !important;
  margin: 0 5px !important;
}

.slick-dots button {
  color: transparent !important;
  outline: none !important;
  width: 8px !important;
  /*ドットボタンのサイズ*/
  height: 8px !important;
  /*ドットボタンのサイズ*/
  display: block !important;
  border-radius: 50% !important;
  background: #e9f4fc !important;
  /*ドットボタンの色*/
  border: 0;
}

.slick-dots .slick-active button {
  background: #2996de !important;
  /*ドットボタンの現在地表示の色*/
}

.careerup {
  padding: 10% 0;
}
.careerup h2 {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding-bottom: 50px;
}

.recruit-btn {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
}
.recruit-btn li {
  width: 31%;
}
.recruit-btn li a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
.recruit-btn li a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  .recruit-btn li a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-btn {
    width: 90%;
  }
  .recruit-btn li {
    width: 31%;
  }
}
@media screen and (max-width: 520px) {
  .recruit-btn {
    flex-direction: column;
    gap: 10px 0;
  }
  .recruit-btn li {
    width: 100%;
  }
}

main.about .about-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
}
main.about .about-cnt h2 {
  padding-bottom: 50px;
}
main.about .about-cnt dl div {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #b2b2b2;
  justify-content: space-between;
}
main.about .about-cnt dl div:nth-of-type(1) {
  padding-top: 0;
}
main.about .about-cnt dl dt {
  width: 20%;
  text-align: end;
  font-weight: 500;
}
main.about .about-cnt dl dd {
  width: 76%;
}
main.about .about-cnt dl dd a {
  border-bottom: 1px solid #000;
  transition: 0.4s;
}
main.about .about-cnt dl dd a:hover {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 520px) {
  main.about .about-cnt h2 {
    padding-bottom: 30px;
  }
  main.about .about-cnt dl div {
    padding: 15px 0;
    flex-direction: column;
    gap: 5px 0;
  }
  main.about .about-cnt dl dt,
  main.about .about-cnt dl dd {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
}

main.about .about-vimeo-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 5% 0 0;
}
main.about .about-vimeo-cnt .vimeo {
  aspect-ratio: 4/2.25;
  width: 100%;
}
main.about .about-vimeo-cnt iframe {
  width: 100%;
  height: 100%;
}

main.about .company {
  position: relative;
}
main.about .company::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -10px;
  background: url(../img/about-deco02.svg) no-repeat;
  background-size: contain;
  width: 218px;
  height: 356px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.about .company::after {
    top: 0;
    right: 0;
    width: 150px;
  }
}

main.about .bases {
  padding: 0;
  position: relative;
}
main.about .bases::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  background: url(../img/about-deco03.svg) no-repeat;
  background-size: contain;
  width: 115px;
  height: 112px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.about .bases::after {
    top: -50px;
    left: initial;
    right: 0;
  }
}
main.about .bases::before {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 30px;
  background: url(../img/about-deco04.svg) no-repeat;
  background-size: contain;
  width: 135px;
  height: 214px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.about .bases::before {
    width: 135px;
    bottom: -5%;
    right: -10px;
  }
}

main.operator .work .work-inr .work-cnt .work-txt h5::after {
  width: 75%;
}
@media screen and (max-width: 768px) {
  main.operator .work .work-inr .work-cnt .work-txt h5::after {
    width: 60%;
  }
}
@media screen and (max-width: 520px) {
  main.operator .work .work-inr .work-cnt .work-txt h5::after {
    width: 100%;
  }
}

main.operator .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after {
  width: 75%;
}
@media screen and (max-width: 768px) {
  main.operator .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after {
    width: 60%;
  }
}
@media screen and (max-width: 520px) {
  main.operator .work .work-inr .work-cnt:nth-of-type(2) .work-txt h5::after {
    width: 100%;
  }
}

main.operator .item ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.operator .item ul > li {
  width: 31%;
}
main.operator .item ul > li ol {
  margin-top: 15px;
}
@media screen and (max-width: 520px) {
  main.operator .item ul {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.operator .item ul > li {
    width: 100%;
  }
  main.operator .item ul > li figure {
    width: 70%;
    margin: 0 auto;
  }
  main.operator .item ul > li ol {
    margin-top: 0;
  }
}
main.operator .topbtns {
  justify-content: center !important;
}
@media screen and (max-width: 768px) {
  main.operator .topbtns li {
    width: 48% !important;
  }
}
@media screen and (max-width: 520px) {
  main.operator .topbtns li {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  main.operator .topbtns {
    justify-content: space-between !important;
  }
}
@media screen and (max-width: 520px) {
  main.operator .topbtns {
    gap: 10px 0 !important;
    padding-top: 20px;
  }
}

main.operator .support {
  padding: 10% 0;
  position: relative;
}
main.operator .support::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -20px;
  background: url(../img/ope-support-deco.svg) no-repeat;
  background-size: contain;
  width: 218px;
  height: 333px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.operator .support::before {
    width: 130px;
    top: 0;
    left: initial;
    right: -20px;
  }
}
main.operator .support p {
  font-size: 16px;
}
main.operator .support .support-inr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
main.operator .support .support-inr .sp-txt {
  width: 55%;
}
main.operator .support .support-inr .sp-txt dl {
  margin-top: 40px;
}
main.operator .support .support-inr .sp-txt dl div {
  margin-top: 30px;
}
main.operator .support .support-inr .sp-txt dl dt {
  background: #2996de;
  color: #fff;
  width: fit-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
main.operator .support .support-inr .sp-img {
  width: 41%;
}
@media screen and (max-width: 520px) {
  main.operator .support .support-inr {
    flex-direction: column-reverse;
    gap: 20px 0;
    margin-bottom: 30px;
  }
  main.operator .support .support-inr .sp-txt {
    width: 100%;
  }
  main.operator .support .support-inr .sp-txt dl {
    margin-top: 30px;
  }
  main.operator .support .support-inr .sp-txt dl div {
    margin-top: 20px;
  }
  main.operator .support .support-inr .sp-img {
    width: 100%;
  }
  main.operator .support .support-inr .sp-img img {
    height: 200px;
    object-fit: cover;
  }
}
main.operator .support .sp-detail {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  main.operator .support .sp-detail {
    width: 100%;
  }
}

main.recruit .merit ol {
  display: flex;
  justify-content: space-between;
}
main.recruit .merit ol li {
  width: 23%;
}
@media screen and (max-width: 520px) {
  main.recruit .merit ol {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  main.recruit .merit ol li {
    width: 48%;
  }
}

main.recruit .work::before {
  display: none;
}

main.ufacturing .features-inner .features-cnt .img {
  width: 90%;
}
@media screen and (max-width: 768px) {
  main.ufacturing .features-inner .features-cnt .img {
    width: 50%;
  }
}
@media screen and (max-width: 520px) {
  main.ufacturing .features-inner .features-cnt .img {
    width: 100%;
  }
}

main.ufacturing .work .work-cnt,
main.mechanical .work .work-cnt,
main.itenginner .work .work-cnt {
  display: flex;
  justify-content: space-between;
}
main.ufacturing .work .work-cnt li,
main.mechanical .work .work-cnt li,
main.itenginner .work .work-cnt li {
  width: 23%;
  background: #e9f4fc;
}
main.ufacturing .work .work-cnt li .work-img,
main.mechanical .work .work-cnt li .work-img,
main.itenginner .work .work-cnt li .work-img {
  position: relative;
}
main.ufacturing .work .work-cnt li .work-img h4,
main.mechanical .work .work-cnt li .work-img h4,
main.itenginner .work .work-cnt li .work-img h4 {
  font-size: 1rem;
  font-weight: 400;
  background: #000;
  color: #fff;
  padding: 2px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}
main.ufacturing .work .work-cnt li p,
main.mechanical .work .work-cnt li p,
main.itenginner .work .work-cnt li p {
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  main.ufacturing .work .work-cnt,
  main.mechanical .work .work-cnt,
  main.itenginner .work .work-cnt {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.ufacturing .work .work-cnt li,
  main.mechanical .work .work-cnt li,
  main.itenginner .work .work-cnt li {
    width: 48%;
  }
}
@media screen and (max-width: 520px) {
  main.ufacturing .work .work-cnt li,
  main.mechanical .work .work-cnt li,
  main.itenginner .work .work-cnt li {
    width: 100%;
  }
}

main.ufacturing .jobtype {
  padding: 10% 0 0;
}
main.ufacturing .jobtype .jt-cnt {
  display: flex;
  justify-content: space-between;
}
main.ufacturing .jobtype .jt-cnt li {
  width: 31%;
  background: #e9f4fc;
  padding: 40px 30px;
}
main.ufacturing .jobtype .jt-cnt li:nth-child(2) {
  background: #ddeffc;
}
main.ufacturing .jobtype .jt-cnt li:nth-child(3) {
  background: #d0e9fc;
}
main.ufacturing .jobtype .jt-cnt li h4 {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
main.ufacturing .jobtype .jt-cnt li p {
  font-size: 16px;
}
main.ufacturing .jobtype .jt-cnt li .jt-blue {
  color: #2996de;
  border-top: 1px solid #2996de;
  padding-top: 15px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  main.ufacturing .jobtype .jt-cnt {
    padding: 20px;
  }
  main.ufacturing .jobtype .jt-cnt li {
    padding: 20px;
  }
  main.ufacturing .jobtype .jt-cnt li h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 520px) {
  main.ufacturing .jobtype .jt-cnt {
    flex-direction: column;
    gap: 20px 0;
    padding: 0;
  }
  main.ufacturing .jobtype .jt-cnt li {
    width: 100%;
  }
  main.ufacturing .jobtype .jt-cnt li p {
    font-size: 15px;
  }
  main.ufacturing .jobtype .jt-cnt li .jt-blue {
    padding-top: 10px;
    margin-top: 10px;
  }
  main.ufacturing .jobtype .jt-cnt li h4 {
    margin-bottom: 10px;
  }
  main.ufacturing .jobtype .jt-cnt li h4 .tbview {
    display: none !important;
  }
}
main.ufacturing .jobtype .jt-field {
  border: 1px solid #000;
  padding: 50px;
  margin-top: 5%;
}
main.ufacturing .jobtype .jt-field h4 {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-align: center;
}
main.ufacturing .jobtype .jt-field h4 span {
  display: block;
  color: #2996de;
  font-size: 0.7em;
}
main.ufacturing .jobtype .jt-field ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 10px;
  padding: 4% 0 5%;
}
main.ufacturing .jobtype .jt-field ul li {
  width: 18%;
}
main.ufacturing .jobtype .jt-field ul li .jt-f-img {
  width: 50%;
  margin: 0 auto;
}
main.ufacturing .jobtype .jt-field ul li .jt-f-txt {
  text-align: center;
  margin-top: 20px;
}
main.ufacturing .jobtype .jt-field .jt-f-box {
  background: #e9f4fc;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  main.ufacturing .jobtype .jt-field {
    padding: 30px;
  }
  main.ufacturing .jobtype .jt-field ul {
    justify-content: space-between;
    gap: 30px 0;
  }
  main.ufacturing .jobtype .jt-field ul li {
    width: 24%;
  }
  main.ufacturing .jobtype .jt-field .jt-f-box {
    padding: 20px;
  }
}
@media screen and (max-width: 520px) {
  main.ufacturing .jobtype .jt-field {
    padding: 20px;
  }
  main.ufacturing .jobtype .jt-field h4 {
    font-size: 1.2rem;
  }
  main.ufacturing .jobtype .jt-field ul {
    gap: 20px 0;
  }
  main.ufacturing .jobtype .jt-field ul li {
    width: 48%;
  }
  main.ufacturing .jobtype .jt-field ul li .jt-f-txt {
    margin-top: 10px;
  }
}

main.ufacturing .howto {
  padding: 10% 0;
  position: relative;
}
main.ufacturing .howto::before {
  content: "";
  position: absolute;
  bottom: -27%;
  right: 0;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 366px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.ufacturing .howto::before {
    bottom: -39%;
    width: 138px;
  }
}
main.ufacturing .howto .howto-inr {
  display: flex;
  justify-content: space-between;
}
main.ufacturing .howto .howto-inr .howto-cnt:nth-of-type(1) {
  width: 40%;
}
main.ufacturing .howto .howto-inr .howto-cnt:nth-of-type(2) {
  width: 55%;
}
main.ufacturing .howto .howto-inr .howto-cnt p {
  color: #1a1311;
  text-align: end;
  font-size: 0.9em;
  margin-top: 10px;
}
main.ufacturing .howto .howto-inr .howto-cnt figure {
  position: relative;
}
main.ufacturing .howto .howto-inr .howto-cnt figure::after {
  content: "";
  position: absolute;
  left: -10%;
  top: -10px;
  background: url(../img/ufa-howto01-icn.svg) no-repeat;
  background-size: contain;
  width: 12%;
  height: 55px;
}
main.ufacturing .howto .howto-inr .howto-cnt:nth-of-type(2) figure::after {
  background: url(../img/ufa-howto02-icn.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  main.ufacturing .howto .howto-inr {
    flex-direction: column;
    gap: 20px 0;
  }
  main.ufacturing .howto .howto-inr .howto-cnt:nth-of-type(1) {
    width: 74%;
    margin: 0 auto;
  }
  main.ufacturing .howto .howto-inr .howto-cnt figure::after {
    left: -18%;
    top: -10px;
    width: 20%;
  }
  main.ufacturing .howto .howto-inr .howto-cnt:nth-of-type(2) {
    width: 100%;
  }
  main.ufacturing .howto .howto-inr .howto-cnt:nth-of-type(2) figure::after {
    width: 14%;
    left: 0;
    top: -30%;
  }
  main.ufacturing .howto .howto-inr .howto-cnt p {
    text-align: left;
    font-size: 0.8em;
  }
}
main.ufacturing .howto > p {
  margin-top: 20px;
  margin-bottom: 1em;
}

main.mechanical .features-inner .features-cnt .img {
  width: 90%;
}
@media screen and (max-width: 768px) {
  main.mechanical .features-inner .features-cnt .img {
    width: 50%;
  }
}
@media screen and (max-width: 520px) {
  main.mechanical .features-inner .features-cnt .img {
    width: 100%;
  }
}

main.mechanical .work .work-cnt li {
  width: 31%;
}
@media screen and (max-width: 768px) {
  main.mechanical .work .work-cnt li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  main.mechanical .work .work-cnt li {
    width: 100%;
  }
}

main.mechanical .work .work-sub-cnt,
main.itenginner .work .work-sub-cnt {
  border: 1px solid #000;
  padding: 50px;
  margin-top: 5%;
}
main.mechanical .work .work-sub-cnt > p,
main.itenginner .work .work-sub-cnt > p {
  margin: 4% 0;
}
main.mechanical .work .work-sub-cnt h4,
main.itenginner .work .work-sub-cnt h4 {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-align: center;
}
main.mechanical .work .work-sub-cnt h4 span,
main.itenginner .work .work-sub-cnt h4 span {
  display: block;
  color: #2996de;
  font-size: 0.7em;
}
main.mechanical .work .work-sub-cnt ul,
main.itenginner .work .work-sub-cnt ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0;
}
main.mechanical .work .work-sub-cnt ul li,
main.itenginner .work .work-sub-cnt ul li {
  width: 23%;
  background: #e9f4fc;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.mechanical .work .work-sub-cnt ul li figure,
main.itenginner .work .work-sub-cnt ul li figure {
  width: 50%;
  margin: 0 auto;
}
main.mechanical .work .work-sub-cnt ul li h5,
main.itenginner .work .work-sub-cnt ul li h5 {
  text-align: center;
  font-size: 1.05em;
  line-height: 1.3;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  main.mechanical .work .work-sub-cnt ul li h5,
  main.itenginner .work .work-sub-cnt ul li h5 {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 520px) {
  main.mechanical .work .work-sub-cnt ul li p,
  main.itenginner .work .work-sub-cnt ul li p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  main.mechanical .work .work-sub-cnt,
  main.itenginner .work .work-sub-cnt {
    padding: 30px;
  }
  main.mechanical .work .work-sub-cnt ul li figure,
  main.itenginner .work .work-sub-cnt ul li figure {
    width: 30%;
  }
}
@media screen and (max-width: 520px) {
  main.mechanical .work .work-sub-cnt,
  main.itenginner .work .work-sub-cnt {
    padding: 20px;
  }
  main.mechanical .work .work-sub-cnt ul li,
  main.itenginner .work .work-sub-cnt ul li {
    width: 100% !important;
    padding: 20px;
    text-align: center;
  }
}

main.mechanical .work .work-sub-cnt ul {
  justify-content: flex-start;
  gap: 20px 2%;
}
@media screen and (max-width: 768px) {
  main.mechanical .work .work-sub-cnt ul li {
    width: 32%;
    padding: 20px;
    justify-content: flex-start;
  }
  main.mechanical .work .work-sub-cnt ul li h5 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 520px) {
  main.mechanical .work .work-sub-cnt ul {
    justify-content: space-between;
    gap: 13px 0;
  }
  main.mechanical .work .work-sub-cnt ul li {
    width: 48% !important;
    padding: 15px;
  }
  main.mechanical .work .work-sub-cnt ul li figure {
    width: 50%;
  }
  main.mechanical .work .work-sub-cnt ul li h5 {
    margin-top: 10px;
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}

main.itenginner .work .work-sub-cnt ul li figure {
  width: 35%;
}

main.mechanical .merit {
  padding: 10% 0;
  position: relative;
}

main.itenginner .merit {
  padding-top: 10%;
  position: relative;
}
main.mechanical .merit::after,
main.itenginner .merit::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -30px;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 366px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.mechanical .merit::after,
  main.itenginner .merit::after {
    width: 158px;
    bottom: -50%;
  }
}

main.mechanical .joining ol li {
  width: 18%;
}
main.mechanical .joining ol li .sdl-img {
  width: 80%;
}
main.mechanical .joining ol li .time {
  width: 90%;
  margin: -40px auto 0;
}
@media screen and (max-width: 520px) {
  main.mechanical .joining ol li {
    width: 47%;
  }
  main.mechanical .joining ol li .time {
    width: 80%;
  }
  main.mechanical .joining ol li .sdl-img {
    width: 80%;
  }
}

main.mechanical .recruit-btn,
main.itenginner .recruit-btn {
  justify-content: center;
  gap: 0 30px;
  padding-top: 10%;
}
@media screen and (max-width: 768px) {
  main.mechanical .recruit-btn,
  main.itenginner .recruit-btn {
    width: 80%;
  }
  main.mechanical .recruit-btn li,
  main.itenginner .recruit-btn li {
    width: 48%;
  }
}
@media screen and (max-width: 520px) {
  main.mechanical .recruit-btn,
  main.itenginner .recruit-btn {
    gap: 10px 0;
  }
  main.mechanical .recruit-btn li,
  main.itenginner .recruit-btn li {
    width: 100%;
  }
}

main.itenginner .features-inner .features-cnt .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  main.itenginner .features-inner .features-cnt .img {
    width: 50%;
  }
}
@media screen and (max-width: 520px) {
  main.itenginner .features-inner .features-cnt .img {
    width: 100%;
  }
}

main.itenginner .work .work-cnt {
  padding-top: 3%;
}

main.itenginner .work .work-sub-cnt ul {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 2%;
}
main.itenginner .work .work-sub-cnt ul li {
  width: 32%;
}
@media screen and (max-width: 768px) {
  main.itenginner .work .work-sub-cnt ul {
    justify-content: space-between;
  }
  main.itenginner .work .work-sub-cnt ul li {
    width: 48%;
  }
}

main.itenginner .joining ol li {
  width: 23%;
}
main.itenginner .joining ol li h4 {
  font-size: 17px;
}
main.itenginner .joining ol li .time {
  width: 80%;
  margin: -40px auto 0;
}
@media screen and (max-width: 768px) {
  main.itenginner .joining ol li .time {
    margin: -30px auto 0;
  }
}
@media screen and (max-width: 520px) {
  main.itenginner .joining ol li {
    width: 47%;
  }
  main.itenginner .joining ol li .time {
    width: 90%;
    margin: -35px auto 0;
  }
  main.itenginner .joining ol li h4 {
    font-size: 15px;
  }
}

main.requirements .message {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 5% 0;
  display: flex;
  justify-content: space-between;
}
main.requirements .message h2 {
  padding-bottom: 5%;
}
main.requirements .message .me-img {
  width: 40%;
}
main.requirements .message .me-txt {
  width: 100%;
}
main.requirements .message .me-txt p {
  margin-bottom: 1em;
  font-size: 1em;
  letter-spacing: 1.5px;
  line-height: 2;
  font-weight: 500;
}
main.requirements .message .me-txt p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  main.requirements .message {
    flex-wrap: wrap-reverse;
    padding: 5% 0 10%;
    gap: 20px 0;
  }
  main.requirements .message .me-img {
    width: 80%;
    margin: 0 auto;
  }
  main.requirements .message .me-txt {
    width: 100%;
  }
  main.requirements .message .me-txt p {
    letter-spacing: 1px;
    line-height: 1.7;
    font-size: 0.9rem;
    font-weight: 400;
  }
}

.tab {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab li {
  width: 19%;
  border: 2px solid #2996de;
  display: flex;
}
.tab li a {
  display: block;
  padding: 10px 0;
  text-align: center;
  color: #2996de;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tab li.active {
  border: 2px solid #2996de;
}
.tab li.active a {
  color: #fff;
  background: #2996de;
  position: relative;
}
.tab li.active a::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #2996de;
  top: 100%;
  left: 50%;
}

.area {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  display: none;
  opacity: 0;
  padding: 50px 20px;
}
.area h2 {
  padding-bottom: 50px;
}
.area .req-cnt {
  position: relative;
}
.area .req-cnt::after {
  content: "";
  position: absolute;
  top: -100px;
  right: 0px;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 366px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  .area .req-cnt::after {
    width: 135px;
  }
}
.area .req-cnt > div {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #b2b2b2;
  justify-content: space-between;
}
.area .req-cnt > div:nth-of-type(1) {
  padding-top: 0;
}
.area .req-cnt > div > dt {
  width: 20%;
  text-align: end;
  font-weight: 500;
}
.area .req-cnt > div > dd {
  width: 76%;
  font-weight: 300;
}
.area .req-cnt > div > dd dl div {
  margin-bottom: 1em;
}
.area .req-cnt > div > dd dl div:last-of-type {
  margin-bottom: 0;
}
.area .req-cnt > div > dd dl div dt {
  font-weight: 500;
}
.area .req-cnt > div > dd dl div dd {
  font-weight: 300;
}
.area .req-cnt > div > dd p {
  margin-bottom: 1em;
}
.area .req-cnt > div > dd p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .area .req-cnt > div {
    padding: 15px 0;
    flex-direction: column;
    gap: 5px 0;
  }
  .area .req-cnt > div > dt {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
  .area .req-cnt > div > dd {
    width: 100%;
    font-size: 15px;
  }
}
@media screen and (max-width: 520px) {
  .area {
    padding: 20px 0;
  }
  .area h2 {
    padding-bottom: 30px;
  }
}

main.requirements .selection {
  padding: 10% 0 0;
  position: relative;
}
main.requirements .selection::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  background: url(../img/selection-deco.svg) no-repeat;
  background-size: contain;
  width: 218px;
  height: 373px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.requirements .selection::after {
    width: 135px;
    bottom: inherit;
    left: inherit;
    top: 0;
    right: -20px;
  }
}
main.requirements .selection .select-cnt {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 85%;
  margin: 0 auto;
  padding-top: 3%;
}
main.requirements .selection .select-cnt li {
  width: 30%;
  border: 2px solid #000;
  background: #fff;
  padding: 0 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.requirements .selection .select-cnt li:nth-child(2) {
  margin-top: 40px;
}
main.requirements .selection .select-cnt li:nth-child(3) {
  margin-top: -20px;
}
main.requirements .selection .select-cnt li figure {
  width: 50%;
  margin: -20% auto 0;
}
main.requirements .selection .select-cnt li h3 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  color: #000;
  margin: 30px 0 0;
}
main.requirements .selection .select-cnt li h3 span {
  display: block;
  font-size: 0.7em;
  letter-spacing: 2px;
  color: #2996de;
  margin-top: 5px;
}
main.requirements .selection .select-cnt li p {
  text-align: center;
}
@media screen and (max-width: 520px) {
  main.requirements .selection .select-cnt {
    padding-top: 12%;
    flex-wrap: wrap;
    gap: 60px 0;
  }
  main.requirements .selection .select-cnt li {
    width: 100%;
    padding: 0 20px 20px;
  }
  main.requirements .selection .select-cnt li figure {
    width: 40%;
    margin: -15% auto 0;
  }
  main.requirements .selection .select-cnt li h3 {
    margin: 20px 0 0;
  }
  main.requirements .selection .select-cnt li:nth-child(2) {
    margin-top: 0;
  }
  main.requirements .selection .select-cnt li:nth-child(3) {
    margin-top: 0;
  }
}
main.requirements .selection .nomal {
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 520px) {
  main.requirements .selection .nomal {
    text-align: left;
    padding-top: 10px;
  }
}
main.requirements .selection .topbtns {
  width: 85%;
  margin: 0 auto;
}
main.requirements .selection .topbtns li {
  width: 48%;
}
main.requirements .selection .topbtns li:nth-of-type(2) a {
  background: #5abfb5;
  color: #fff;
  border: 2px solid #5abfb5;
}
main.requirements .selection .topbtns li:nth-of-type(2) a:hover {
  background: #fff;
  color: #5abfb5;
  border: 2px solid #5abfb5;
}
@media screen and (max-width: 520px) {
  main.requirements .selection .topbtns {
    width: 90%;
  }
  main.requirements .selection .topbtns li {
    width: 100%;
  }
}

.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.selectbox {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  border: 1px solid #000;
  padding: 13px 15px;
  position: relative;
}
.selectbox::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.6em;
  content: "\e5cf";
  font-family: "Material Icons";
  pointer-events: none;
  font-size: 1.6em;
}
.selectbox select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  color: #000;
}

.selectbox {
  display: none;
}

@media screen and (max-width: 640px) {
  .selectbox {
    display: block;
  }
  .tab {
    display: none;
  }
}
main.welfare h2 {
  font-size: 1.8rem;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  text-align: center;
  font-weight: 500;
  padding-bottom: 50px;
}
main.welfare h2 span {
  font-size: 0.8em;
  color: #2996de;
  font-weight: 400;
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin: 0 0 10px;
}
main.welfare h2 span::before {
  content: "＼";
}
main.welfare h2 span::after {
  content: "／";
}
@media screen and (max-width: 768px) {
  main.welfare h2 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  main.welfare h2 {
    font-size: 1.3rem;
  }
}

main.welfare .first-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
}
main.welfare .first-cnt ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
  width: 90%;
  margin: 0 auto;
}
main.welfare .first-cnt ul li {
  width: 23%;
}
main.welfare .first-cnt ul li figure {
  width: 50%;
  margin: 0 auto;
}
main.welfare .first-cnt ul li p {
  text-align: center;
  color: #2996de;
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 20px;
}
main.welfare .first-cnt ul li p span {
  display: block;
  font-size: 0.8em;
}
@media screen and (max-width: 520px) {
  main.welfare .first-cnt ul {
    gap: 20px 0;
    width: 100%;
  }
  main.welfare .first-cnt ul li {
    width: 33%;
  }
  main.welfare .first-cnt ul li figure {
    width: 60%;
  }
  main.welfare .first-cnt ul li p {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  main.welfare .first-cnt ul li p span {
    font-size: 0.7rem;
  }
}

main.welfare .second-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  width: 70%;
  display: flex;
  justify-content: space-between;
}
main.welfare .second-cnt section {
  width: 48%;
}
@media screen and (max-width: 768px) {
  main.welfare .second-cnt {
    width: 90%;
  }
  main.welfare .second-cnt section figure {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  main.welfare .second-cnt {
    flex-wrap: wrap;
    gap: 40px 0;
  }
  main.welfare .second-cnt section {
    width: 100%;
  }
  main.welfare .second-cnt section figure {
    width: 90%;
  }
}
main.welfare .second-cnt .com-hou p {
  text-align: center;
  color: #2996de;
  margin-top: 5%;
}
@media screen and (max-width: 520px) {
  main.welfare .second-cnt .com-hou p {
    font-size: 0.75rem;
  }
}

main.welfare .third-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 0;
  width: 70%;
}
main.welfare .third-cnt ul {
  display: flex;
  justify-content: space-between;
}
main.welfare .third-cnt ul li {
  width: 48%;
}
@media screen and (max-width: 520px) {
  main.welfare .third-cnt {
    width: 90%;
  }
  main.welfare .third-cnt ul {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.welfare .third-cnt ul li {
    width: 90%;
    margin: 0 auto;
  }
}

main.support .newlife {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 0;
}
main.support .newlife h2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.support .newlife h2 {
    padding-bottom: 30px;
  }
}
main.support .newlife .newlife-read {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5%;
}
main.support .newlife .newlife-read > p {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 2;
  width: 50%;
}
main.support .newlife .newlife-read ul {
  width: 48%;
  display: flex;
  justify-content: space-between;
}
main.support .newlife .newlife-read ul li {
  width: 23%;
}
main.support .newlife .newlife-read ul li figure {
  width: 60%;
  margin: 0 auto;
}
main.support .newlife .newlife-read ul li p {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  main.support .newlife .newlife-read ul {
    flex-wrap: wrap;
  }
  main.support .newlife .newlife-read ul li {
    width: 50%;
  }
  main.support .newlife .newlife-read ul li figure {
    width: 30%;
  }
}
@media screen and (max-width: 520px) {
  main.support .newlife .newlife-read {
    flex-wrap: wrap;
    gap: 20px 0;
    margin-bottom: 10%;
  }
  main.support .newlife .newlife-read > p {
    width: 100%;
  }
  main.support .newlife .newlife-read ul {
    width: 100%;
    gap: 20px 0;
  }
  main.support .newlife .newlife-read ul li {
    width: 47%;
    background: #dbefff;
    padding: 5% 3%;
  }
  main.support .newlife .newlife-read ul li figure {
    width: 30%;
  }
}
main.support .newlife .newlife-inr {
  display: flex;
  justify-content: space-between;
}
main.support .newlife .newlife-inr .newlife-cnt {
  width: 48%;
  background: #e9f4fc;
  padding: 40px;
}
main.support .newlife .newlife-inr .newlife-cnt h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin: 5% 0 4%;
}
main.support .newlife .newlife-inr .newlife-cnt figure {
  width: 70%;
  margin: 0 auto;
}
main.support .newlife .newlife-inr .newlife-cnt p {
  font-size: 1rem;
}
@media screen and (max-width: 520px) {
  main.support .newlife .newlife-inr {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.support .newlife .newlife-inr .newlife-cnt {
    width: 100%;
    padding: 20px;
  }
  main.support .newlife .newlife-inr .newlife-cnt h3 {
    font-size: 1.1rem;
    margin: 7% 0 4%;
  }
}

main.support .interview.enha {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  display: block;
}
main.support .interview.enha::after {
  height: 67%;
  top: 42%;
}
main.support .interview.enha::before {
  display: none;
}
main.support .interview.enha h2 {
  width: 100%;
}
main.support .interview.enha .enha-cnt .enha-txt {
  width: 30%;
  margin-top: 15%;
}
main.support .interview.enha .enha-cnt .enha-txt .occ {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
main.support .interview.enha .enha-cnt .enha-txt .occ span {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main.support .interview.enha .enha-cnt .enha-txt .occ {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  main.support .interview.enha .enha-cnt .enha-txt {
    width: 100%;
    margin-top: 0;
  }
}
main.support .interview.enha .beginning .begin-txt {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
main.support .interview.enha .beginning .begin-txt dt {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 520px) {
  main.support .interview.enha .beginning .begin-txt dt {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  main.support .interview.enha .beginning .begin-txt dd {
    font-size: 15px;
  }
}
main.support .interview.enha .photos {
  padding-top: 3%;
}
main.support .interview.enha .photos .ph-ttl {
  font-family: area-normal, sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 1.2rem;
  margin-bottom: 7px;
}
main.support .interview.enha .photos ul {
  display: flex;
  justify-content: space-between;
}
main.support .interview.enha .photos ul li {
  width: 18%;
}
@media screen and (max-width: 520px) {
  main.support .interview.enha .photos ul {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  main.support .interview.enha .photos ul li {
    width: 49%;
  }
}

main.support .cost {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}
main.support .cost::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 366px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.support .cost::after {
    width: 185px;
    right: 0px;
    top: -264px;
  }
}
main.support .cost::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  background: url(../img/selection-deco.svg) no-repeat;
  background-size: contain;
  width: 218px;
  height: 373px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  display: none;
}
main.support .cost h2 {
  padding-bottom: 50px;
}
main.support .cost h2 span {
  display: flex;
  align-items: center;
}
main.support .cost h2 span small {
  font-weight: 400;
  font-size: 0.7em;
}
@media screen and (max-width: 520px) {
  main.support .cost h2 {
    padding-bottom: 30px;
  }
}
main.support .cost figure {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  main.support .cost figure {
    width: 100%;
  }
}

main.faq dl {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 5%;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
main.faq dl dt {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 1.1rem;
}
main.faq dl dt::before {
  content: "Q";
  color: #2996de;
  font-size: 1.4em;
  line-height: 1;
  font-weight: 500;
}
main.faq dl dd {
  background: #e9f4fc;
  padding: 20px 30px;
  border-radius: 10px;
  margin-top: 10px;
}
main.faq dl dd.two-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.faq dl dd.two-flex p:first-of-type {
  width: 40%;
}
main.faq dl dd.two-flex p:last-of-type {
  width: 57%;
}
@media screen and (max-width: 520px) {
  main.faq dl {
    gap: 20px 0;
  }
  main.faq dl dt {
    font-weight: 500;
    font-size: 1rem;
  }
  main.faq dl dd {
    font-size: 15px;
    padding: 20px;
  }
  main.faq dl dd.two-flex {
    display: block;
  }
  main.faq dl dd.two-flex p:first-of-type,
  main.faq dl dd.two-flex p:last-of-type {
    width: 100%;
  }
  main.faq dl dd.two-flex p:last-of-type {
    margin-top: 2%;
  }
}
main.faq .nomal {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 520px) {
  main.faq .nomal {
    font-size: 1rem;
  }
}
main.faq .btn {
  width: 40%;
  margin: 0 auto;
}
main.faq .btn a {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  padding: 13px 0;
  border-radius: 999px;
  transition: 0.4s;
  color: #fff;
  background: #2996de;
  border: 2px solid #2996de;
}
main.faq .btn a:hover {
  background: #fff;
  color: #2996de;
}
@media screen and (max-width: 520px) {
  main.faq .btn {
    width: 90%;
  }
  main.faq .btn a {
    font-size: 1rem;
    padding: 10px 0;
  }
}

main.pp .pp-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  margin: 10% auto;
}
main.pp .pp-cnt:last-of-type {
  margin-bottom: 0;
}
main.pp .pp-cnt .right-text.bt-fade {
  text-align: right;
}
main.pp .pp-cnt h2 {
  font-size: 1.8em;
  letter-spacing: 3px;
  margin-bottom: 50px;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
}
main.pp .pp-cnt h2::first-letter {
  color: #000;
}

.pp .pp h2 .pp p {
  font-size: 1em;
  letter-spacing: 1px;
  line-height: 1.7;
}

.pp section dl {
  counter-reset: number 0;
  margin-bottom: 5%;
}

.pp section dt {
  font-size: 1.1em;
  font-weight: 500;
  margin: 3% 0 1% 0;
}

.pp section dt::before {
  counter-increment: number 1;
  content: counter(number) ".";
  display: inline-block;
  margin-right: 5px;
}

.pp section:nth-of-type(2) h3,
.pp section:nth-of-type(3) h3 {
  margin: 3% 0 2% -1%;
  font-weight: 500;
  font-size: 1.1rem;
  color: #000;
}

.pp section:nth-of-type(3) td ol li {
  margin: 1% 0 1% 3%;
}

.pp section:nth-of-type(3) ol ul {
  list-style-type: disc;
}

.pp section table {
  border: 1px solid #000;
  border-collapse: collapse;
}

.pp section table th,
.pp section table td {
  border: 1px solid #000;
  padding: 1.5%;
}

.pp section table th {
  font-weight: 500;
  text-align: left;
}

.pp ol.kakko {
  counter-reset: number 0;
  list-style-type: none;
}

.pp ol.kakko li {
  padding-left: 23px;
  text-indent: -23px;
  margin: 1% 0;
}

.pp ol.kakko li::before {
  counter-increment: number 1;
  content: "(" counter(number) ")";
  display: inline-block;
  margin-right: 5px;
  text-indent: 0;
}

.pp section:nth-of-type(3) h3 {
  font-size: 1em;
  margin-bottom: 1%;
}

.pp section:nth-of-type(3) h4 {
  margin: 10px 0 3px 0;
}

.pp section:nth-of-type(4) h3 {
  font-size: 1.1em;
  margin: 3% 0 2% 0;
  color: #000;
  font-weight: 500;
}

.pp section:nth-of-type(4) h4 {
  margin: 20px 0 3px 0;
  font-weight: 400;
}

.pp section:nth-of-type(4) ol {
  counter-reset: number 0;
  list-style-type: none;
}

.pp section:nth-of-type(4) ol li {
  padding-left: 23px;
  text-indent: -23px;
  margin: 1% 0;
  line-height: 1;
}

.pp section:nth-of-type(4) ol li::before {
  counter-increment: number 1;
  content: counter(number) "";
  display: inline-block;
  margin: 0 5px 0 10px;
  text-indent: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  border-radius: 50%;
  text-align: center;
  font-size: 0.9em;
}

.pp section:nth-of-type(4) ul {
  margin: 2% 0;
}

.pp section:nth-of-type(4) ul li {
  padding-left: 22px;
  text-indent: -22px;
}

.pp section:nth-of-type(4) ul li::before {
  content: "◇";
  display: inline-block;
  margin: 0 5px 0 0;
  text-indent: 0;
}

main.internship > .ttl {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 5% 0 10%;
  position: relative;
}
main.internship > .ttl::after {
  content: "";
  position: absolute;
  top: 3%;
  right: 0;
  background: url(../img/intern-deco.svg) no-repeat;
  background-size: contain;
  width: 390px;
  height: 336px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 520px) {
  main.internship > .ttl::after {
    top: 86%;
    width: 200px;
  }
}
@media screen and (max-width: 520px) {
  main.internship > .ttl {
    font-size: 1rem;
    padding: 5% 0 7%;
  }
}
main.internship .intern {
  width: 90%;
  margin: 0 auto 50px;
  max-width: 1100px;
}
main.internship .intern .ttl_txt {
  padding-top: 1em;
}
main.internship .intern h3 {
  margin-top: 50px;
}
main.internship .intern h3 .big {
  font-size: 1.3em;
}
main.internship .intern h3 .block {
  color: #000;
  font-weight: 400;
  font-size: 1.1rem;
}
@media screen and (max-width: 520px) {
  main.internship .intern h3 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  main.internship .intern h3 .block {
    display: block;
    font-size: 1rem;
    margin-top: 7px;
  }
}
main.internship .intern ol {
  display: flex;
  justify-content: space-between;
}
main.internship .intern ol li {
  width: 31%;
}
main.internship .intern ol li .intern-txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e9f4fc;
  border-bottom: 3px solid #2996de;
  min-height: 300px;
}
main.internship .intern ol li .intern-txt div {
  padding: 20px 20px 0;
}
main.internship .intern ol li .intern-txt .day {
  text-align: end;
  font-weight: 600;
  font-size: 2rem;
  color: #2996de;
  line-height: 0.7;
}
main.internship .intern ol li .intern-txt .day span {
  font-size: 1.4em;
}
main.internship .intern ol li .only {
  text-align: center;
  color: #fff;
  background: #2996de;
  border-radius: 999px;
  width: fit-content;
  padding: 2px 15px;
  margin: 0 auto;
  font-size: 0.9em;
  font-weight: 400;
}
main.internship .intern ol li h4 {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 500;
  padding: 10px 0 15px;
}
main.internship .intern ol li h4 span {
  display: block;
  font-size: 0.8em;
}
main.internship .intern ol li .normal {
  font-weight: 400;
  padding-bottom: 20px;
}
@media screen and (max-width: 520px) {
  main.internship .intern ol {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.internship .intern ol li {
    width: 100%;
  }
  main.internship .intern ol li .normal {
    font-size: 15px;
    padding-bottom: 0;
  }
  main.internship .intern ol li .intern-txt {
    min-height: auto;
    gap: 20px 0;
  }
}
main.internship .app {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 5% 0;
  position: relative;
}
main.internship .app::after {
  background: #f8fbfd;
  top: 0px;
  left: 0px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.internship .app > p {
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 3%;
}
main.internship .app dl {
  padding-top: 8%;
}
main.internship .app dl div {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #b2b2b2;
  line-height: 2;
}
main.internship .app dl div:first-of-type {
  padding-top: 0;
}
main.internship .app dl div dt {
  width: 15%;
  text-align: end;
}
main.internship .app dl div dd {
  width: 81%;
}
main.internship .app dl div dd ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
@media screen and (max-width: 520px) {
  main.internship .app dl div {
    flex-direction: column;
    gap: 10px 0;
    padding: 15px 0;
  }
  main.internship .app dl div dt {
    width: 100%;
    text-align: start;
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
  }
  main.internship .app dl div dd {
    width: 100%;
    line-height: 1.5;
    font-size: 15px;
  }
}

main.flow > .ttl {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 5% 0 10%;
  position: relative;
}
@media screen and (max-width: 768px) {
  main.flow > .ttl {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 520px) {
  main.flow > .ttl {
    font-size: 1rem;
  }
}
main.flow .selection {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}
main.flow .selection::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 208px;
  height: 336px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
main.flow .selection > dl {
  margin-top: 50px;
}
main.flow .selection > dl > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eff8ff;
  padding: 20px 0;
}
main.flow .selection > dl > div:nth-of-type(2n) {
  background: #dbefff;
}
main.flow .selection > dl .day {
  width: 8%;
  text-align: center;
  color: #2996de;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.flow .selection > dl .day::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #2996de;
  border-top: 2px solid #2996de;
  transform: rotate(135deg);
}
main.flow .selection > dl .prece {
  width: 17%;
  background: #fff;
  color: #2996de;
  text-align: center;
  border-radius: 999px;
  padding: 3px 0;
}
main.flow .selection > dl .exp {
  width: 65%;
}
main.flow .selection > dl .exp dl div {
  display: flex;
  justify-content: space-between;
}
main.flow .selection > dl .exp dl div dt {
  width: 7%;
}
main.flow .selection > dl .exp dl div dd {
  width: 91%;
}
@media screen and (max-width: 768px) {
  main.flow .selection > dl .exp dl div dt {
    width: 10%;
  }
  main.flow .selection > dl .exp dl div dd {
    width: 88%;
  }
}
@media screen and (max-width: 520px) {
  main.flow .selection > dl {
    margin-top: 30px;
  }
  main.flow .selection > dl > div {
    flex-wrap: wrap;
    justify-content: start;
    gap: 5px 5%;
    padding: 20px 10px;
  }
  main.flow .selection > dl .day {
    width: 10%;
  }
  main.flow .selection > dl .prece {
    width: 40%;
  }
  main.flow .selection > dl .exp {
    width: 85%;
    margin: 0 0 0 auto;
  }
  main.flow .selection > dl .exp dl div dt {
    width: 20%;
  }
}
main.flow .join {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 0;
  position: relative;
}
main.flow .join::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10px;
  background: url(../img/general-work-deco.svg) no-repeat;
  background-size: contain;
  width: 208px;
  height: 336px;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
}
main.flow .join ol {
  margin-top: 9%;
  display: flex;
  justify-content: space-between;
}
main.flow .join ol li {
  width: 23%;
  background: #e9f4fc;
  position: relative;
  padding: 30px 20px;
}
main.flow .join ol li::after {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #e9f4fc;
  border-top: 3px solid #e9f4fc;
  transform: rotate(50deg) translateY(-50%);
}
main.flow .join ol li:last-of-type::after {
  display: none;
}
main.flow .join ol li .day {
  position: absolute;
  top: -5vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 60%;
}
main.flow .join ol li .img {
  width: 60%;
  margin: 0 auto;
}
main.flow .join ol li .img img {
  border-radius: 999px;
}
main.flow .join ol li h3 {
  text-align: center;
  color: #000;
  font-size: 1.2rem;
  margin: 15px 0 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  main.flow .join ol li .day {
    top: -1vh;
  }
}
@media screen and (max-width: 520px) {
  main.flow .join ol {
    flex-wrap: wrap;
    gap: 35px 0;
    margin-top: 12%;
  }
  main.flow .join ol li {
    width: 100%;
  }
  main.flow .join ol li h3 {
    font-size: 1.1rem;
    margin: 15px 0 10px;
  }
  main.flow .join ol li .day {
    width: 30%;
    top: -1.8vh;
  }
  main.flow .join ol li .img {
    width: 35%;
    margin: 0 auto;
  }
}
main.flow .training {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  margin-top: 10%;
  position: relative;
  padding: 5% 0;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 520px) {
  main.flow .training {
    padding: 10% 0;
  }
}
main.flow .training::after {
  background: #2996de;
  top: 0px;
  left: 0px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.flow .training h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 520px) {
  main.flow .training h2 {
    margin-bottom: 30px;
  }
}
main.flow .training .normal {
  margin-bottom: 1em;
}
main.flow .training .normal:last-of-type {
  margin-bottom: 3em;
}
main.flow .training .occ div,
main.flow .training li {
  background: rgba(255, 255, 255, 0.2);
  padding: 25px;
}
main.flow .training .occ div h3,
main.flow .training li h3 {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin-bottom: 10px;
}
main.flow .training .occ div h3 .block,
main.flow .training li h3 .block {
  color: #fde52c;
  font-size: 0.6em;
  display: block;
  font-weight: 400;
  letter-spacing: 1.5px;
  font-weight: 300;
  margin-top: 7px;
}
main.flow .training .occ div h3 .sm,
main.flow .training li h3 .sm {
  font-size: 0.5em;
  vertical-align: top;
}
main.flow .training .occ div p span,
main.flow .training li p span {
  display: block;
  font-size: 0.7em;
  margin-top: 15px;
}
main.flow .training .occ {
  position: relative;
  padding-bottom: 7%;
}
main.flow .training .occ::after, main.flow .training .occ::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
  margin: 0;
  z-index: 999;
  bottom: 10%;
  left: 50%;
  top: 81%;
}
main.flow .training .occ::before {
  left: 50%;
  transform: rotate(0deg);
  bottom: 10%;
}
main.flow .training .occ::after {
  left: 50%;
  transform: rotate(90deg);
  bottom: 10%;
}
@media screen and (max-width: 768px) {
  main.flow .training .occ::after, main.flow .training .occ::before {
    top: 86%;
  }
}
@media screen and (max-width: 520px) {
  main.flow .training .occ {
    padding-bottom: 10%;
  }
  main.flow .training .occ::after, main.flow .training .occ::before {
    top: 92%;
    left: 48%;
  }
}
main.flow .training ul {
  display: flex;
  justify-content: space-between;
}
main.flow .training ul li {
  width: 25%;
}
main.flow .training ul li:first-of-type {
  width: 45%;
}
@media screen and (max-width: 768px) {
  main.flow .training ul {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.flow .training ul li {
    width: 49%;
  }
  main.flow .training ul li:first-of-type {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  main.flow .training ul {
    gap: 10px 0;
  }
  main.flow .training ul li {
    width: 100%;
  }
}

main.about .about-cnt.sitemap {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 0;
}
main.about .about-cnt.sitemap ul li {
  line-height: 3;
}
main.about .about-cnt.sitemap ul li a {
  transition: ease all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
main.about .about-cnt.sitemap ul li a:hover {
  text-decoration-color: #000;
}
main.about .about-cnt.sitemap ul li ul {
  margin-left: 2em;
}

main.entry .entry-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 0;
}
main.entry .entry-cnt h2 {
  padding-bottom: 50px;
}
main.entry .entry-cnt .lead {
  margin-bottom: 2%;
}
main.entry .entry-cnt .lead a {
  text-decoration: underline;
}
main.entry .entry-cnt .entry-form {
  background: #eff8ff;
  padding: 5%;
}
main.entry .entry-cnt .entry-form.thanks {
  padding: 5%;
  text-align: center;
}
@media screen and (max-width: 520px) {
  main.entry .entry-cnt .entry-form {
    padding: 1%;
  }
  main.entry .entry-cnt .entry-form.thanks {
    text-align: left;
  }
}

main.document .document-cnt {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0 0;
}
main.document .document-cnt h2 {
  padding-bottom: 50px;
}
main.document .document-cnt .lead {
  margin-bottom: 2%;
}
main.document .document-cnt .lead a {
  text-decoration: underline;
}
main.document .document-cnt .entry-form {
  background: #eff8ff;
  padding: 5%;
}
main.document .document-cnt .entry-form.thanks {
  padding: 5%;
  text-align: center;
}
@media screen and (max-width: 520px) {
  main.document .document-cnt .entry-form {
    padding: 1%;
  }
  main.document .document-cnt .entry-form.thanks {
    text-align: left;
  }
}

.headline {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.headline .rect {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: white;
  width: 100%;
  height: 100%;
  transform: translateX(-101%);
}

@media screen and (max-width: 768px) {
  main.home .news .topbtns {
    justify-content: center;
  }
}
main.home .event {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 10% 0;
}
main.home .event::after {
  background: #f8fbfd;
  top: 0px;
  left: 0px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -2;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
main.home .event::before {
  content: "";
  background: url(../img/top-recruit-deco.svg) no-repeat;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  right: -40px;
  top: -120px;
  width: 324px;
  height: 405px;
  z-index: -1;
  background-size: contain;
}
main.home .event > p {
  margin-top: 2%;
}
main.home .event .event-list {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
main.home .event .event-list li {
  width: 18%;
}
main.home .event .event-list li a {
  display: block;
  position: relative;
}
main.home .event .event-list li a::after {
  content: "";
  background: url(../img/event-list-deco.svg) no-repeat;
  background-size: contain;
  background-position: top right;
  width: 60px;
  height: 63px;
  position: absolute;
  top: -30px;
  right: 0;
  opacity: 0;
  transition: 0.4s;
}
main.home .event .event-list li a:hover::after {
  opacity: 1;
}
@media screen and (max-width: 520px) {
  main.home .event::before {
    top: -60px;
    width: 120px;
    height: 155px;
    right: -8%;
  }
  main.home .event .event-list {
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  main.home .event .event-list li {
    width: 48%;
  }
  main.home .event .event-list li a::after {
    width: 40px;
    height: 43px;
    top: 0px;
  }
}
