* {
  padding: 0;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.448;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  object-fit: cover;
}


a:hover{
  cursor: pointer;
  transition:all .5s;
  opacity: 0.5;
}


.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #333;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {

  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }

  100%,
  0% {
    transform: scale(1.0);
  }
}

/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  background-color: #fff;
  transition: all 1s;
}

.sk-chase {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

.sk {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50px, 50px);
}

/* ローディングアニメーション */

.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  z-index: 5;
  background-color: #fff;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.header-transparent a {
  color: #fff;
}

.header-transparent {
  background-color: rgba(0, 0, 0, 0);
}


.header-left img {
  width: 48px;
  height: 51px;
}

.header-left {
  display: flex;
  gap: 14px;
  padding: 25px 0 0 20px;
}

.p-1 {
  font-weight: 700;
  font-size: 20px;
  color: #006fb0;
  margin-bottom: 5px;
}

.p-2 {
  font-weight: 700;
  font-size: 12px;
  color: #006fb0;
}

.header-right ul {
  display: flex;
  align-items: center;
  padding-top: 25px;
}

.header-right li {
  font-weight: 400;
  font-size: 13px;
  color: #333333;
  margin-right: 29px;
}

.header-right a {
  color: #333333;
}


.header-transparent a {
  color: #fff;
}

.li-1 {
  width: 180px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  background-color: #00a3e0;
}

.header-right .li-1 {
  margin-right: 12px;
}

.header-right .li-2 {
  margin-right: 20px;
}

.li-2 {
  width: 180px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  background-color:#006fb0;
  margin-right: 20px;
}

.li-1 a {
  color: #fff;
}

.li-2 a {
  color: #fff;
}

.hamburger {
  width: 20px;
  height: 12px;
  position: absolute;
  top: 24px;
  right: 20px;
  display: none;
}

.hamburger_bar {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: #333;
}

.hamburger_bar:nth-child(1) {
  top: 0;
}

.hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}



.overlay {
  background-color: #fff;
  opacity: 0.9;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 50;
}

.overlay ul {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
}

.overlay li {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.overlay a{
  color:#333;
}

.li-3 {
  padding: 16px;
  background-color: #006fb0;
  border-radius: 8px;
}

.li-3 a {
  color: #fff;
}

.li-4 {
  padding: 16px;
  background-color: #00a3e0;
  border-radius: 8px;
}

.li-4 a {
  color: #fff;
}

.batsu {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 30px;
  right: 30px;
}

.batsu::before,
.batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  /* 棒の幅（太さ） */
  height: 30px;
  /* 棒の高さ */
  background: #333;
}

.batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hidden {
  display: none;
  pointer-events: none;
}


.modal {
  background: #000000CC;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.modal-box {
  width: 500px;
  height: 439px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 20px;
  position: absolute;
  right: 50%;
  bottom:50%;
  transform: translate(50%,50%);
}

.modal-batsu {
  position: absolute;
}

.modal-box h1 {
  font-weight: 700;
  line-height: 36px;
  color: #333;
  font-size: 24px;
  margin: 40px 0 22px;
  text-align: center;
}

.modal-box p {
  font-weight: 400;
  line-height: 21px;
  color: #606266;
  font-size: 14px;
  margin-bottom: 11px;
}

.input-1 {
  width: 100%;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  height: 40px;
  margin-bottom: 29px;
  border-radius: 4px;
  padding: 12px 14px;
}

.input-2 {
  width: 100%;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  height: 40px;
  border-radius: 4px;
  padding: 12px 14px;
}

.input-3 {
  width: 130px;
  height: 38px;
  font-weight: 700;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  background-color: #1E5099;
  border-radius: 4px;
  box-sizing: border-box;
  border: none;
  display: block;
  margin: 34px auto 0;
  opacity: 0.2;
}

.modal a {
  font-weight: 400;
  font-size: 14px;
  color: #448AFF;
  line-height: 21px;
  position: absolute;
  bottom: 20px;
  right: 20px
}

.modal-batsu {
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  top: 20px;
  right: 20px;
}

.modal-batsu::before,
.modal-batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 30px;
  /* 棒の高さ */
  background: #4b4b4b;
}

.modal-batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



