@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* =========================
   共通カラー変数
========================= */
:root {
  --yellow: #fcd639;
  --orange: #ffb74d;
  --pink: #ff6f89;
  --white: #ffffff;
  --beige: #f6f2e9;
}

/* =========================
   基本設定
========================= */
html {
  scroll-behavior: smooth;
}

.body {
  font-weight: 500;
  font-family: 'Kosugi', sans-serif;
}
html,
body {
    overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

ol,
ul {
  padding-left: 0px;
  list-style: none;
}

/* =========================
   リセット寄り
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.8;
}

.container-0 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;
}

.no-sidebar .content .main {
  padding: 0;
  width: 100%;
	margin-top:90px;
}

.wp-block-group div,
.wp-block-group p,
.wp-block-group figure {
  max-width: 100%;
}

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

  .article ul,
  .article ol {
    padding-left: 0px;
  }
}


.entry-title {
  display: none;
}

.tabs__panel {
  display: none;
}

.tabs__panel.is-active {
  display: block;
}

#FAQrecruit,
#FAQwork,
#jobDescription,
#jobSchedule,
#jobInterview {
  scroll-margin-top: 100px;
}

@font-face {
  font-family: 'KeiJi';
  src: url('/wp-content/themes/cocoon-child-master/fonts/Kei_Ji.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.tegaki {
  font-family: "KeiJi", sans-serif;
}

/* =========================
   >←これ
========================= */
.arrow-right-white,
.arrow-right-pink {
  position: relative;
}

.arrow-right-white-big,
.arrow-right-pink-big {
  position: relative;
}

/* 共通 */
.arrow-right-white::after,
.arrow-right-pink::after,
.arrow-right-white-big::after,
.arrow-right-pink-big::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 4px
}

/* サイズ */
.arrow-right-white::after,
.arrow-right-pink::after {
  width: 10px;
  height: 10px;
}

.arrow-right-white-big::after,
.arrow-right-pink-big::after {
  width: 16px;
  height: 16px;
}

.arrow-right-white::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.arrow-right-white-big::after {
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}

.arrow-right-pink::after {
  border-top: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
}

.arrow-right-pink-big::after {
  border-top: 4px solid var(--pink);
  border-right: 24px solid var(--pink);
}

.arrow-right-parent:hover .arrow-right-white::after,
.arrow-right-parent:hover .arrow-right-pink::after,
.arrow-right-parent:hover .arrow-right-white-big::after,
.arrow-right-parent:hover .arrow-right-pink-big::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
  opacity: 0.5;
}


/* =========================
   ヘッダー
========================= */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--white);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.siteHeader__main {
  display: flex;
  max-width: 1200px;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.siteHeader__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 200px;
}

