@charset "utf-8";
/* CSS Document */
/*///////////////////////////////////////////
////////////　　　　共通　　　　////////////
///////////////////////////////////////////*/
body {
  font-family: "Noto Sans JP", sans-serif;
  background-image: url(../img/site_bg.jpg);
background-attachment: fixed;
    background-size: 100%;
    background-position: top right;
    background-repeat: no-repeat;
}
.inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}
/*float*/
.f_o {
  overflow: hidden;
}
.f_l {
  float: left;
}
.f_r {
  float: right;
}
/*img*/
*:first-child + html img {
  vertical-align: top;
}
* html img {
  vertical-align: top;
}
img {
  width: 100%;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: “alpha(opacity=70)”;
}
main a:visited {}
/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background: #e60020;
  z-index: 9999;
}
.header_inner {
  position: relative;
  padding: 15px;
}
.logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px
}
.title img {
  width: 365px;
}
/* グロナビ */
.main {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 30px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: fixed;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 300;
    bottom: 8%;
    background: rgba(255, 255, 255, 0.8);
  }
  div#js-hamburger {}
  div#js-hamburger:after {
    content: "MENU";
    font-size: 12px;
    text-align: center;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 3px;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
    text-align: left;
    font-size: 14px;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    right: 11px;
    width: 65%;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 25px;
  }
  .hamburger_border_bottom {
    top: 36px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
  .nav-open .nav dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
  }
  .nav-open .nav span.txt_red {
    color: #d93414;
    font-weight: bold;
    font-size: 1.1rem;
  }
  .nav-open .nav dl dd {
    width: auto;
  }
  .nav-open .nav dl dd a:after {
    content: "＞";
    font-size: 11px;
    float: right;
    padding: 2px 20px 0 5px;
  }
  .nav-open .nav li.nav_item.occupation_menu, .nav-open .nav li.nav_item.entry_menu {
    margin: 5% 0 0;
  }
  .nav-open .nav li.nav_item.corporate_link {
    margin: 8% 0 0;
  }
  .nav-open .nav li.nav_item.corporate_link a {
    border: 1px solid #333;
    padding: 4% 10%;
    border-radius: 100px;
    background: #d93414;
    color: #fff;
    height: auto;
    font-size: 16px;
  }
  section#message .message_txt {
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  .header_inner {}
  .logo {}
  .nav_list {
    text-align: right;
    margin: 0 15px 0 0;
  }
  .nav_list li {
    display: inline-block;
    text-align: right;
    padding-left: 50px;
  }
  .nav_list li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
}
/*main*/
.pc.corporate_link {
  position: fixed;
  bottom: 3%;
  right: 3%;
}
.pc.corporate_link a {
  display: block;
  width: 250px;
  background: #fff;
  text-align: center;
  padding: 5%;
  text-decoration: none;
  font-weight: bold;
  color: #333;
}
main {
  background: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
}
.recruit_inner {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 0;
  height: 100vh;
}
/* footer */
footer {
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
}
footer .footer_inner {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
footer copyright {
  background: #e60020;
  display: block;
  color: #fff;
  font-size: 12px;
  padding: 2% 0;
  text-align: center;
}
/*ボタン*/
.white_btn a, .arrow_btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-size: 1.2rem;
    height: 65px;
    position: relative;
    padding: 15px 10px 10px;
}
a.line_2 {
    padding: 10px 10px 0;
    height: 65px;
    line-height: 1.2;
}
.white_btn a {
  border-bottom: 2px solid #fff;
}
.white_btn a:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url(../img/w_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 2%;
  top: 17px;
}
.arrow_btn a {
  border: 1px solid #fff;
  border-radius: 100px;
padding: 4% 8% 0;
    font-size: 1.2rem;
    font-weight: bold;
}
.arrow_btn a:after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../img/r2_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
background-position: center;
    background-size: 100%;
    position: absolute;
    right: 3%;
    top: 7px;
}
.white_btn a:hover {
  background: #fff;
  color: #e00212;
}
.arrow_btn a:hover {
  background: #fff;
  color: #e00212;
}
span.s {
  font-size: 90%;
}
/*///////////////////////////////////////////
////////////　　　　個別　　　　////////////
///////////////////////////////////////////*/
section#message {
  background-image: url(../img/top/message_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  margin: 10% 0;
  padding: 15% 0 0;
}
.h3_ei {
  margin: 0 0 1% 0;
  font-weight: bold;
  font-size: 1.2rem;
}
section#message h3 {
  font-size: 2.2rem;
  font-weight: bold;
  width: 330px;
  background: #fff;
  padding: 1%;
  margin: 0 0 5% 0;
}
section#message .message_img {
  width: 80%;
}
section#message .message_txt {
  background: #ececec;
  padding: 3%;
  width: 70%;
  margin: -10% 5% 0 0;
  border-radius: 10px;
  line-height: 1.8;
}
section#occupation {
  margin: 5% 0;
}
section#occupation h3 {
  background-image: url(../img/top/occupation_h3.png);
  background-repeat: no-repeat;
  background-size: 94%;
  background-position: bottom center;
  color: #d83914;
  font-weight: bold;
  text-align: right;
  padding: 0;
  height: 100px;
}
section#occupation .slick {
  background: #ececec;
  border-radius: 10px;
  padding: 5%;
}
section#occupation h4 {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 5%;
}
section#occupation h4:after {
  content: "";
  display: block;
  width: 60px;
  background: #e00212;
  height: 5px;
  margin: 10px auto 0;
}
section#occupation .staff p.staff_message {
  font-size: 1.1rem;
  padding: 5px 5px 0;
  height: 55px;
}
section#occupation .staff img {
  padding: 0 0 3%;
}
section#occupation .staff p.staff_name {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 5px 5%;
}
section#occupation .staff_link {
  padding: 0 10%;
}
section#occupation .arrow_btn a {
  color: #333;
  border: 1px solid #e60020;
    padding: 4% 8% 0;
}
/*スライダーカスタム*/
button.slick-prev.slick-arrow {
  background-image: url(../img/slider_prev.png);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  background-size: cover;
}
button.slick-next.slick-arrow {
  background-image: url(../img/slider_next.png);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  background-size: cover;
}
div#common_section {
  margin: 5% 0 15%;
}
div#common_section section#environment {
  padding: 10% 0 0;
}
div#common_section section#environment h3 {
  background-image: url(../img/top/environment_h3.png);
  background-repeat: no-repeat;
  background-size: 94%;
  background-position: bottom center;
  font-weight: bold;
  text-align: right;
  padding: 0% 10% 0 0%;
  height: 75px;
}
div#common_section section#environment .environment_bg {
  background: #e00212;
  padding: 10%;
  border-radius: 10px;
    width: 96%;
    margin: -2px auto 0;
}
div#common_section section#entry {}
section#entry h3 {
  background-image: url(../img/top/entry_h3.png);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom center;
  font-weight: bold;
  text-align: left;
  padding: 0 6% 0 25%;
  height: 85px;
}
section#environment ul.white_btn {}
section#environment ul.white_btn li {
  margin: 0;
}
section#entry ul.white_btn.entry_bg {
  background: #e00212;
  padding: 10% 10% 0 10%;
}
section#entry ul.arrow_btn.entry_bg {
  background: #e00212;
  padding: 30px 10% 10% 10%;
}
section#entry ul.arrow_btn.entry_bg {}
section#entry ul.arrow_btn.entry_bg li {
  margin: 0 0 3%;
}
/************************************************
下層
*************************************************/
/*共通*/
.pankuzu {
  padding: 100px 5% 10%;
  font-size: 12px;
  font-weight: bold;
}
section#kaso_tit {
  padding: 5% 0 0;
}
section#kaso_tit p {
  padding: 3% 0 0;
}
main.kaso h1 {
  color: #d23914;
  font-size: 1.9rem;
  font-weight: bold;
  margin: 0 0 3%;
}
main.kaso h1:after {
  content: "";
  border-bottom: 3px solid #d23914;
  display: block;
  margin: 3% 0 0;
}
main.kaso h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 3%;
  border-left: 6px solid #d23914;
  padding: 0 0 0 10px;
}
section#detail {
  padding: 5% 0 0;
}
section#page_navi {
  margin: 10% auto;
}
section#page_navi ul {
  display: flex;
  flex-wrap: wrap;
}
section#page_navi ul li {
  width: 48%;
  box-sizing: border-box;
  margin: 0 2% 0 0;
}
section#page_navi ul li a {
  background: #e60020;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  padding: 5% 0 5% 5%;
  width: 95%;
  display: block;
  position: relative;
}
section#page_navi ul li a:after {
  content: "▼";
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 15px;
}
/*数字で知るトヨタモビリティ新大阪*/
main#data .img_box {
  margin: 5% 0 0;
}
main#data ul.img_box {
  display: flex;
  flex-wrap: wrap;
}
main#data ul.img_box li {
  width: 50%;
  box-sizing: border-box;
}
/*福利厚生・魅力*/
.benefits_box {
  margin: 0 0 15%;
}
.benefits_box ul {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 5% 15px;
}
.benefits_box ul li {}
.benefits_box ul li:before {
  content: "●";
  color: #d23914;
  padding: 0 5px 0 0;
  font-size: 12px;
}
/*研修・教育制度*/
.training_box {
  margin: 5% 0;
}
.training_box.bg {
  background: #f7f8f8;
}
.training_box.bg:before {
  content: "";
  width: 100%;
  display: block;
  height: 5.5vh;
  background-image: url(../img/environment/training/bg1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
}
.training_box.bg:after {
  content: "";
  width: 100%;
  display: block;
  height: 5.5vh;
  background-image: url(../img/environment/training/bg2.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 15px;
}
.training_box h3:before {
  content: "●";
  color: #d23914;
  padding: 0 5px 0 0;
}
.training_box h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 3%;
}
.training_box p {
  margin: 0 0 3%;
}
.training_box img {
  margin: 0 0 3%;
}
.check_box {
  border: 1px solid #333;
  padding: 3% 10%;
  font-size: 0.9rem;
}
section#new {
  padding: 15% 0 10%;
}
section#new .goal {
  color: #d23914;
  font-size: 1.8rem;
  font-weight: bold;
}
section#career {
  padding: 5% 0 0;
}
section#career .training_box {
  background: #f7f8f8;
  margin: 0;
  padding: 15% 0 5%;
}
section#career .training_box:nth-child(2) {
  padding: 5% 0 10%;
}
section#education {
  margin: 15% 0;
}
/*採用スケジュール*/
main#schedule section#page_navi ul li {
  margin: 0 2% 5% 0;
}
main#schedule section#page_navi ul li a {
  font-size: 0.6rem;
  padding: 25px 0 0 5%;
  height: 60px;
}
main#schedule section#page_navi ul li.line_2 a {
padding: 13px 0 0px 5%;
  font-size: 0.6rem;
}
main#schedule section#page_navi ul li.line_3 a {
    padding: 4px 0 0px 5%;
  font-size: 0.6rem;
}


