@charset "UTF-8";
body {
  background-color: #fff;
}
.header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 11;
  background-color: #FAFAFA
}
.header_logo {
  max-width: 136px;
  padding-left: 16px;
  opacity: 1;
  transition: all .4s;
  z-index: 10;
}
.header_right {
  display: flex;
  padding-right: 16px;
}
.header_logo.active,
.header_nav_list.active {
  opacity: 0;
}
.header_nav_list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  transition: .2s;
  font-size: 1.4rem;
}
.header_nav_list li {
  padding: 0 12px;
}
.header_nav_list li a {
  color: #202020;
}
.header_nav_list li ._active {
  background-color: #F0EEEA;
  width: 100%;
  border-radius: 100px;
  padding: 0.3em 1em;
  font-weight: bold;
}
.header-left {
  display: flex;
  align-items: center;
  z-index: 10;
}
.header_entry-btn {
  line-height: 2.5;
  text-align: center;
  width: 140px;
  font-size: 1.6rem;
  background-color: #E60012;
  border-radius: 100px;
  margin-right: 10%;
}
.header_entry-btn a {
  color: #fff;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.hamburger span:first-child {
  top: 8px;
  width: 100%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:last-child {
  top: 32px;
}
.hamburger.active span {
  background: #fff;
}
.hamburger.active span:first-child {
  top: 18px;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  display: none;
}
.hamburger.active span:last-child {
  top: 18px;
  transform: rotate(45deg);
}

.hamburger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #00110E;
  transition: all .4s;
}
.gnav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9;
  background-color: #000;
  text-align: center;
  color: #fff;
}
.gnav_menu {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.gnav_menu li {
  display: block;
  padding: 10px;
}
.gnav_menu a {
  color: #fff;
}

.pc {display: block;}
.sp {display: none;}

/* mv */
.mv {
  width: 100%;
  height: 630px;
  background-image: url(../img/system/mv.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.mv p {
  width: 90%;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* パンくず */
.pankuzu {
  display: flex;
  padding: 12px 32px;
  font-size: 14px;
  color: #999;
  background-color: #F0EEEA;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 8;
}
.pankuzu a {
  display: inline;
  color: #999;
}
.pankuzu ._active {
  font-weight: bold;
  color: #00110E;
}

.sec01 {
  padding-top: 64px;
  padding-bottom: 140px;
}
.sec01 p.top_txt {
  width: 90%;
  max-width: 1126px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* 教育・研修制度 */
.item_ttl {
  width: 90%;
  max-width: 1126px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}
.item_ttl._02 {
  margin: 0;
  margin-top: 36px;
}
.item_ttl::before {
  content: "";
  width: 32px;
  height: 24px;
  background-image: url(../img/system/icon_beige.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -36px;
}
.item_ttl._02::before {
  background-image: url(../img/system/icon_white.png);
}
.training_list {
  width: 90%;
  max-width: 1126px;
  margin: 20px auto 28px;
  display: flex;
  gap: 40px 36px;
  flex-wrap: wrap;
}
.training_list li {
  width: 30%;
}
.cate_ttl {
  min-height: 95px;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  background-color: #E60012;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cate_ttl span {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  border-radius: 50px;
  border: 2px solid #fff;
  position: relative;
}
.cate_ttl span::before,
.cate_ttl span::after {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 46%;
  left: 19%;
}
.cate_ttl span::after {
  transform: rotate(90deg);
}

.cate_box {
  height: 80%;
  padding: 30px 20px;
  background-color: #F0EEEA;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.goal_ttl {
  font-size: 20px;
  font-weight: bold;
  color: #E60012;
  position: relative;
}
.goal_list li:not(:first-of-type) .goal_ttl::before {
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  background: #E60012;
}
.goal_list li:nth-of-type(2) .goal_ttl::before {
  width: 70%;
}
.goal_list li:nth-of-type(3) .goal_ttl::before {
  width: 62%;
}
.goal_list li:nth-of-type(4) .goal_ttl::before {
  width: 42%;
}
.goal_list li {
  width: 100%;
}
.goal_list li:first-child {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
}
.goal_list li:not(:first-child) {
  margin-top: 24px;
}

/* アコーディオン */
.acc_btn {
  position: relative;
}
.acc_btn:hover {
  cursor: pointer;
}
.acc_btn.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.acc_box._unactive {
  display: none;
}

.training_txt {
  width: 90%;
  max-width: 1126px;
  margin: 0 auto;
  margin-bottom: 100px;
}


/* 処遇制度 */
.treatment {
  margin: 80px 0 104px 3%;
  padding: 80px 60px;
  background-color: #F0EEEA;
  border-top-left-radius: 52px;
  border-bottom-left-radius: 52px;
  position: relative;
}
.illust {
  position: absolute;
  width: 120px;
  top: -120%;
  right: 0%;
}
.treatment::before,
.treatment::after {
  content: "";
  width: 32px;
  height: 18px;
  background-image: url(../img/system/corner_beige.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.treatment::before {
  top: -18px;
  right: 0;
}
.treatment::after {
  bottom: -18px;
  right: 0;
  transform: scaleX(1) scaleY(-1);
}
.treatment_contents {
  width: 90%;
  max-width: 1126px;
  margin: 0 auto;
  position: relative;
}
.treatment_txt {
  padding-top: 16px;
}

/* 評価制度 */
.evaluation_item,
.evaluation_txt {
  width: 90%;
  max-width: 1126px;
  margin: 0 auto;
}
.evaluation_item {
  padding-top: 20px;
  padding-bottom: 16px;
}


@media screen and (max-width: 960px) {

  .pc {display: none;}
  .sp {display: block;}

  .header_nav_list {
    display: none;
  }
  /* mv */
  .mv {
    height: 82.6vw;
    background-image: url(../img/system/s_mv.png);
  }
  .mv p {
    font-size: 10vw;
  }
  .pankuzu {
    padding: 1.6vw 4vw;
    font-size: 2.93vw;
  }
  .sec01 {
    padding-top: 9.6vw;
    padding-bottom: 21.33vw;
  }
  .sec01 p.top_txt {
    width: 90%;
    max-width: 937px;
    padding-bottom: 15vw;
  }

  /* 教育・研修制度 */
  .item_ttl {
    font-size: 6.4vw;
  }
  .item_ttl._02 {
    margin: 0;
    margin-top: 9.6vw;
  }
  .item_ttl::before {
    width: 8.533vw;
    height: 6.4vw;
    left: 0;
    top: -9.6vw;
  }
  .training_list {
    margin: 4.26vw auto 6.4vw;
    gap: 6.4vw;
  }
  .training_list li {
    width: 100%;
  }
  .cate_ttl {
    min-height: initial;
    padding: 4.26vw 4vw;
    font-size: 4.26vw;
    border-radius: 5.33vw 5.33vw 0 0;
  }
  .cate_ttl span::before,
  .cate_ttl span::after {
    top: 47%;
    left: 21%;
  }

  .cate_box {
    height: auto;
    padding: 8vw 4vw;
    font-size: 3.2vw;
    border-bottom-left-radius: 5.33vw;
    border-bottom-right-radius: 5.33vw;
  }
  .goal_ttl {
    font-size: 4.26vw;
  }
  .goal_list li:nth-of-type(2) .goal_ttl::before {
    width: 76%;
  }
  .goal_list li:nth-of-type(3) .goal_ttl::before {
    width: 70%;
  }
  .goal_list li:nth-of-type(4) .goal_ttl::before {
    width: 54%;
  }
  .goal_list li:first-child {
    padding: 4vw;
    border-radius: 4vw;
  }
  .goal_list li:not(:first-child) {
    margin-top: 6.4vw;
  }

  /* 処遇制度 */
  .treatment {
    margin: 18.66vw 0 18.66vw 5%;
    padding: 18.66vw 5.33vw;
    border-top-left-radius: 9.6vw;
    border-bottom-left-radius: 9.6vw;
  }
  .illust {
    width: 26.66vw;
    top: -50%;
  }
  .treatment_txt {
    padding-top: 4.26vw;
  }

  /* 評価制度 */
  .evaluation_item {
    padding-top: 20px;
    padding-bottom: 16px;
  }


}

/* contents */
/* contents共通 */
.link_btn {
  text-align: center;
}
.link_btn a {
  position: relative;
  display: block;
  width: 257px;
  padding: 15px 0;
  border-radius: 8px;
  color: #E60012;
  text-decoration: none;
  text-align: center;
  margin: auto;
  font-weight: bold;
}
.link_btn a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 100px;
  border: 1px solid #E60012;
}
.link_btn a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 4px solid #E60012;
  border-right: 4px solid #E60012;
  transform: rotate(45deg);
  box-sizing: border-box;
}
section {
  position: relative;
}
/* sec01 */
.sec01 {
  margin-top: -60px;
  background-color: #fff;
  border-top-right-radius: 72px;
  z-index: 10;
  line-height: 1.6;
}
.sec01::before {
  content: '';
  position: absolute;
  top: -72px;
  left: 0;
  display: inline-block;
  width: 72px;
  height: 72px;
  background-image: url(../img/bg_radius.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 72px;
  pointer-events: none;
}
.sec_item01 {
  padding: 72px 20px 172px;
  max-width: 1208px;
  margin: auto;
}
.sec01_ttl {
  display: flex;
  align-items: center;
}
.sec01_ttl h3 {
  max-width: 353px;
  width: 100%;
  height: auto;
}
.sec01_ttl p {
  padding-left: 48px;
}
.sec01_list {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
}
.sec01_list li {
  width: 23%;
}


@media screen and (max-width: 767px) {
  .mv p {
    top: 60%;
  }
  .sec01 {
    margin-top: -30px;
    border-top-right-radius: 9.6vw;
  }
  .sec01::before {
    width: 9.6vw;
    height: 9.6vw;
    top: -9vw;
    background-size: 9.6vw;
  }
}

/*====================================================================
フェードインアニメーション
====================================================================*/
.fadein {
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 1000ms;
}
.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}