.siteHeader__logo a {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.siteHeader__logo__text {
  font-size: 24px;
  line-height: 28px;
  display: block;
  text-align: center;
  background-color: var(--pink);
  color: var(--white);
}

.siteHeader__logo img {
  width: 100%;
}

.siteHeader__navTop a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.siteHeader__navTop img {
  width: 52px;
}

.siteHeader__globalNav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.siteHeader__globalNavItem a {
  all: unset;
  cursor: pointer;
  font-size: 20px;
  padding: 4px 8px;
}

.siteHeader__globalNavItem a span {
  display: block;
  font-size: small;
  color: var(--pink);
}

.siteHeader__globalNavItem {
  display: flex;
  align-items: center;
  position: relative;
}

/* ハンバーガー */
.siteHeader__hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.siteHeader__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.siteHeader__hamburger span:nth-child(1) {
  top: 0;
}

.siteHeader__hamburger span:nth-child(2) {
  top: 9px;
}

.siteHeader__hamburger span:nth-child(3) {
  bottom: 0;
}

/* 開いたとき（×） */
.siteHeader__hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.siteHeader__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.siteHeader__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

body.no-scroll {
  overflow: hidden;
}



/* =========================
   フッター
========================= */
.siteFooter {
  background-color: var(--yellow);
  padding-top: 40px;
  z-index: 1000;
  font-size: 0.9rem;
}

.siteFooter__inner {
  max-width: 1000px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.siteFooter__ {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: flex-start;
  align-items: flex-start;
}

.siteFooter__top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.siteFooter__logo a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 80%;
}

.siteFooter__logo img {
  width: 100%;
  max-width: 300px;
}

.siteFooter__logo__text {
  font-size: 24px;
  line-height: 28px;
  display: block;
  text-align: center;
}

.siteFooter__navTitle a {
  display: block;
}

.siteFooter__navGroup {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.siteFooter__navGroup--single {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 20px;
}

.siteFooter__navColumn--single {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.siteFooter__cta {
  display: flex;
  gap: 40px;
}

.siteFooter__ctaLabel {
  display: block;
  font-size: 12px;
}

.siteFooter__policyList {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: smaller;
}

.siteFooter__policyList li a {
  padding: 4px 8px;
}

.siteFooter__policyList li+li::before {
  content: "";
  width: 1px;
  height: 16px;
  background: var(--pink);
  margin: 0px 8px;
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}

.siteFooter__copyright {
  padding-top: 16px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.siteFooter__ctaContact a {
  font-size: 24px;
  padding: 12px 20px;
  background-color: var(--white);
}

.fixedCta {
  z-index: 999;
  position: fixed;
  right: 0;
  bottom: 20px;
}

.fixedCta__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fixedCta__item {
  font-weight: 800;
  background: linear-gradient(to right,
      var(--pink),
      var(--yellow));
  opacity: 0.9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.fixedCta__link--bot {
  display: none;
}

.fixedCta__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  height: 60px;
}

.fixedCta__image {
  width: 32px;
}

.fixedCta__text {
  line-height: 24px;
  padding-top: 4px;
}

.fixedCta__text span {
  font-size: 32px;
}

/* SNS */

.sns {
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sns h2 {
  margin-bottom: 8px;
}

.sns ul {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: stretch;
}

.sns ul li {
  background: linear-gradient(to right, var(--pink), var(--yellow));
  padding: 3px;
  display: grid;
  margin: 0;
}

.sns ul li a {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  padding: 8px 12px;
  background: var(--white);
  text-align: center;
  height: 100%;
}

.sns ul li h4 img {
  width: 32px;
}

.sns ul li h4 {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 8px;
}

.sns ul li p {
  margin-bottom: 0;
  padding: 0;
  font-size: small;
  line-height: 1rem;
}


.pageTop .pageTop-title {
  padding: 30px 0px;
  background-color: var(--beige);
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}

.pageTop .pageTop-title span {
  font-size: 24px;
  line-height: 24px;
}

/* 問い合わせ */
.contactBox {
  margin: 0 auto;
  width: 90%;
}

.contactBox .form-btns {
  display: block;
}

.contactBox p {
  margin-bottom: 0;
}

.contactBox th,
.contactBox td {
  padding: 20px;
}

.pc-form table {
  margin: 100px auto;
}

.contactBox .form-btns input,
.contactBox .form-btns a,
.contactBox .form-btns button {
  display: block !important;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px !important;
  line-height: 1;
  transition: 0.3s;
  padding: 24px 40px !important;
  border-radius: 0 !important;
  border: 0;
  cursor: pointer;
  max-width: 400px;
  margin: 8px auto;
  background-color: var(--pink);
  color: var(--white);
}

.thanks-message {
  padding: 16px 20px;
}

.custom-mw-form .req {
  display: inline;
  background-color: var(--pink);
  padding:4px 8px;
	color:var(--white);
	border-radius:999px;
	font-size:12px;
}
.contactBox th, .contactBox td {
	padding:4px;
	text-align:start;
}
.contactBox td {
flex:2;
}
.contactBox th {
	flex:1;
}
.custom-mw-form tbody tr {
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
	max-width:800px;
	margin:0 auto;
}
.contactDiscription {
	font-size:12px;
}
.contactBox__preference p {
  margin-top: 12px;
}

.contactBox h2 {
  font-size: xx-large;
  color: var(--pink);
  margin-bottom: 20px;
}

.contactBox h2::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1.3em;
  background: #333;
  margin-right: 12px;
  vertical-align: middle;
  color: var(--pink)
}

/* 無効状態 */
.wpcf7 input.wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.custom-mw-form a {
  color: var(--accent-color);
  border-bottom: 1px solid var(--pink);
}

.hidden-submit {
  display: none;
}

#confirm-area {
  display: none;
}

.confirm-row {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.confirm-label {
  font-weight: bold;
  margin-bottom: 4px;
}

/* 職種紹介 */
.archiveJob__caption {
  padding: 30px 0px;
  background-color: var(--beige);
  position: relative;
  gap: 20px;
}

.archiveJob-title {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
}

.archiveJob-title span {
  font-size: 24px;
  line-height: 24px;
}

.archiveJob__caption a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15%;
  line-height: 32px;
  padding: 8px 32px 8px 12px;
  background-color: var(--pink);
  color: var(--white);
}

.archiveJob__caption a span {
  font-size: 24px;
}


.archiveJob .archiveJob__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
}

.job-card-list {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.job-card {
  width: 300px;
  height: 400px;
  position: relative;
  display: block;
  padding: 12px;
  background: var(--yellow);
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;

}

.job-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #fff;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.job-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.job-en {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  z-index: 2;
}

.job-jp {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  z-index: 2;
  line-height: 24px;
  padding: 4px 8px;
  background-color: var(--white);
}

.archiveJob__foreign {
  text-align: center;
}

.archiveJob__foreign a {
  font-size: 24px;
  margin: 20px auto;
  display: inline-block;
  padding: 12px 48px 12px 32px;
  background: var(--pink);
  color: var(--white);
}

.jobDescription__role,
.job__tasks p,
.jobSchedule td p,
.jobInterview__content p {
  white-space: pre-line;
}

.jobFv {
  background: var(--beige);
  padding: 20px 0;
}

.jobFv__imgBox {
  width: 80%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.jobFv__imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobFv__imgBox .jobFv__textBox {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.jobFv__textBox {
  background-color: var(--white);
  padding: 12px 30px 12px 60px;
  position: relative;
}

.jobFv__textBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  border-radius: 2px;
}

.jobFv__textBox h2 {
  text-align: center;
  line-height: 24px;
}

.jobFv__textBox h2 span {
  font-size: small;
  line-height: 8px;
}

.jobNav nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px auto;
}

.jobNav nav ul li a {
  width: 200px;
  display: block;
  text-align: center;
  color: var(--white);
  padding: 4px 4px;
  font-size: 20px;
}

.jobNav_description {
  background: var(--pink);
}

.jobNav_schedule {
  background: var(--yellow);
}

.jobNav_interview {
  background: var(--orange);
}

.jobCaption h3 {
  position: relative;
  border-bottom: 1px solid black;
  display: inline-block;
  padding: 8px;
  padding-left: 60px;
  font-size: 32px;
  margin: 40px auto 20px;
}

.jobCaption h3::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 80%;
  border-radius: 2px;
}

.jobDescription__caption h3::before {
  background: var(--pink);
}

.jobSchedule__caption h3::before {
  background: var(--yellow);
}

.jobInterview__caption h3::before {
  background: var(--orange);
}

.jobSection__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.job__tasks {
  margin-top: 20px;
  background: var(--beige);
  border: 3px solid var(--pink);
}

.job__tasks h4 {
  background: var(--pink);
  color: var(--white);
  padding: 4px 8px;
}

.job__tasks p {
  padding: 4px 8px;
}

/* =========================
   タブボタン
========================= */
.tabs__nav {
  display: flex;
}

.tabs__btn {
  padding: 12px 24px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  margin-right: 8px;
  transition: 0.3s;
  font-size: 20px;
}

.tabs__btn.is-active {
  background: var(--yellow);
  color: #fff;
  text-shadow:
    -1px -1px 0 var(--orange),
    1px -1px 0 var(--orange),
    -1px 1px 0 var(--orange),
    1px 1px 0 var(--orange);
}



/* =========================
   タブ中身
========================= */
.tabs__panel {
  display: none;
}

.tabs__panel.is-active {
  display: block;
}


/* =========================
   スケジュール（タイムライン）
========================= */

.jobSchedule table {
  width: 100%;
  border: 5px solid var(--yellow);
  position: relative;
  background: var(--beige);
}

.jobSchedule th,
.jobSchedule td {
  border: none;
}

/* 縦線 */
.jobSchedule th::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000;
}