main#schedule section#page_navi ul li a:after {
  right: 10px;
  top: 7px;
}

main#schedule section#page_navi ul li.line_2 a:after {
  right: 10px;
  top: 17px;
}

main#schedule section#page_navi ul li.line_3 a:after {
  right: 10px;
  top: 17px;
}



section.schedule_detail {
  padding: 15% 0 10%;
}
main.kaso section.schedule_detail h2 {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 8%;
  border: none;
  padding: 0;
}
main.kaso section.schedule_detail h2:after {
  content: "";
  display: block;
  width: 60px;
  background: #e00212;
  height: 5px;
  margin: 10px auto 0;
}
section.schedule_detail ul {
  text-align: center;
}
section.schedule_detail ul li {
  background: #f7f8f8;
  padding: 3%;
}
section.schedule_detail#career_sales {
  padding: 15% 0 20%;
}
section.schedule_detail ul li.arrow {
  color: #e60020;
  background: #fff;
  margin: 1% 0;
  padding: 0;
  transform: scale(2.5, 0.8);
  transform-origin: top left;
  width: 40%;
}
/*職種を知る*/
main#occupation section#occupation h2 {
  background-image: url(../img/occupation/tit_bg.png);
  background-repeat: no-repeat;
  background-size: 94%;
  background-position: bottom center;
  color: #d83914;
  font-weight: bold;
  text-align: left;
  padding: 0;
  height: 130px;
  font-size: 1.2rem;
  border-left: none;
  margin: 0 0 -5px;
}
main#occupation section#occupation h3 {
  background: none;
  height: auto;
  color: #fff;
  text-align: left;
  font-size: 1.6rem;
  margin: 0 0 3%;
}
main#occupation section#occupation h4, main#occupation section#occupation .staff p.staff_name {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  margin: 3% 0;
}
main#occupation section#occupation .staff p.staff_message {
  font-size: 1.4rem;
  padding: 0;
  height: 90px;
  font-weight: bold;
}
main#occupation section#occupation .staff {
  background: #e60020;
  padding: 10% 0;
  color: #fff;
  text-align: left;
  border-radius: 0 0 0 30px;
}
main#occupation section#interview {
  margin: 0 0 15%;
}
main#occupation section#interview h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 3%;
}
main#occupation section#interview h3:before {
  content: "●";
  color: #d23914;
  padding: 0 5px 0 0;
}
main#occupation section#interview .qa {
  padding: 10% 0;
  line-height: 1.8;
}
main#occupation section#interview .bg_gray {
  background: #f7f8f8;
}
main#occupation section#interview .qa img {
  margin: 5% 0 -15%;
}
/*募集要項*/
main#requirements .requirements_detail h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 2%;
  border: none;
  padding: 0;
}
main#requirements .requirements_detail h2:before {
  content: "●";
  color: #d23914;
  padding: 0 5px 0 0;
}
main#requirements .s {
  font-size: 80%;
}
main#requirements .requirements_detail {
  margin: 0 0 6%;
}
main#requirements .requirements_detail:last-child {
  margin: 0 0 15%;
}
main#requirements .requirements_detail table {
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  text-align: center;
  margin: 3% 0;
  font-size: 0.6rem;
}
main#requirements .requirements_detail table th, main#requirements .requirements_detail table td {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 2%;
}
main#requirements .requirements_detail table th {
  background: #f4f4f4;
  font-weight: bold;
}
main#requirements p.attention {
  text-align: center;
}
/*///////////////////////////////////////////
////////////　ブレイクポイント　////////////
///////////////////////////////////////////*/
/*PC・SP切り分け*/
@media (max-width: 640px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
}
/* デスクトップ */
@media screen and (min-width:1401px) {}
/* ノートパソコン */
@media screen and (min-width:960px) and (max-width:1400px) {}
/* タブレット */
@media screen and (min-width:640px) and (max-width:959px) {
  .header {
    background: transparent;
  }
}
/*スマホ*/
@media (max-width: 639px) {
  .header {
    background: rgba(255, 255, 255, 0.4);
  }
  .recruit_inner{
	margin: -60px auto 0;
}

  .title img {
    width: 200px;
  }
  li.nav_item.corporate_link.white_btn a:after {
    width: 25px;
    height: 25px;
    right: 10%;
    top: 15px;
  }
  .recruit_logo {
    width: 80px;
    position: absolute;
    right: 20px;
    top: 15px;
  }
  section#message h3 {
    font-size: 1.8rem;
  }
  section#occupation h3 {
    height: 90px;
  }
  .arrow_btn a {
    padding: 6% 9% 0;
    font-size: 1.4rem;
  }
  div#common_section section#environment h3 {
    height: 60px;
  }
  section#entry h3 {
    padding: 0 6% 0 20%;
    height: 80px;
  }
  /*下層*/
  main.kaso section.schedule_detail h2 {
    font-size: 1.4rem;
  }
  
  section#page_navi ul li a {
    font-size: 0.8rem;
}
  
  section#page_navi ul li a:after {
    top: 7px;
}
  
  
  
  
}