.top {
  aspect-ratio: 1440/818;
  position: relative;
}

.img-1 {
  aspect-ratio: 1122/705;
  width: 77.92%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  animation: change-img-anim 15s infinite;
  animation-delay: 0s;
  opacity: 0;
}

.img-1-2 {
  aspect-ratio: 1122/705;
  width: 77.92%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  animation: change-img-anim 15s infinite;
  animation-delay: 5s;
  opacity: 0;
}

.img-1-3 {
  aspect-ratio: 1122/705;
  width: 77.92%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  animation: change-img-anim 15s infinite;
  animation-delay: 10s;
  opacity: 0;
}

@keyframes change-img-anim {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.img-2 {
  aspect-ratio: 587/270;
  width: 40.76%;
  position: absolute;
  bottom: 10%;
  left: 9.24%;
  z-index: 3;
}

.top-back {
  background: linear-gradient(180deg, #006fb0 0%, #00a3e0 99.98%);
  aspect-ratio: 1258/575;
  width: 87.36%;
  position: absolute;
  bottom: 0;
  left: 0;
}


.mission-vision {
  position: relative;
}


.img-3 {
  width: 120px;
  height: 15px;
  display: block;
  margin: 78px auto 9px;
}

.mission-vision h1 {
  font-weight: 700;
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin-bottom: 132px;
}

.mission {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}

.vision {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: right;
  margin: 0 auto;
  overflow: hidden;
}

.mission img {
  width: 200px;
  height: 40px;
  margin-bottom: 25px;
  transform: translateX(-50px);
}

.mission h2 {
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  line-height: 36px;
  margin-bottom: 25px;
  max-width: 530px;
}

.mission p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
  margin-bottom: 111px;
  max-width: 700px;
}

.vision img {
  width: 200px;
  height: 40px;
  margin-bottom: 25px;
  transform: translateX(50px);
}

.vision h2 {
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  line-height: 36px;
  margin-bottom: 25px;
  max-width: 364px;
  display: block;
  margin-left: auto;
}

.vision p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
  padding-bottom: 100px;
  max-width: 700px;
  display: block;
  margin-left: auto;
}

.img-4 {
  position: absolute;
  bottom: 0;
  width: 100%;
}


.img-5 {
  width: 150px;
  height: 40px;
  margin: 78px auto 9px;
  display: block;
}

.message h1 {
  font-weight: 700;
  font-size: 40px;
  color: #333333;
  margin-bottom: 69px;
  text-align: center;
}

.message-content {
  position: relative;
  width: 100%;
  padding: 0 16.66%;
  box-sizing: border-box;
  text-shadow: 0 0 16px #fff, 0 0 16px #fff;
}

.message-content h2 {
  font-weight: 400;
  font-size: 32px;
  color: #333333;
  padding: 23px 0 30px;
}

.message-content p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 36.8px;
  width: 550px;
}

.img-6 {
  width: 100%;
  height: 752px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  object-fit: cover;
  object-position: right;
}

.img-10 {
  width: 100%;
  height: 752px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  object-fit: cover;
  object-position: right;
  display: none;
}



.message-name {
  width: 298px;
  height: 123px;
  padding: 16px 0 21px 26px;
  box-sizing: border-box;
  position: absolute;
  bottom: 26px;
  right: 0px;
  background-color: #fff;
}

.message-name p {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
  line-height: 26.06px;
  width: fit-content;
}

.message-name img {
  width: 156px;
  height: 40px;
}


.img-8 {
  width: 150px;
  height: 40px;
  display: block;
  margin: 104px auto 9px;
}

.job-list-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.job-list h1 {
  font-weight: 700;
  font-size: 40px;
  color: #333333;
  margin-bottom: 43px;
  text-align: center;
}

.p-3 {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin-bottom: 127px;
  text-align: center;
}

.job {
  width: 431px;
  position: relative;
}

.job a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.job-1 {
  margin: 0 98px 133px 0;
}

.job-3 {
  margin-right: 98px;
}

.job img {
  width: 100%;
  aspect-ratio: 431/267;
  vertical-align: bottom;
}

.job-text {
  position: absolute;
  top: 188px;
  left: 20px;
  width: 100%;
}

.p-4 {
  width: 120px;
  height: 25px;
  background-color: #333333;
  color: #fff;
  line-height: 25px;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
}