/* 時刻 */
.jobSchedule th {
  width: 120px;
  text-align: right;
  padding-right: 20px;
  font-size: 18px;
  vertical-align: top;
  color: #555;
  position: relative;
}

/* 丸（ポイント） */
.jobSchedule th::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 16px;
  width: 20px;
  height: 20px;
  background: #f4c542;
  border-radius: 50%;
  z-index: 2;
}

/* 内容 */
.jobSchedule td {
  padding-left: 40px;
}

/* 見出し */
.jobSchedule td h4 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

/* 本文 */
.jobSchedule td p {
  margin: 6px 0 0;
  color: #666;
  line-height: 1.6;
  white-space: pre-line;
}


/* =========================
   休憩ボックス（画像っぽい）
========================= */
.jobSchedule__break td div {
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 4px;
  display: block;
}

.jobSchedule__break th::after {
  content: none;
}


.jobInterview__content ol li h4 {
  font-size: x-large;
  color: var(--orange);
  margin-top: 20px;
}

.topJob {
  width: 100%;
	max-width:1000px;
  margin: 40px auto;
}

.topJob__a {
  display: block;
  text-align: center;
  background: linear-gradient(to right, var(--pink), var(--yellow));
  padding: 20px;
  position: relative;
}

.topJob__a .topJob__p {
  display: inline-block;
  background: var(--white);
  margin: 0;
  padding: 4px 8px;
  font-size: x-large;
}

