@charset "UTF-8";

/* ----------- 共通 ----------- */
body.recruit-site {
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff9f4;
  color: #40250e;
  background-image: url('../img/recruit/circle_bg.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 70% auto;
}

/* フォント */
body.recruit-site,
input,
select,
textarea {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.recruit-site .en {
  font-family: Allura;
  font-weight: 400;
}
.recruit-site .en-oswald {
  font-family: Oswald;
  font-weight: 500;
  letter-spacing: 0.14em;
}
p,
table td {
  line-height: 1.8;
}

/* 見出し */
.r-title {
  text-align: center;
  font-family: inherit;
  margin-bottom: 50px;
}
.r-title .en,
.r-title .jp {
  display: block;
}
.r-title .en {
  font-size: 55px;
}
.r-title .jp {
  font-size: 35px;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  font-weight: 500;
}

/* 見出し下テキスト */
.intro-txt p {
  text-align: center;
}

/* 枠 */
.r-content {
  padding-top: 150px;
}
.s-redLine {
  margin-top: 150px;
  padding: 100px 0 130px;
  background: #fff;
  border-top: 5px solid #f37373;
}
.r-content .content_in {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 2%;
}

/* ----------- header ----------- */
.r-header {
  background: none;
  padding: 23px 4%;
  position: fixed;
  width: 100%;
  top: 0;
}
.r-header .logo {
  width: initial;
}
.r-header .logo a {
  display: flex;
  align-items: center;
}
.r-header .logo img {
  width: 220px;
}
.r-header .logo h1 {
  font-size: 20px;
  font-weight: 500;
  color: #d71318;
  margin-left: 14px;
}
/* g-nav */
.r-header nav ul {
  background: #fff;
  padding-left: 40px;
  border-radius: 100vh;
}
.r-header nav ul li a {
  display: block;
  padding: 20px 14px;
}
.r-header nav ul li:last-child a {
  background: linear-gradient(360deg, #f8bd84 0%, #F884A7 51%, #ff6262 100%);
  background-position: 50% 99%;
  background-size: auto 200%;
  border: none;
  padding: 20px 70px;
  transition: all 0.3s ease-out;
}
.r-header nav ul li:last-child a:hover {
  background-position: 50% 1%;
  color: #fff;
}


/* ----------- header ここまで ----------- */

/* ----------- 内容 ----------- */
.recruit-site main {
  position: initial;
  overflow-y: visible;
  margin-top: 130px;
}
/* TOP */
.s-top {
  width: 100%;
}
.s-top .w-top {
  position: relative;
}
.s-top .w-img {
  width: 60%;
}
.s-top .w-txt {
  position: absolute;
  bottom: 44px;
  right: 4%;
}
.s-top .w-txt p span {
  display: inline-block;
  background: #fff;
  padding: 16px 18px;
  font-size: 4vw;
  line-height: 1;
}
.s-top .w-txt p span:nth-of-type(n + 2) {
  margin-top: 20px;
}
.s-top .w-txt p span:last-of-type {
  padding-right: 0;
}

/* ヨシケイ山口で働く魅力 */
.s-charm {
  padding-top: 200px;
}
.s-charm .w-point {
 margin-top: 60px; 
}
.s-charm .w-point ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.s-charm .w-point ul li {
  width: calc(33% - 15px);
  background: #fff;
  padding: 24px 11px;
  border-radius: 10px;
  box-shadow: 2px 2px 8.3px 0px rgba(135, 74, 40, 0.20);
}
.s-charm .w-point .w-img {
  border-radius: 5px;
  overflow: hidden;
}
.s-charm .w-point .w-txt {
  margin-top: 10px;
}
.s-charm .w-point .w-txt h3 .en {
  font-size: 40px;
  margin-right: 10px;
}
.s-charm .w-point .w-txt .txt p {
  margin-top: 10px;
  font-size: 16px;
}

/* 1日の流れ */
.s-flow {
  margin-top: 150px;
  padding-top: 150px;
  padding-bottom: 136px;
  background: linear-gradient(to bottom, transparent 0%, #fff 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.s-flow::before {
  content: '';
  width: 200vw;
  height: 200vw;
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 100%;
}
.s-flow::after {
  content: '';
  width: 87px;
  height: 87px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/recruit/flow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.w-flow ul {
  margin-left: 16px;
  list-style: none;
  position: relative;
}
.w-flow ul::before {
  content: '';
  width: 2px;
  height: calc(100% - 20px);
  background: #d71318;
  position: absolute;
  top: 20px;
  left: -1px;
}
.w-flow ul li {
  display: flex;
  position: relative;
  padding-left: 70px;
}
.w-flow ul li::before {
  content: '';
  width: 30px;
  height: 30px;
  background: #d71318;
  border-radius: 100%;
  position: absolute;
  top: 20px;
  left: -15px;
}
.w-flow ul li:nth-of-type(n + 2) {
  margin-top: 50px;
}
.w-flow ul li .w-time {
  width: 90px;
  font-size: 23px;
  margin-top: 18px;
}
.w-flow ul li .w-txt {
  width: calc(100% - 80px);
  background: #fff8f8;
  border-radius: 10px;
  padding: 20px 30px;
}

/* 社員インタビュー */
.w-interview ul {
  list-style: none;
}
.w-interview ul li {
  padding: 30px;
  background: #fff;
  border: 1px solid #d71318;
  border-radius: 10px;
}
.w-interview ul li:nth-of-type(n + 2) {
  margin-top: 50px;
}
.w-interview ul li .w-name {
  padding: 5px 0 5px 60px;
  background-image: url(../img/recruit/interview.svg);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
}
.w-interview ul li h3 {
  display: inline-block;
  font-size: 28px;
  position: relative;
}
.w-interview ul li h3::before {
  content: '';
  background: #d71318;
  width: 100%;
  height: 14px;
  opacity: .2;
  position: absolute;
  bottom: 0;
}
.w-interview ul li .w-txt {
  margin-top: 8px;
}
.interview-bg {
  margin-top: 150px;
}

/* よくあるご質問 */
.w-qa .Label {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: #fff8f8;
  border-radius: 10px;
  transition: all .3s;
}
.w-qa .Label::before {
  border-color: #40250e;
  right: 30px;
}
.w-qa .Label:hover {
  background: #ffecec;
}
.w-qa .en-oswald {
  color: #d71318;
  font-size: 30px;
  margin-right: 20px;
}
.w-qa .checkbox:checked + .Label {
  border-radius: 10px 10px 0 0;
}
.w-qa .checkbox:checked + .Label + .label_content {
  display: flex;
  background-color: #fdfdfd;
  border-radius: 0 0 10px 10px;
  padding: 20px 40px;
}
.w-qa .checkbox:checked + .Label + .label_content p {
  margin-top: 6px;
}

/* 募集要項 */
.jobTable tr th,
.jobTable tr td {
  border: 1px solid rgba(64, 37, 14, 0.50);
  text-align: left;
  padding: 27px 50px;
}
.jobTable tr th {
  background-color: #fff8f8;
  color: #40250e;
  font-weight: 500;
  min-width: 280px;
  vertical-align: top;
}
.jobTable tr td ul {
  list-style: none;
}
.jobTable tr td ul li {
  position: relative;
  padding-left: 20px;
}
.jobTable tr td ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #40250e;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.jobTable tr td a {
  text-decoration: underline;
}
.jobTable tr td .external-link {
  position: relative;
  padding-right: 30px;
  background-image: url(../img/recruit/external-link.svg);
  background-position: 100% 60%;
  background-repeat: no-repeat;
  background-size: auto 60%;
  transition: all .3s;
}
.jobTable tr td .external-link:hover {
  text-decoration: none;
  opacity: .8;
}

/* 応募はこちらから */
.w-entry .tel-btn {
  text-align: center;
  margin-top: 50px;
}
.w-entry .tel-btn a {
  display: flex;
  justify-content: center;
  background: linear-gradient(360deg, #f8bd84 0%, #F884A7 51%, #ff6262 100%);
  background-position: 50% 99%;
  background-size: auto 200%;
  color: #fff;
  border: none;
  border-radius: 100vh;
  padding: 16px 70px;
  margin: 0 auto;
  max-width: 520px;
  font-size: 40px;
  letter-spacing: 0.09em;
  transition: all 0.3s ease-out;
}
.w-entry .tel-btn a:hover {
  background-position: 50% 1%;
}
.w-entry .tel-btn a img {
  width: 45px;
  margin-right: 30px;
}
.s-entry .c-entry {
  margin-top: 100px;
}
.w-form {
  margin: 50px auto 0;
  max-width: 850px;
}
.entryTable tr th,
.entryTable tr td {
  padding: 22px 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}
.entryTable tr th {
  width: 250px;
  padding-right: 40px;
  background: none;
  color: #40250e;
  vertical-align: top;
}
.entryTable tr th .require {
  margin-left: 12px;
}
.entryTable tr .mini {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}
.entryTable tr .mini a {
  text-decoration: underline;
}
.entryTable tr .mini a:hover {
  text-decoration: none;
}
.entryTable .select-box {
  display: inline-block;
  position: relative;
}
.entryTable .select-box::after {
  content: '';
  position: absolute;
  top: 46%;
  right: 20px;
  width: 9px;
  height: 9px;
  color: #959595;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: all .5s;
}
.entryTable select,
.entryTable input,
.entryTable textarea {
  padding: 7px 20px;
  background: #fff8f8;
  color: #40250e;
  border: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
}
.entryTable select:invalid,
.entryTable select.is-empty,
.entryTable input::placeholder,
.entryTable input::placeholder {
  color: #959595;
}
.entryTable select {
  max-width: initial;
  min-width: 280px;
  cursor: pointer;
  transition: ease 0.2s opacity;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
}
.entryTable label {
  display: inline-flex;
  align-items: center;
}
.entryTable input[type="radio"] {
  width: 19px;
  height: 16px;
  margin: 2px 6px 0 0;
}
.w-form .btn {
  justify-content: space-around;
  margin-top: 26px;
  text-align: center;
}
.w-form .w-submit {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}
.w-form .w-submit::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  color: #fff;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
  transition: 0.2s;
}
.w-form input[type="submit"],
.w-form input[value="前画面に戻る"] {
  margin: 0;
  padding: 16px 20px;
  border-radius: 15px;
}
.w-form input[type="submit"] {
  background: #d71318;
  border-color: #d71318;
}
.w-form .w-submit:hover::before {
  color: #d71318;
}
.w-form input[type="submit"]:hover {
  background: #fff;
  color: #d71318;
}

/* ----------- 内容 ここまで ----------- */

/* ----------- footer ----------- */
.r-footer {
  background: none;
}
.r-footer .footer-inner {
  padding: 60px 0 50px;
}
.r-footer .footer-inner .logo {
  width: 220px;
  margin-bottom: 0;
}
.r-footer .copy {
  background-color: #f37373;
  font-size: 18px;
}
/* ----------- footer ここまで ----------- */

/* ----------- MD ----------- */
@media screen and (max-width: 1366px) {
  /* ----------- header ----------- */
  .r-header {
    padding: 23px 2%;
  }
  .r-header .logo img {
    width: 180px;
  }
  .r-header .logo h1 {
    font-size: 18px;
  }
  /* g-nav */
  .r-header nav ul {
    padding-left: 2.3vw;
  }
  .r-header nav ul li {
    padding-right: 0 !important;
  }
  .r-header nav ul li a {
    padding: 20px 1.4vw;
    font-size: 18px;
  }
  .r-header nav ul li:last-child a {
    padding: 20px 2vw;
  }
}
@media screen and (max-width: 1075px) {
  .recruit-site main {
    margin-top: 120px;
  }
}

/* ----------- SP ----------- */
@media screen and (max-width: 768px) {
  /* ----------- 共通 ----------- */
  body.recruit-site {
    font-size: 16px;
    font-weight: 400;
    background-size: 150% auto;
  }

  /* フォント */
  p {
    font-size: 16px;
  }

  /* 見出し */
  .r-title {
    margin-bottom: 24px;
  }
  .r-title .en {
    font-size: 42px;
  }
  .r-title .jp {
    font-size: 24px;
  }

  /* 枠 */
  .r-content {
    padding-top: 100px;
  }
  .s-redLine {
    margin-top: 100px;
    padding: 80px 0;
    border-top-width: 3px;
  }
  .r-content .content_in {
    padding: 0 3%;
  }

  /* ----------- header ----------- */
  .r-header {
    padding: 18px 3%;
  }
  .r-header .logo img {
    width: 140px;
  }
  .r-header .logo h1 {
    margin-left: 8px;
    font-size: 16px;
  }
  /* g-nav */
  .r-header nav ul li a {
    font-size: 17px;
    font-weight: 500;
  }
  /* ----------- header ここまで ----------- */

  /* ----------- 内容 ----------- */
  /* TOP */
  .recruit-site main {
    margin-top: 100px;
  }
  .s-top .w-top {
    padding-bottom: 20px;
  }
  .s-top .w-img {
    width: 80%;
  }
  .s-top .w-txt {
    bottom: 0;
    right: 3%;
  }
  .s-top .w-txt p span {
    padding: 10px 14px;
    font-size: 27px;
    font-weight: 500;
  }
  .s-top .w-txt p span:nth-of-type(n + 2) {
    margin-top: 8px;
  }

  /* ヨシケイ山口で働く魅力 */
  .s-charm .w-point {
  margin-top: 40px; 
  }
  .s-charm .w-point ul {
    display: block;
  }
  .s-charm .w-point ul li {
    width: 100%;
    padding: 20px 3vw;
  }
  .s-charm .w-point ul li:nth-of-type(n + 2) {
    margin-top: 25px;
  }
  .s-charm .w-point .w-txt {
    margin-top: 14px;
  }
  .s-charm .w-point .w-txt h3 .en {
    font-size: 32px;
  }
  .s-charm .w-point .w-txt .txt p {
    margin-top: 2px;
  }

  /* 1日の流れ */
  .s-flow {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .s-flow::before {
    top: 20px;
  }
  .s-flow::after {
    content: '';
    width: 40px;
    height: 40px;
  }
  .w-flow ul {
    margin-left: 10px;
  }
  .w-flow ul li {
    display: block;
    padding-left: 26px;
  }
  .w-flow ul li::before {
    width:  18px;
    height: 18px;
    top: 10px;
    left: -9px;
  }
  .w-flow ul li:nth-of-type(n + 2) {
    margin-top: 16px;
  }
  .w-flow ul li .w-time {
    width: 100%;
    font-size: 18px;
    margin-top: 0;
  }
  .w-flow ul li .w-txt {
    width: 100%;
    padding: 18px 3vw;
  }

  /* 社員インタビュー */
  .w-interview ul li {
    padding: 24px 3vw;
  }
  .w-interview ul li:nth-of-type(n + 2) {
    margin-top: 16px;
  }
  .w-interview ul li .w-name {
    padding: 5px 0 5px 40px;
  }
  .w-interview ul li h3 {
    font-size: 20px;
  }
  .w-interview ul li h3::before {
    height: 10px;
  }
  .interview-bg {
    margin-top: 50px;
  }

  /* よくあるご質問 */
  .w-qa .Label {
    padding: 18px 20px 18px 3vw;
    font-size: 17px;
  }
  .w-qa .checkbox:checked + .Label + .label_content {
    padding: 18px 20px 18px 3vw;
    font-size: 17px;
  }
  .w-qa .Label::before {
    right: 3vw;
  }
  .w-qa .en-oswald {
    font-size: 24px;
    margin-right: 10px;
  }
  .checkbox:checked + .Label + .label_content {
    padding: 12px  3vw;
  }

  /* 募集要項 */
  .jobTable tr th,
  .jobTable tr td {
    padding: 13px 3vw;
  }
  .jobTable tr:last-child td {
    border-bottom-color: rgba(64, 37, 14, 0.50);
  }
  .jobTable tr td ul li {
    padding-left: 14px;
  }
  .jobTable tr td ul li::before {
    width: 3px;
    height: 3px;
    left: 3px;
  }
  .jobTable tr td .external-link {
    padding-right: 24px;
  }

  /* 応募はこちらから */
  .w-entry .tel-btn {
    margin-top: 30px;
  }
  .w-entry .tel-btn a {
    padding: 16px;
    font-size: 26px;
  }
  .w-entry .tel-btn a img {
    width: 30px;
    margin-right: 18px;
  }
  .s-entry .c-entry {
    margin-top: 50px;
  }
  .w-form {
    margin: 30px auto 0;
  }
  .entryTable tr th,
  .entryTable tr td {
    padding: 0;
    font-size: 16px;
  }
  .entryTable tr th {
    width: 100%;
    padding: 24px 0 6px;
    font-weight: 500;
  }
  .entryTable tr th .require {
    margin-left: 6px;
  }
  .entryTable tr th .mini {
    display: inline-block;
  }
  .entryTable tr:last-child td {
    border-bottom: 0 !important;
  }
  .entryTable select,
  .entryTable input,
  .entryTable textarea {
    font-size: 16px;
  }
  .w-form input[type="submit"],
  .w-form input[value="前画面に戻る"] {
    padding: 13px;
    font-size: 18px;
  }
  .w-form input[value="前画面に戻る"] {
    margin-bottom: 19px;
  }

  /* ----------- 内容 ここまで ----------- */
  
  /* ----------- footer ----------- */
  .r-footer .footer-inner {
    padding: 30px 0;
  }
  .r-footer .footer-inner .logo {
    width: 160px;
  }
  .r-footer .copy {
    font-size: 15px;
  }
}