@charset "UTF-8";

/* header */
.header {
  padding: 2rem 0 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  max-width: 108rem;
  margin: 0 auto;
}
.header h1 {
  max-width: 27.6rem;
}
.header p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 1.2rem 0 2.4rem;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    max-width: 108rem;
    margin: 0 auto;
  }
  .header h1 {
    max-width: 19rem;
  }
  .header p {
    font-size: 1.2rem;
  }
}

/* mv */
.mv {
  padding: 0 2rem 6rem;
  overflow:hidden;
}
.mv .inner {
  max-width: 160rem;
  margin: 0 auto;
}
.mv .btn {
  text-align: center;
}
.mv .btn a {
  display: inline-block;
  max-width: 52rem;
  margin: 0rem auto 0;
}
.mv .btn a:hover {
  opacity: .7;
}
.animation{
  animation: dokundokun 1300ms ease infinite;
  overflow:hidden;
}

@keyframes dokundokun {
  0%  { transform: scale(1); }
  15% { transform: scale(1.1); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  70% { transform: scale(1); }
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 0 0 2.8rem;
  }
  .mv .btn a {
    max-width: 32rem;
    margin: 1.8rem auto 0;
  }
}

/* sec_1 */
.sec_1 {
  background: #F2F0EA;
  padding: 3.7rem 0 9.8rem;
  overflow:hidden;
}
.sec_1 .date {
  display: block;
  text-align: right;
  max-width: 99.5rem;
  margin: 0 auto;
}
.sec_1 .slider {
  max-width: 107.4rem;
  margin: 2rem auto 0;
}
.sec_1 .slider li {
  border-radius: 10px;
}
.sec_1 .slider li a {
  position: relative;
  display: block;
}
.sec_1 .slider li a:hover {
  opacity: .7;
}
.sec_1 .slider li a::before {
  content: "NEW";
  font-weight: bold;
  background: #E22A54;
  display: inline-block;
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 1.4rem;
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 8px;
}
.sec_1 .slider .slick-slide {
  margin: 0 2.2rem;
}
.sec_1 .slider .txt_area {
  background: #fff;
  font-size: 1.6rem;
  padding: 2rem;
  border-radius: 0 0 10px 10px;
}
.sec_1 .slider .business_cont {
  font-weight: bold;
}
.sec_1 .slider .prefectures {
  margin-top: 1.5rem;
}
.sec_1 .slider .basic_salary {
  margin-top: .7rem;
}
.sec_1 .slider .basic_salary span {
  font-weight: bold;
}
.sec_1 .slider .btn {
  margin-top: 1.7rem;
}
.sec_1 .slider .btn span {
  background: #F9C83C;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
}
.sec_1 .slick-arrow:before {
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
.sec_1 .slick-next:before {
  background: url(../img/arrow_right.png);
  background-size: contain;
}
.sec_1 .slick-prev:before {
  background: url(../img/arrow_left.png);
  background-size: contain;
}
.sec_1 .slick-prev, .slick-next {
  width: 4rem;
  height: 4rem;
  z-index: 1;
}
.sec_1 .slick-next {
  right: 0vw;
}
.sec_1 .slick-prev {
  left: 0vw;
}
.slick-dots {
  bottom: -5.5rem;
}
.slick-dots li {
  margin: 0 .3rem;
}
.slick-dots li button:before {
  font-size: 1.6rem;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #F9C83C;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.modal .modal_bg {
  background: rgba(0,0,0,0.4);
  position: absolute;
  width: 100%;
  height: 100vh;
}
.modal .modal_cont {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 54rem;
  max-width: 100%;
  border-radius: 20px;
}
.modal .modal_cont .inner {
  position: relative;
  padding: 4.8rem 8rem;
}
.modal .modal_cont .img {
  width: 27.6rem;
  max-width: 100%;
  margin: 0 auto;
}
.modal .modal_cont .desc {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 1.9rem;
}
.modal .modal_cont .btn {
  width: 38rem;
  max-width: 100%;
  margin: 2.3rem auto 0;
}
.modal .modal_cont .btn a {
  transition: .3s;
}
.modal .modal_cont .btn a:hover {
  opacity: .7;
}
.modal .modal_cont .modal_close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 2.8rem;
  max-width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .sec_1 {
    padding: 2.7rem 0 6.8rem;
  }
  .sec_1 .date {
    font-size: 1.4rem;
    padding-right: 5%;
  }
  .sec_1 .slider {
    margin: 1.1rem auto 0;
  }
  .sec_1 .slider .slick-slide {
    margin: 0 2.2rem;
  }
  .sec_1 .slider .txt_area {
    font-size: 1.4rem;
  }
  .sec_1 .slider .business_cont {
    height: 4.478rem;
  }
  .sec_1 .slider .prefectures {
    margin-top: .8rem;
  }
  .sec_1 .slider .basic_salary {
    margin-top: .7rem;
  }
  .sec_1 .slider .btn {
    margin-top: 1.6rem;
  }
  .sec_1 .slider .btn a {
    font-size: 1.4rem;
    padding: 1rem;
  }
  .sec_1 .slick-next:before {
    background: none;
  }
  .sec_1 .slick-prev:before {
    background: none;
  }
  .slick-dots {
    bottom: -4.3rem;
  }
  .slick-dots li {
    margin: 0 .1rem;
  }
  .slick-dots li button:before {
    font-size: 1.4rem;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #F9C83C;
  }

  
  .modal .modal_cont {
    width: 90%;
  }
  .modal .modal_cont .inner {
    padding: 4.5rem 5% 4rem;
  }
  .modal .modal_cont .desc {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
  .modal .modal_cont .btn {
    margin-top: 2rem;
  }
}

/* sec_2 */
.sec_2 {
  background: #F9C83C;
  text-align: center;
  padding: 4.1rem 0 4.8rem;
  overflow:hidden;
}
.sec_2 h2 {
  font-size: 3.6rem;
  font-weight: bold;
}
.sec_2 ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 110rem;
  margin: 2.3rem auto 0;
}
.sec_2 ul li {
  width: 20%;
}
.sec_2 ul li span {
  background: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50px;
  padding: 1.2rem 0;
  margin: 2rem 1rem 0;
  cursor: pointer;
  transition: .3s;
}
.sec_2 ul li span:hover {
  opacity: .7;
}
.sec_2 .btn {
  text-align: center;
}
.sec_2 .btn a {
  display: inline-block;
  max-width: 52rem;
  margin: 4.8rem auto 0;
}
.sec_2 .btn a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .sec_2 {
    padding: 2.4rem 3% 2.8rem;
  }
  .sec_2 h2 {
    font-size: 2rem;
  }
  .sec_2 ul {
    margin: 1rem auto 0;
  }
  .sec_2 ul li {
    width: 50%;
  }
  .sec_2 ul li a {
    font-size: 1.6rem;
    padding: 1.2rem 0;
    margin: 1.2rem .6rem 0;
  }
  .sec_2 .btn a {
    max-width: 32rem;
    margin: 2.8rem auto 0;
  }
}