.topArchiveJob {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.topArchiveJob__a {
  margin-top: 80px;
  display: block;
  text-align: center;
  background: linear-gradient(to right, var(--pink), var(--yellow));
  padding: 20px;
  position: relative;
}

.topArchiveJob__a .topArchiveJob__p {
  display: inline-block;
  background: var(--white);
  margin: 0;
  padding: 4px 8px;
  font-size: x-large;
}

/* 横線 */
.topJob__a::before {
  content: "";
  position: absolute;
  right: calc(17% - 4px);
  bottom: 45px;
  width: 60px;
  height: 5px;
  background: var(--white);
}

/* 矢印の先 */
.topJob__a::after {
  content: "";
  position: absolute;
  right: 17%;
  bottom: 30px;
  width: 30px;
  height: 30px;
  border-top: 5px solid var(--white);
  border-right: 5px solid var(--white);
  transform: rotate(45deg);
}

.topJob__a::before,
.topJob__a::after {
  transition: transform 0.3s ease;
}

/* hoverで右に移動 */
.topJob__a:hover::before {
  transform: translateX(20px);
}

.topJob__a:hover::after {
  transform: translateX(20px) rotate(45deg);
}








/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
  .archiveJob__caption a {
    position: static;
    transform: none;
    display: block;
    margin: 12px auto 0px;
    width: fit-content;
  }


}


