
a{
  text-decoration: none;
}
p,li,dl,dd{
  font-weight: 300;
  font-size: 18px;
}
body {
  font-family: 'ヒラギノ角ゴシック', sans-serif;
  margin:0;
  overflow-x: hidden;
}
.main{
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  vertical-align: middle;
  object-fit: cover;
}
.sp-only{
  display: none !important;
}
.pc-only{
  display: block !important;
}
@media only screen and (max-width: 767px) {
  p,li,dl,dd{
    font-size: 16px;
    line-height: 1.8em;
  }
  .sp-only{
    display: block !important;
  }
  .pc-only{
    display: none !important;
  }
}

/* hero */
.hero {
  background-image: url(../img/maintenance/hero-back.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero__image{
  margin: 0 auto;
  display: block;
  max-width: 1200px;
  padding: 405px 0 30px;
}
.hero__logo{
  position:absolute;
  top:22px;
  left: 24px;
}
.hero__entry-btn{
  position:absolute;
  background-color: #362A65;
  width: 176px;
  top:22px;
  right: 24px;
  text-align: center;
}
.hero__entry-btn a{
  color: #FFF;
  display: block;
  font-size: 28px;
  padding: 15px 0;
}
.hero__entry-btn:hover{
  opacity: 0.7;
}
@media only screen and (max-width: 820px) {
  .hero__image{
    padding: 405px 0 55px;
    max-width: 702px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .hero__image{
    padding: 235px 0 50px;
    max-width: 351px;
  }
  .hero__logo{
    position:absolute;
    top:0px;
    left: 0px;
    width: 83px;
  }
}

/* message */
.message{
  background-color: #CFF1FF;
}
.message__image{
  margin: 0 auto;
  display: block;
  max-width: 1920px;
}
@media only screen and (max-width: 820px) {
  .message__image{
    padding-top: 44px;
    max-width: 586px;
  }
}
@media only screen and (max-width: 767px) {
  .message__image{
    max-width: 340px;
  }
}


/* challenge */
.challenge{
  background-color: #CFF1FF;
  padding-bottom: 100px;
}
.challenge__image-top{
  margin: 0 auto;
  display: block;
  max-width: 1200px;
  padding: 50px 0 130px;
}
.challenge__image{
  margin: 0 auto;
  display: block;
  max-width: 1333px;
}
@media only screen and (max-width: 820px) {
  .challenge__image-top{
    max-width: 695px;
    padding: 0px;
  }
  .challenge__image{
    max-width: 723px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .challenge__image-top{
    max-width: 370px;
  }
  .challenge__image{
    max-width: 380px;
  }
}

/* position */
.position{
  background-color: #CFF1FF;
}
.position__inner{
  background-color: #FFF;
  max-width:1344px;
  margin: 0 auto;
}
.position__image{
  padding-top: 44px;
  display: block;
}
.position__members-image{
  margin: 60px auto 0;
  display: block;
  max-width: 998px;
}
.position__interview-image{
  display: block;
  max-width: 1279px;
  padding: 157px 0 171px;
}
@media only screen and (max-width: 820px) {
  .position{
    background-color: #FFF;
  }
  .position__inner{
    max-width:100%;
  }
  .position__image{
    max-width:768px;
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .position__image{
    max-width:384px;
  }
  .position__interview-sp{
    padding: 58px 31px 30px;
  }
  .position__interview-sp-image{
    width: 285px;
  }
  .position__interview-button{
    border: 1px solid #362A65;
    border-radius: 24px;
    font-size: 22px;
    font-weight: 800;
    color: #362A65;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    margin: 58px auto 80px;
    position: relative;
  }
  .position__interview-button::after{
    /* 擬似要素で三角アイコンをつくる */
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #362A65;
    display: inline-block;
    width: 0;
    height: 0;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%); /* translateYのみ */
  }
  .position__interview-content{
    display: none;
  }
  .position__interview-content p{
    text-align: left;
  }
  .position__interview-button.active .position__interview-content{
    display: block;
    padding: 0px 12px 20px;
  }
  .position__interview-button.active::after{
    /* 擬似要素で三角アイコンをつくる */
    border-width: 8px;
    border-color: #362A65 transparent transparent transparent;
    top: 5%;
    right: 30px;
  }
  .position__interview-content-q{
    background-color: #362A65;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    width: 100%;
    padding: 10px 0;
    margin-top: 30px;
    text-align: center;
  }
  .position__interview-content-close{
    border: 1px solid #362A65;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #362A65;
    width: 175px;
    padding: 13px 0;
    text-align: center;
    margin: 35px auto 0;
  }
}

/* environment */
.environment__image{
  display: block;
  margin: 0 auto;
  max-width: 1920px;
}
@media only screen and (max-width: 820px) {
  .environment__image{
    max-width: 820px;
  }
}
@media only screen and (max-width: 767px) {
  .environment__image{
    max-width: 767px;
  }
}

/* welfare */
.welfare__image{
  display: block;
  margin: 0 auto;
  padding-top: 100px;
  max-width:1160px;
}
@media only screen and (max-width: 820px) {
  .welfare__image{
    max-width: 668px;
    padding: 100px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .welfare__image{
    max-width: 350px;
  }
}

/* faq */
.faq__image{
  display: block;
  margin: 0 auto;
  padding-top: 134px;
  max-width:1120px;
}
@media only screen and (max-width: 820px) {
  .faq__image{
    max-width: 616px;
    padding: 80px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .faq__image{
    max-width: 340px;
  }
}

/* job-descriptionjob-description */
.job-description li::marker {
  color: #362A65;
  font-size: 20px;
}
.job-description .color_purple{
  font-weight: 600;
  font-size: 18px;
  color: #362A65;
}
.job-description__image{
  display: block;
  margin: 0 auto;
  padding-top: 167px;
  max-width:1200px;
}
.job-description__recruit{
  margin: 0 auto;
  max-width:1040px;
  margin-top: 100px;
}
.job-description__recruit h3{
  font-size: 20px;
  font-weight: 600;
  padding-left: 36px;
  border-left: 4px solid #362A65;
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.job-description__inner{
  display: flex;
  border-top:3px solid rgba(44, 29, 101,0.4);
  padding-top: 33px;
  margin-bottom: 52px;
}
.job-description__title{
  width: 25%;
  font-weight: 600;
  font-size: 20px;
}
.job-description__content{
  width: 75%;
}
/* 　募集内容 */
.job-description__content h4{
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 58px;
}
.job-description__point{
  margin-top: 63px;
}
.job-description__point-title{
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  background-color: #362A65;
  border-radius: 24px;
  padding: 5px 0;
  width: 177px;
  text-align: center;
  margin-bottom: 40px;
}
/* 昇進 */
.job-description__promotion{
  margin: 30px 0 60px 20px;
}
.job-description__promotion ul{
  padding-left: 100px;
}
.job-description__promotion li{
  margin-top: 25px;
}
/* 勤務条件 */
.job-description__content dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 20px;
}
.job-description__content dt{
  font-weight: 600;
  color: #362A65;
  display: list-item;
  list-style-type: disc;
  width: 20%;
}
.job-description__content dd {
  width: 70%;
  margin-bottom: 35px;
}
.job-description__content dd:last-child{
  margin-bottom: 0 !important;
}
/* 資格 */
.job-description__license{
  margin-left: -20px;
}
.job-description__license li{
  margin-bottom: 25px;
}
.job-description__license li.circle{
  list-style: circle;
}
@media only screen and (max-width: 820px) {
  .job-description__image{
    padding-top: 96px;
    max-width:616px;
  }
  .job-description__recruit{
    max-width:616px;
    margin-top: 60px;
  }
  .job-description__inner{
    display: block;
  }
  .job-description__title{
    width: 100%;
  }
  .job-description__content{
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .job-description__image{
    max-width: 360px;
    padding: 96px 30px 0;
  }
  .job-description__recruit{
    max-width: 360px;
    padding: 0 30px;
  }
  .job-description__recruit h3{
    padding-left: 26px;
  }
  .job-description__content h4 {
    margin-bottom: 50px;
  }
  /* 昇進 */
  .job-description__promotion{
    margin-left: 0 !important;
  }
  .job-description__promotion ul{
    padding-left: 20px !important;
  }
  /* 勤務条件 */
  .job-description__content dl {
    display: block;
    padding-left: 20px;
  }
  .job-description__content dt{
    width: 100%;
    padding-bottom: 10px;
  }
  .job-description__content dd {
    width: 98%;
    margin-left: 0 !important;
  }
}

/* footer */
.footer {
  background-image: url(../img/maintenance/footer-back.png);
  background-position: top;
  background-size: cover;
  background-repeat: repeat;
  position: relative;
  padding: 80px 0 70px;
  text-align: center;
  margin-top: 130px;
}
.footer__entry-btn{
  background-color: #362A65;
  width: 470px;
  top:22px;
  text-align: center;
  margin: 60px auto 100px;
  position: relative;
}
.footer__entry-btn a{
  color: #FFF;
  display: block;
  font-size: 28px;
  font-weight: 800;
  padding: 40px 0;
}
.footer__entry-btn::after{
  /* 擬似要素で三角アイコンをつくる */
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%); /* translateYのみ */
}
.footer__entry-btn:hover{
  opacity: 0.7;
}
.footer__maintenance-link{
  margin-bottom: 80px;
}
.footer__maintenance-link a{
  color: #362A65;
  font-size: 20px;
  font-weight: 800;
  line-height: 2em;
  position: relative;
}
.footer__maintenance-link a::after{
  content: '';
  position: absolute;
  top: 33px;
  left: 50%;
  width: 280px;
  border: 1px solid #362A65;
  transform: translateX(-50%);
}
.footer__maintenance-link a:hover{
  opacity: .7;
}
.footer p{
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (max-width: 820px) {
  .footer__maintenance-link{
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 80px;
    margin-top: 80px;
  }
  .footer__logo{
    width: 128px;
    margin:0 auto 50px
  }
  .footer__nav-entry{
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background-color: #362A65;
    padding: 15px 0;
    text-align: center;
  }
  .footer__nav-entry a{
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
  }
  .footer p{
    font-size: 14px;
  }
}