.p-5 {
  width: 100%;
  background-color: #fff;
  color: #333333;
  line-height: 25px;
  box-sizing: border-box;
  padding: 30px 109px 29px 17px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20.4px;
  box-shadow: 0px 3px 6px 0px #00000029;
  position: relative;
}

.p-5 img {
  position: absolute;
  bottom: 50%;
  right: 20px;
  transform: translateY(50%);
  width: 13px;
  height: 13px;
}

.p-6 {
  padding: 20px 109px 19px 17px;
}

.job-list-back {
  width: 87.36%;
  height: 941px;
  position: absolute;
  top: 214px;
  right: 0;
  background-color: #f9f9f9;
  z-index: -1;
}

.job-list {
  position: relative;
}


.orenge-back {
  margin-top: 313px;
  width: 100%;
  height: 505px;
  background-image: url(img/meeting.jpg);
  background-size: cover;
  position: relative;
}

.orenge-back::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, #006fb0,#00a3e0);
  opacity: 0.8;
  content: '';
}

.orenge {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.orenge img {
  width: 49px;
  height: 49px;
  display: block;
  padding-top: 84px;
  margin: 0 auto 20px;
}

.orenge h1 {
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  margin-bottom: 21px;
  text-align: center;
  padding-top: 100px;
}

.orenge p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  text-align: center;
  margin: 21px 0 48px;
}

.orenge a {
  width: 330px;
  height: 84px;
  box-sizing: border-box;
  border: 4px solid #FFFFFF;
  border-radius: 42px;
  text-align: center;
  line-height: 76px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  display: block;
  margin: 0 auto;
  position: relative;
}

a>.img-12 {
  position: absolute;
  top: 30px;
  right: 38px;
  width: 16px;
  height: 16px;
  padding-top: 0;
}


footer {
  width: 100%;
  height: 149px;
  display: flex;
  justify-content: space-between;
}

.img-9 {
  width: 48px;
  height: 51px;
}

.footer-left {
  display: flex;
  gap: 5px;
  padding: 49px 0 0 20px;
}

.p-7 {
  font-weight: 700;
  font-size: 12px;
  color:#006fb0;
}

.p-8 {
  font-weight: 700;
  font-size: 20px;
  color: #006fb0;
  margin-top: 5px;
}

.footer-right {
  font-weight: 400;
  font-size: 10px;
  color: #333333;
  padding-top: 68px;
  padding-right: 20px;
}


.span-768 {
  display: none;
}

.span-1024 {
  display: none;
}



.entry-form {
  background-color: #F6F3EC;
  padding: 72px 0 75px;
}

.form {
  max-width: 1140px;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  padding: 0 100px 126px;
  box-sizing: border-box;
}

.blank {
  min-height: 100px;
}

.form h1 {
  font-weight: 400;
  font-size: 36px;
  color: #333333;
  padding: 98px 0 48px;
}

.span-1 {
  color:#006fb0;
}

.p-9 {
  line-height: 37.8px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin-bottom: 59px;
}

.necessary {
  width: 46px;
  height: 27px;
  background-color: #006fb0;
  text-align: center;
  line-height: 27px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  margin-right: 15px;
}

.achivement .necessary {
  background-color: #ddd;
  color: #909090;
}