/* sec_3 */
.sec_3 {
  background: #F2F0EA;
  text-align: center;
  padding: 4.1rem 0 2rem;
  overflow:hidden;
}
.sec_3 h2 {
  font-size: 3.6rem;
  font-weight: bold;
}
.sec_3 ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 76rem;
  margin: 2.3rem auto 0;
}
.sec_3 ul li {
  background: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  width: calc(50% - 2rem);
  padding: 3rem 0;
  border-radius: 12px;
  margin: 2rem 1rem 0;
}
.sec_3 .img {
  max-width: 35rem;
  margin: 1.2rem auto 0;
}

@media screen and (max-width: 767px) {
  .sec_3 {
    padding: 3.6rem 5% .8rem;
  }
  .sec_3 h2 {
    font-size: 2rem;
  }
  .sec_3 ul {
    flex-direction: column;
    margin: 1.3rem auto 0;
  }
  .sec_3 ul li {
    font-size: 1.5rem;
    width: 100%;
    padding: 1.2rem 0;
    margin: 1.2rem 0 0;
  }
  .sec_3 .img {
    max-width: 16rem;
    margin: .8rem auto 0;
  }
}

/* sec_4 */
.sec_4 {
  padding: 0 0 5.9rem;
  overflow:hidden;
}
.sec_4 .inner {
  max-width: 114.8rem;
  margin: 0 auto;
}
.sec_4 .arrow {
  max-width: 68.4rem;
  margin: 0 auto;
}
.sec_4 h2 {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 4.1rem;
}
.sec_4 .logo {
  max-width: 27.6rem;
  margin: 2rem auto 0;
}
.sec_4 .container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.sec_4 .container .item {
  width: calc(100% / 3 - 6.8rem);
  margin: 4.3rem 3.4rem 0;
}
.sec_4 .container .item h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2rem;
}
.sec_4 .container .item .desc {
  font-size: 1.6rem;
  margin-top: 1.7rem;
}