/*834px以下*/
@media screen and (max-width: 834px) {
.no-sidebar .content .main {
	margin-top:70px;
}


  /* ハンバーガー表示 */
  .siteHeader {
    height: 80px;
  }

  .siteHeader__hamburger {
    display: block;
  }


  /* ナビ隠す */
  .siteHeader__nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    background: var(--white);
    transition: 0.3s;
  }

  .siteHeader__navBottom {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 開いた状態 */
  .siteHeader__nav.active {
    right: 0;
    flex-direction: column;
    gap: 40px;
  }

  .siteHeader__navTop {
    flex-direction: column;
    gap: 40px;
  }

  .siteHeader__utilityList {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }

  .siteHeader__utilityList li a {
    padding: 12px 20px;
  }


  /* メニュー縦並び */
  .siteHeader__globalNav {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 60px;
    align-items: flex-start;
  }

  /* 区切り消す（SPでは不要） */
  .siteHeader__globalNav .siteHeader__globalNavItem+.siteHeader__globalNavItem::before,
  .siteHeader__globalNav .siteHeader__globalNavItem+.siteHeader__globalNavItem span::before {
    content: none;
  }

  .siteHeader__globalNavItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .siteHeader__globalNavItem .submenu {
    position: static;
    display: block;
    background-color: transparent;
    color: var(--sub-text-color);
    font-size: 16px;
    list-style: none;
  }

  /* ナビ開いた状態 */
  .siteHeader__navBottom.active {
    right: 0;
  }

  .siteHeader__navTop.active {
    right: 0;
  }

  .siteHeader__nav {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
  }

  .sns ul {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .sns ul li a {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
  }

  .sns ul li h4 img {
    width: 28px;
  }

  .archiveJob .archiveJob__inner {
    padding: 0px;
  }

  .job-card {
    width: 150px;
    height: 200px;
    padding: 8px;

  }

  .job-card::before {
    top: 6px;
    bottom: 6px;
    right: 6px;
    left: 6px;
  }

  .job-card-list {
    gap: 12px;
  }

  .job-jp {
    font-size: 12px;
    bottom: 10px;
    right: 10px;
  }

  .job-en {
    font-size: 8px;
    top: 8px;
    left: 10px;
  }

  .archiveJob-title {
    font-size: 32px;
    line-height: 24px;
  }

  .archiveJob-title span {
    font-size: 14px;
  }

  .siteFooter__navTitle a {
    font-size: 14px;
  }

  .jobNav nav ul {
    gap: 4px;
    margin: 20px auto;
  }

  .jobNav nav ul li a {
    width: 100px;
    display: block;
    text-align: center;
    color: var(--white);
    padding: 4px 4px;
    font-size: 12px;
  }

  .jobCaption h3 {
    font-size: 20px;
  }

  .tabs__btn {
    padding: 8px 16px;
    font-size: 18px;
  }

  .jobSchedule th {
    width: 80px;
    font-size: 14px;
    padding-top: 14px;
  }

  .jobSchedule td h4 {
    font-size: 14px;
    padding-top: 14px;
  }

  .jobInterview__content ol li h4 {
    font-size: large;
    margin-top: 12px;
  }
.jobFv__imgBox {
  height: 200px;
}
	.jobFv__textBox {
		padding:4px 12px 4px 32px;
}
	.jobFv__textBox::before {
		width:15px;
	}
/* 横線 */
.topJob__a::before {
  right: calc(10% - 4px);
  bottom: 45px;
  width: 40px;
  height: 3px;
}

/* 矢印の先 */
.topJob__a::after {
  right: 10%;
  bottom: 35px;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
}
.custom-mw-form tbody tr {
flex-direction:column;
	}
.contactBox td,.contactBox th {
	width:100%;
}
	.fixedCta__box {
		padding:4px 8px;
		height:48px;
	}
	.fixedCta__text span {
font-size:20px;
}
	.fixedCta__text {
		font-size:14px;
		line-height:14px;
    padding-top: 4px;
}
}

@media (max-width: 600px) {

	
  .siteFooter__ {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*480px以下*/
@media screen and (max-width: 480px) {
  .siteFooter__navGroup {
    flex-direction: column;
	gap:0px;
  }
}