.name {
  display: flex;
  gap: 149px;
  align-items: center;
  margin-bottom: 61px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.name input {
  width: 466px;
  height: 40px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.age {
  display: flex;
  gap: 149px;
  align-items: center;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.age input {
  width: 153px;
  height: 40px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.address {
  display: flex;
  gap: 93px;
  align-items: center;
  margin-bottom: 66px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.address input {
  width: 466px;
  height: 40px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.apply-job {
  display: flex;
  gap: 135px;
  margin-bottom: 52px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.radio {
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}

.radios {
  padding-top: 5.5px;
}

.salary {
  display: flex;
  gap: 135px;
  align-items: center;
  margin-bottom: 66px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.salary input {
  width: 153px;
  height: 40px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.achivement {
  display: flex;
  gap: 163px;
  margin-bottom: 66px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.achivement textarea {
  width: 466px;
  height: 290px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.educate {
  display: flex;
  gap: 163px;
  margin-bottom: 61px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.educate textarea {
  width: 466px;
  height: 200px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.PR {
  display: flex;
  gap: 145px;
  margin-bottom: 48px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.PR textarea {
  width: 466px;
  height: 200px;
  border: 1px solid #DCDFE6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 14px;
}

.p-10 {
  line-height: 18px;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  width: 445px;
  margin-bottom: 25px;
}

.educate .p-10 {
  padding-top: 5.5px;
}

.PR .p-10 {
  padding-top: 5.5px;
}


/*標準表示のチェックボックスを非表示にする*/
input[type=checkbox] {
  display: none;
}

/*ボックス枠のCSS*/
.check-box::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  margin:-6px  0 0 -2px;
  width: 16px;
  height: 16px;
  border: 1px solid #E0E5EB;
  box-sizing: border-box;
  background-color: #F9FBFD;
  border-radius: 2px;
}

.check-box {
  position: relative;
  padding: 0 0 0 30px;
  display: block;
  width: fit-content;
  margin: 0 auto 98px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color:#333;
}

.check-box:hover::after {
  border-color: #0171bd;
}

.check-box::after,
.check-box::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}

/*チェックマークの追加*/
.check-box::before {
  left: 1px;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 4px solid red;
  border-bottom: 4px solid red;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 2;
}

/*チェックボックスがチェックされた時に動作する内容*/
input[type=checkbox]:checked+.check-box::before {
  opacity: 1;
}



.input-4 {
  width: 330px;
  height: 84px;
  background-color:#006fb0;
  border-radius: 42px;
  margin: 0 auto;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 84px;
  border: none;
  opacity: 0.2;

}

.input-4-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  transform: translateX(15px);
}

::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #c1c1c1;
}

.img-11 {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 34px;
  right: 42px;
}

.radio {
  cursor: pointer;
  padding-left: 44px;
  position: relative;
  margin-bottom: 20px;
}

.radio::before,
.radio::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radio::before {
  background-color: #F3F6FA;
  height: 26px;
  width: 26px;
  left: 0px;
}

.radio::after {
  background-color: #00a3e0;
  opacity: 0;
  height: 12px;
  width: 12px;
  left: 7px;
}

input:checked+.radio::after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

textarea {
  resize: none;
}



.top-visual-back::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #00000080;
  content: '';
}

.top-visual-back {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  background-size: cover;
  min-height: 434px;
  position: relative;
}

.director-back {
  background-image: url(img/job-1.jpg);
}

.enginer-back {
  background-image: url(img/job-2.jpg);
}

.designer-back {
  background-image: url(img/job-3.jpg);
}

.marketer-back {
  background-image: url(img/job-4.jpg);
}

.top-visual {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}



.top-visual p {
  font-weight: 400;
  font-size: 14px;
  color: #FFB800;
  text-align: center;
  padding: 157px 0 9px;
}

.top-visual h1 {
  font-weight: 400;
  font-size: 42px;
  color: #fff;
  text-align: center;
}

.p-11 {
  margin: 83px 0 158px;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  color: #3B320F;
}

.director-top {
  position: relative;
}

.director-top-back {
  position: absolute;
  top: 204px;
  width: 100%;
  height: 612px;
  background-color: #E9DBB5;
  z-index: -1;
}

.apply-content h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 64px;
  text-align: center;
  color: #000;
  margin-bottom: 75px;
}

.apply-table {
  width: 90%;
  max-width: 1122px;
  margin: 0 auto 188px;
}

.job-content {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
}

.qualification {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.ways {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.skill {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.first-salary {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.time {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.salary-raise {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.bonus {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.holiday {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.welfare {
  display: flex;
  border-bottom: 1px solid #e7e7e7;
}

.title {
  min-width: 200px;
  padding-left: 40px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  color: #333333;
  display: flex;
  align-items: center;
}

.content {
  padding: 39px 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #333333;
}

.director-orenge {
  margin-top: 188px;
}

.span-2 {
  font-weight: 700;
}

.blank-1024 {
  min-height: 60px;
  display: none;
}



@media(max-width:1275px) {
  .message-content p {
    transform: translateX(-150px);
  }

  .message-content h2 {
    transform: translateX(-150px);
  }

  .message-name p {
    transform: none;
  }

}


@media(max-width:1024px) {

  header {
    height: 60px;
  }

  .header-left img {
    width: 36px;
    height: 36px;
  }

  .header-left {
    padding: 12px 18px;
  }

  .blank {
    min-height: 60px;
  }

  .p-1 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .p-2 {
    font-size: 10px;
  }


  .header-right {
    display: none;
  }

  .blank-1024 {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .header-transparent {
    background-color: #fff;
  }


  .job-list-content {
    flex-direction: column;
  }

  .job {
    margin: 0 auto 133px;
  }

  .job-list-back {
    height: 1700px;
  }


  .span-1024 {
    display: inline;
  }


  .orenge-back {
    height: 575px;
  }

  .img-6 {
    display: none;
  }

  .img-10 {
    display: block;
  }

  .message-content {
    padding: 0;
  }

  .message-content h2 {
    padding-top: 500px;
    transform: none;
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  .message-content p {
    transform: none;
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  .message-name {
    width: 200px;
    top: 200px;
    left: 0;
  }

  .message-name p {
    margin-bottom: 20px;
  }


  .name {
    flex-direction: column;
    gap: 25px;
    align-items: start;
  }

  .age {
    flex-direction: column;
    gap: 25px;
    align-items: start;
  }

  .address {
    flex-direction: column;
    gap: 25px;
    align-items: start;
  }

  .apply-job {
    flex-direction: column;
    gap: 25px;
  }

  .salary {
    flex-direction: column;
    gap: 25px;
    align-items: start;
  }

  .name {
    flex-direction: column;
    gap: 25px;
  }

  .achivement {
    flex-direction: column;
    gap: 25px;
  }

  .educate {
    flex-direction: column;
    gap: 25px;
  }

  .PR {
    flex-direction: column;
    gap: 25px;
  }
}

@media(max-width:768px) {
  .top {
    aspect-ratio: 375/593;
  }

  .top-back {
    aspect-ratio: 316/522;
  }

  .modal-box{
    width:340px;
  }

  .img-1 {
    aspect-ratio: 315/545;
    object-fit: cover;
  }

  .img-1-2 {
    aspect-ratio: 315/545;
    object-fit: cover;
  }

  .img-1-3 {
    aspect-ratio: 315/545;
    object-fit: cover;
  }

  .img-2 {
    aspect-ratio: 341/150;
    bottom: 12.48%;
    left: 50%;
    transform: translateX(-50%);
    width: 90.93%;
  }

  .span-768 {
    display: inline;
  }

  .mission p{
    max-width:500px ;
  }

  .vision p{
    max-width: 490px;
  }

  .img-10 {
    height: 272px;
  }

  .message-content h2 {
    padding-top: 220px;
  }

  .message-name {
    top: 100px;
    padding:0;
    width:fit-content;
    height:fit-content;
    padding:5px;
  }

  .message-name img {
    width: 78px;
    height: 20px
  }

  .message-name p {
    font-size: 12px;
    margin-bottom: 10px;
    min-width: 90px;
  }

  .job {
    max-width: 431px;
    width: 90%;
    margin-bottom: 170px;
  }

  .job-list-back{
    height:90%;
  }

  .job-text{
    width: 98%;;
  }

  .p-5 {
    padding-right: 40px;
    width: 100%;
  }

 

  .orenge-back {
    height: 700px;
  }

  .footer-right{
    padding-right: 10px;
  }

  .footer-left{
    padding-left: 10px;
  }



  .form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .name input {
    max-width: 100%;
  }

  .address input {
    max-width: 100%;
  }

  .achivement p {
    max-width: 100%;
  }

  .achivement textarea {
    max-width: 100%;
  }

  .educate p {
    max-width: 100%;
  }

  .educate textarea {
    max-width: 100%;
  }

  .PR p {
    max-width: 100%;
  }

  .PR textarea {
    max-width: 100%;
  }

  .input-4-wrap {
    transform: none;
  }

  .input-4 {
    width: 270px;
  }


  .director-top-back {
    height: 800px;
  }

  .title {
    min-width: 100px;
    width: 100px;
    padding-left: 20px;
  }

  .content {
    padding: 20px;
  }


  .span-pc{
    display: none;
  }
}