@media screen and (max-width: 767px) {
  .sec_4 {
    padding: 0 0 4rem;
  }
  .sec_4 h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
  }
  .sec_4 .logo {
    max-width: 19rem;
    margin: 1rem auto 0;
  }
  .sec_4 .container {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 3%;
    margin-top: 0;
  }
  .sec_4 .container .item {
    width: 100%;
    margin: 2.8rem 1.2rem 0;
  }
  .sec_4 .container .item h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
  .sec_4 .container .item .desc {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }
  .sec_4 .slick-list {
    padding-right: 15%;
  }
}
/* sec_5 */
.sec_5 {
  background: #F9C83C;
  padding: 4.1rem 0 4.8rem;
  overflow:hidden;
}
.sec_5 .inner {
  max-width: 112.5rem;
  margin: 0 auto;
}
.sec_5 h2 {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}
.sec_5 .container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.sec_5 .container .item {
  width: calc(100% / 3 - 4.5rem);
  margin: 0 2.25rem;
}
.box {
  background: #fff;
  max-width: 108rem;
  padding: 1.9rem 2.4rem 4.3rem;
  border-radius: 12px;
  margin: 4.8rem auto 0;
}
.box h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.sec_5 .box h3 img {
  display: inline-block;
  width: 2.5rem;
  margin: 0 1.2rem;
}
.sec_5 .box .desc {
  font-size: 1.6rem;
  margin-top: 1.7rem;
}

@media screen and (max-width: 767px) {
  .sec_5 {
    padding: 2.4rem 5% 3.2rem;
  }
  .sec_5 h2 {
    font-size: 2rem;
  }
  .sec_5 .container {
    margin-top: 1.5rem;
  }
  .sec_5 .container .item {
    width: 100%;
    margin: 1.8rem 0 0;
  }
.box {
    padding: 2rem 2rem 3.9rem;
    margin: 2.5rem auto 0;
  }
.box h3 {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .sec_5 .box h3 img {
    width: 1.8rem;
    margin: 0 1rem .3rem;
  }
  .sec_5 .box .desc {
    font-size: 1.4rem;
    margin-top: 1.3rem;
  }
}

/* sec_6 */
.sec_6 {
  background: #F2F0EA;
  padding: 4.1rem 0 4.8rem;
  overflow:hidden;
}
.sec_6 .inner {
  max-width: 114.8rem;
  margin: 0 auto;
}
.sec_6 h2 {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}
.sec_6 .container {
  display: flex;
  margin-top: 1rem;
}
.sec_6 .container .item {
  position: relative;
  background: #fff;
  width: calc(100% / 3 - 6.8rem);
  padding: 4.8rem 2rem 2rem;
  border-radius: 12px;
  margin: 4.3rem 3.4rem 0;
}
.sec_6 .container .item h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2.4rem;
}
.sec_6 .container .item .desc {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}
.sec_6 .container .item > img {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.8rem;
}

@media screen and (max-width: 767px) {
  .sec_6 {
    padding: 3.6rem 5% 2.8rem;
  }
  .sec_6 h2 {
    font-size: 2rem;
  }
  .sec_6 .container {
    flex-direction: column;
    margin-top: 0;
  }
  .sec_6 .container .item {
    width:100%;
    padding: 4.4rem 2rem 2rem;
    margin: 4.3rem 0 0;
  }
  .sec_6 .container .item h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .sec_6 .container .item .desc {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

/* footer */
.footer {
  padding: 4.8rem 0 0;
  overflow:hidden;
}
.footer .logo {
  width: 27.6rem;
  margin: 0 auto;
}
.footer p {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.7rem;
}
.footer .btn {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.7rem;
}
.footer .btn a {
  display: inline-block;
  width: 52rem;
}
.footer .btn a:hover {
  opacity: .7;
}
.footer .copy {
  background: #000;
  display: block;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0;
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 4rem 0 0;
  }
  .footer .logo {
    width: 19rem;
  }
  .footer p {
    font-size: 2rem;
    margin-top: .5rem;
  }
  .footer .btn {
    margin-top: 1.5rem;
  }
  .footer .btn a {
    width: 32rem;
  }
  .footer .copy {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}



