@charset "utf-8";
/* == base ============================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Zen Kaku Gothic Antique", Helvetica, Arial,
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  color: #333;
}
button,
select,
input,
textarea {
  font-family: "Zen Kaku Gothic Antique", Helvetica, Arial,
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* == utility ============================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.u-bold {
  font-weight: 700;
}
.u-center {
  text-align: center;
}
.u-hover {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .u-hover:hover {
    opacity: 0.6;
  }
}
.u-noPost {
  width: 90%;
  font-size: 1.6rem;
  text-align: center;
  padding: 24px 0;
  margin: 0 auto;
}
.u-bgFill {
  background-color: #eef1f4;
}
.u-ringBg {
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.u-ringBg::before {
  content: "";
  display: block;
  width: 730px;
  height: 730px;
  border: 40px solid #edf1f4;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  top: -250px;
  right: -250px;
  z-index: -1;
}
.u-ringBg--fill {
  background: #edf1f4;
}
.u-ringBg--fill::before {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .u-ringBg::before {
    width: 540px;
    height: 540px;
    top: -48px;
    right: -246px;
  }
}

/* == base style ============================================== */
.c-mainText {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #333;
  /* word-break: break-all; */
}
.c-mainText::after {
  content: "";
  display: block;
  clear: both;
}
.c-mainText > *:first-child {
  margin-top: 0;
}
.c-mainText > *:last-child {
  margin-bottom: 0;
}
/* --- 見出し --- */
.c-mainText h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 120px 0 40px;
}
.c-mainText h2 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.58;
  border-bottom: 1px solid #32ae3a;
  padding: 0 0 24px;
  margin: 80px 0 40px;
  position: relative;
}
.c-mainText h2::before {
  content: "";
  display: block;
  width: 132px;
  height: 6px;
  background: #32ae3a;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.c-mainText h3 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.58;
  margin: 40px 0 20px;
  position: relative;
}
.c-mainText h2 + h3 {
  margin-top: 40px;
}
.c-mainText h4,
.c-mainText h5,
.c-mainText h6 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 32px 0 20px;
}
@media screen and (max-width: 767px) {
  .c-mainText h1 {
    font-size: 2.4rem;
    margin: 80px 0 40px;
  }
  .c-mainText h2,
  .c-mainText h3,
  .c-mainText h4,
  .c-mainText h5,
  .c-mainText h6 {
    font-size: 1.8rem;
  }
}
/* --- 段落 --- */
.c-mainText p {
  margin: 1em 0;
}
/* --- 引用 --- */
.c-mainText blockquote {
  font-size: 1.6rem;
  line-height: 2;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
}
.c-mainText blockquote > *:first-child {
  margin-top: 0;
}
.c-mainText blockquote > *:last-child {
  margin-bottom: 0;
}
/* --- テーブル --- */
.c-tableScroll {
  width: 100%;
  max-width: none;
  min-height: 0.01%;
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText figure {
  margin: 40px 0;
}
.wp-block-table thead {
  border: 0;
}
.c-tableScroll::-webkit-scrollbar {
  height: 8px;
}
.c-tableScroll::-webkit-scrollbar-track {
  background: #eaeaea;
}
.c-tableScroll::-webkit-scrollbar-thumb {
  background: #d0d3d9;
}
.c-mainText table th,
.c-mainText table td {
  border: 1px solid #333;
}
.c-mainText table th {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: #eef1f4;
  padding: 10px 20px;
  color: #333;
}
.c-mainText table td {
  font-size: 1.6rem;
  background: #f7f7f7;
  padding: 16px 20px;
}
.c-mainText table th a {
  color: #333 !important;
}
.c-mainText caption {
  text-align: left;
  margin: 8px 0;
}
/* --- 定義リスト --- */
.c-mainText dl {
  width: 100%;
  margin: 24px 0;
}
.c-mainText dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-mainText dl {
    display: flex;
    flex-wrap: wrap;
  }
  .c-mainText dt {
    width: 200px;
    padding: 0 10px 0 0;
    margin: 8px 0;
  }
  .c-mainText dd {
    width: calc(100% - 200px);
    margin: 8px 0;
  }
}
/* --- 非順序リスト --- */
.c-mainText ul {
  margin: 40px 0;
}
.c-mainText ul ul,
.c-mainText ol ul {
  padding: 0;
  margin: 0;
}
.c-mainText ul > li {
  font-size: 1.6rem;
  line-height: 1.75;
  position: relative;
  padding: 0 0 0 2em;
  margin: 24px 0 0;
}
.c-mainText ul > li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
/* @media screen and (max-width: 767px) {} */
/* --- 順序リスト --- */
.c-mainText ol {
  counter-reset: olNum;
  margin: 40px 0;
}
.c-mainText ol ol,
.c-mainText ul ol {
  padding: 0;
  margin: 0;
}
.c-mainText ol > li {
  font-size: 1.6rem;
  line-height: 1.75;
  text-indent: -30px;
  margin: 24px 0 0 34px;
}
.c-mainText ol > li::before {
  counter-increment: olNum;
  content: counter(olNum) ".";
  margin: 0 18px 0 0;
}
@media screen and (max-width: 767px) {
  .c-mainText ol {
    padding: 0 0 0 6px;
  }
  .c-mainText ol > li {
    font-size: 1.6rem;
  }
}
/* --- 要素タグ --- */
/* [罫線] */
.c-mainText hr {
  width: 100%;
  height: 2px;
  background: #dadada;
  border: 0;
  margin: 80px 0;
}
/* [強調] */
.c-mainText strong,
.c-mainText b {
  font-weight: 900;
}
/* [強調] ( 斜体 ) */
.c-mainText em {
  font-style: italic;
}
/* [強調] ( マーカー ) */
/* .c-mainText mark {
  background: linear-gradient(transparent 60%, #ff6 60%);
} */
/* [打ち消し] */
.c-mainText del {
  text-decoration: line-through;
}
/* [住所] */
.c-mainText address,
.c-mainText address * {
  font-style: italic;
}
/* [アンカー] ( リンク ) */
.c-mainText a:not([class]) {
  text-decoration: underline;
  color: #01a0e9;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .c-mainText a:not([class]):hover {
    opacity: 0.7;
  }
}
/* [略語、頭字語] ( abbreviation ) */
.c-mainText abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}
/* [引用元] */
.c-mainText cite {
  font-style: italic;
}
/* [コード] */
.c-mainText code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [追加、挿入] */
.c-mainText ins {
  text-decoration: underline;
}
/* [キーボード入力要素] */
.c-mainText kbd {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [コードブロック] */
.c-mainText pre {
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
  background: #25292f;
  color: #fff;
  /* white-space: pre-wrap; */
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText pre::-webkit-scrollbar {
  height: 6px;
}
.c-mainText pre::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText pre::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
/* [一部引用] */
.c-mainText q::before {
  content: open-quote;
}
.c-mainText q::after {
  content: close-quote;
}
/* [下付き、上付き文字] */
.c-mainText sub,
.c-mainText sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.c-mainText sub {
  bottom: -0.25em;
}
.c-mainText sup {
  top: -0.5em;
}
/* [変数、引数、因数] */
.c-mainText var {
  font-style: italic;
}
/* --- 画像 --- */
.c-mainText img {
  max-width: 100%;
}
.c-mainText figcaption,
.c-mainText .wp-caption,
.c-mainText .wp-caption-text,
.c-mainText .wp-block-embed figcaption {
  max-width: 100%;
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 10px 0;
}
/* --- 配置 --- */
.c-mainText img.alignright {
  display: inline;
  margin: 0 auto 30px 24px;
}
.c-mainText img.alignleft {
  display: inline;
  margin: 0 24px 30px auto;
}
.c-mainText img.aligncenter {
  display: block;
  margin: 14px auto;
}
.c-mainText .alignright {
  float: right;
  margin: 0 auto 30px 24px;
}
.c-mainText .alignleft {
  float: left;
  margin: 0 24px 30px auto;
}
.c-mainText .aligncenter {
  clear: both;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-mainText img.alignright {
    display: block;
    margin: 15px auto;
  }
  .c-mainText img.alignleft {
    display: block;
    margin: 15px auto;
  }
  .c-mainText .alignright {
    float: none;
  }
  .c-mainText .alignleft {
    float: none;
  }
}

/* --- ACF block --- */
/*** callout *********************************/
.c-callout {
  margin: 40px 0;
  padding: 40px;
  border-left: 2px solid #333;
}
.c-callout__title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 900;
}
.c-callout__item {
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 24px 0 0;
}
.c-callout > *:first-child,
.c-callout__item > *:first-child {
  margin-top: 0;
}
.c-callout > *:last-child,
.c-callout__item > *:last-child {
  margin-bottom: 0;
}

/*** column img *********************************/
.c-colImg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 80px 0;
}
.c-colImg__item {
  width: 48%;
  margin: 0 0 40px;
}
.c-colImg__img {
  width: 100%;
  padding: 58.33% 0 0;
  position: relative;
}
.c-colImg__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .c-colImg__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.c-colImg__caption {
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 14px 0 0;
}
@media screen and (max-width: 767px) {
  .c-colImg__item {
    width: 100%;
  }
}

/*** round ol *********************************/
.c-olRound,
.c-mainText .c-olRound {
  counter-reset: olRoundNum;
}
.c-olRound > li,
.c-mainText .c-olRound > li {
  text-indent: 0;
  position: relative;
}
.c-olRound > li::before,
.c-mainText .c-olRound > li::before {
  counter-increment: olRoundNum;
  content: counter(olRoundNum);
  width: 16px;
  height: 16px;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #333;
  border-radius: 50%;
  padding: 1px 0 0;
  margin: 0;
  position: absolute;
  top: 6px;
  left: -34px;
}

/* == parts ============================================== */
/*** inner *********************************/
.l-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.l-inner--s {
  max-width: 1000px;
}
.l-inner--l {
  max-width: 1264px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 88%;
  }

  .p-front-recruit .l-inner {
    width: 98%;
  }
  .p-job-contents .l-inner {
    width: 98%;
  }
}

/*** button *********************************/
.c-btn {
  padding: 0 0 6px;
  position: relative;
  z-index: 1;
}
.c-btn button {
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
.c-btn__item {
  display: inline-flex;
  align-items: center;
  min-width: 310px;
  min-height: 64px;
  border-radius: 9999px;
  cursor: pointer;
  padding: 10px 32px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.c-btn__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #32ae3a;
  border: 2px solid #43d14c;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-btn__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #2e9134;
  border-radius: 9999px;
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: -2;
  transition: bottom 0.3s;
}
.c-btn__text {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  text-align: center;
  padding: 0 30px;
  position: relative;
}
.c-btn__text::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.c-btn__balloon {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: calc(100% - 16px);
  left: 0;
}
.c-btn__balloonText {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  color: #32ae3a;
  background: #fff;
  border: 2px solid #43d14c;
  border-radius: 9999px;
  padding: 6px 22px;
  position: relative;
}
.c-btn__balloonText::before,
.c-btn__balloonText::after {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #43d14c;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.c-btn__balloonText::after {
  background: #fff;
  width: 8px;
  height: 7px;
  bottom: -6px;
}
@media (hover: hover) {
  .c-btn__item:hover {
    transform: translateY(4px);
  }
  .c-btn__item:hover::after {
    bottom: 0px;
  }
}
/* --- */
.c-btn--white .c-btn__item::before {
  background: #fff;
  border-color: #333;
}
.c-btn--white .c-btn__item::after {
  background: #333;
}
.c-btn--white .c-btn__text {
  color: #333;
}
.c-btn--white .c-btn__text::before {
  border-color: #333;
}
/* --- */
.c-btn--back .c-btn__text::before {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
/* --- */
.c-btn--noArrow .c-btn__item {
  width: auto;
  min-width: 250px;
  padding: 10px 12px;
  justify-content: center;
}
.c-btn--noArrow .c-btn__item::after {
  bottom: 0;
  border: 2px solid #43d14c;
}
.c-btn--noArrow.c-btn--white .c-btn__item::after {
  border: 2px solid #333;
}
.c-btn--noArrow .c-btn__item::before {
  transition: opacity 0.4s;
}
.c-btn--noArrow .c-btn__text::before {
  content: none;
}
.c-btn--noArrow .c-btn__text {
  font-size: 1.4rem;
  text-align: center;
  padding: 0;
  transition: color 0.4s;
}
@media (hover: hover) {
  .c-btn--noArrow .c-btn__item:hover {
    transform: translateY(0);
  }
  .c-btn--noArrow .c-btn__item:hover::before {
    opacity: 0.1;
  }
  .c-btn--noArrow.c-btn--white .c-btn__item:hover .c-btn__text {
    color: #fff;
  }
}
/* --- */
.c-btn--center {
  text-align: center;
}
/* --- */
.c-btn--large .c-btn__item {
  min-height: 88px;
}
.c-btn--large .c-btn__text {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .c-btn--large .c-btn__item {
    min-width: 500px;
    min-height: 88px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    text-align: center;
  }
  .c-btn__item {
    width: 100%;
    min-width: auto;
    max-width: 320px;
  }
  .c-btn__text {
    padding: 0 14px 0 0;
  }
}

/*** heading *********************************/
.c-heading {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0 0 0 40px;
  margin: 0 0 80px;
  position: relative;
}
.c-heading::before,
.c-heading::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #32ae3a;
  border: 1px solid #32ae3a;
  position: absolute;
  top: calc(0.5em + 8px);
  left: 0;
  z-index: 2;
}
.c-heading::after {
  background: transparent;
  left: 10px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 3.2rem;
    line-height: 1.18;
    margin: 0 8px 40px;
  }
  .c-heading::before,
  .c-heading::after {
    top: calc(0.5em - 4px);
  }
}
/* --- */
.c-subHeading {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.58;
  border-bottom: 1px solid #32ae3a;
  padding: 0 0 24px;
  margin: 0 0 40px;
  position: relative;
}
.c-subHeading::before {
  content: "";
  display: block;
  width: 132px;
  height: 6px;
  background: #32ae3a;
  position: absolute;
  bottom: -6px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-subHeading {
    font-size: 1.8rem;
  }
}

/*** more link *********************************/
.c-jobCard__more {
  display: none;
  text-align: right;
  padding: 0 0 4px;
}
.c-moreLink__item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.7;
  text-decoration: underline;
  padding: 0 32px 0 0;
  transition: opacity 0.4s;
  position: relative;
}
@media (hover: hover) {
  a.c-moreLink__item:hover {
    opacity: 0.6;
  }
}
.c-moreLink__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  bottom: 2px;
  right: 0;
}
.c-jobCard__more .c-moreLink__item::before {
  background: #32ae3a;
}
.c-moreLink__item::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  bottom: 11px;
  right: 10px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-jobCard__more {
    display: block;
  }
}

/*** tips card *********************************/
.c-tipsCard {
  width: 100%;
  max-width: 432px;
  padding: 0 16px;
}
.c-tipsCard__item {
  display: block;
  width: 100%;
  transition: opacity 0.4s;
}
#frontPage .p-front-tips .c-tipsCard__item {
  border: solid 1px lightgray;
}
#frontPage .p-front-tips .c-tipsCard__contents {
  padding-bottom: 20px;
}
@media (hover: hover) {
  .c-tipsCard__item:hover {
    opacity: 0.6;
  }
}
.c-tipsCard__thumb {
  width: 100%;
}
.c-tipsCard__thumbImg {
  width: 100%;
  padding: 58.75% 0 0;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.c-tipsCard__contents {
  padding: 0 16px;
  margin: 16px 0 0;
}
.c-tipsCard__date {
  display: block;
  font-size: 1.6rem;
  margin: 0 0 10px;
}
.c-tipsCard__cat {
  display: flex;
  flex-wrap: wrap;
}
.c-tipsCard__catItem {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  background: #333;
  border-radius: 9999px;
  padding: 8px 14px;
  margin: 0 8px 8px 0;
}
.c-tipsCard__title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.77;
  margin: 8px 0 0;
}
.c-tipsCard__excerpt {
  font-size: 1.6rem;
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 20px 0 0;
}
.c-tipsCard .c-moreLink {
  margin: 40px 0 0;
  text-align: right;
}
/* --- */
@media screen and (min-width: 768px) {
  .c-tipsCard--hr {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .c-tipsCard--hr .c-tipsCard__item {
    display: flex;
    justify-content: space-between;
  }
  .c-tipsCard--hr .c-tipsCard__thumb {
    width: 42%;
    max-width: 400px;
  }
  .c-tipsCard--hr .c-tipsCard__thumbImg {
    height: 100%;
    padding: 47.5% 0 0;
  }
  .c-tipsCard--hr .c-tipsCard__contents {
    flex: 1;
    padding: 20px 0 20px 40px;
    margin: 0;
    position: relative;
  }
  .c-tipsCard--hr .c-tipsCard__title {
    padding: 0 140px 0 0;
  }
  .c-tipsCard--hr .c-tipsCard__excerpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 0 140px 0 0;
  }
  .c-tipsCard--hr .c-moreLink {
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
/* --- */
.c-tipsCardList {
  width: 94%;
  max-width: 1296px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.c-tipsCardList .c-tipsCard {
  width: calc(100% / 3);
  max-width: none;
  margin: 0 0 80px;
}
@media screen and (max-width: 991px) {
  .c-tipsCardList .c-tipsCard {
    width: calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .c-tipsCardList--hr {
    display: block;
    width: 90%;
    max-width: 1264px;
  }
  .c-tipsCardList--hr .c-tipsCard {
    width: 100%;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-tipsCardList {
    width: 88%;
  }
  .c-tipsCardList .c-tipsCard {
    width: 100%;
    max-width: 400px;
    padding: 0;
    margin: 0 auto 80px;
  }
  .c-tipsCard .c-moreLink {
    margin: 24px 0 0;
  }
}

/*** job card *********************************/
.c-jobCard__item {
  display: block;
  width: 100%;
  background: #edf1f4;
  border: 1px solid lightgray;
  position: relative;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .c-jobCard__item:hover {
    opacity: 0.6;
  }
}
.c-jobCard__item::before {
  content: "";
  display: block;
  width: 132px;
  height: 5px;
  background: #32ae3a;
  position: absolute;
  top: 0;
  left: 0;
}
.c-jobCard__head {
  background: #fff;
  padding: 32px 24px 24px;
}
.c-jobCard--private .c-jobCard__head {
  background: #d1d9d1;
}
.c-jobCard__tag {
  display: flex;
  flex-wrap: wrap;
}
.c-jobCard__tagItem {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  background: #333;
  border-radius: 9999px;
  padding: 4px 10px;
  margin: 0 8px 8px 0;
}
.c-jobCard__tagItem--private {
  background: #fff;
  color: #333;
}
.c-jobCard__title {
  font-size: 2.4rem;
  font-weight: 750;
  line-height: 1.58;
}
.c-jobCard__co {
  margin: 8px 0 0;
}
.c-jobCard__detail {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}
.c-jobCard__thumb {
  width: 40%;
  max-width: 400px;
  margin: 0 24px 0 0;
}
.c-jobCard__thumbImg {
  width: 100%;
  padding: 64% 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-jobCard__contents {
  flex: 1;
  overflow: hidden;
}
.c-jobCard__condWrap {
  margin: 0 0 30px;
}
.c-jobCard__cond {
  display: flex;
  align-items: flex-start;
  margin: 0 0 12px;
}
.c-jobCard__condTitle {
  flex-shrink: 0;
  width: 80px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  background: #fff;
  padding: 6px 4px;
  margin: 0 24px 0 0;
}
.c-jobCard__condItem {
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-jobCard__text {
  max-width: 560px;
  margin-bottom: 40px;
  /* padding: 0 80px 0 0; */
}
.c-jobCard__arrow {
  display: block;
  width: 64px;
  height: 64px;
  background: #32ae3a;
  border-radius: 50%;
  position: absolute;
  bottom: 24px;
  right: 24px;
}
.c-jobCard__arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 28px;
  left: 27px;
  transform: rotate(45deg);
}
/* --- */
.c-jobCardList .c-jobCard + .c-jobCard {
  margin: 32px 0 0;
}
@media screen and (max-width: 767px) {
  .c-jobCard__head {
    padding: 14px 18px 8px;
  }
  .c-jobCard__title {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .c-jobCard__detail {
    display: block;
    padding: 4px 20px 2px;
  }
  .c-jobCard__thumb {
    width: 100%;
    margin: 0 auto 16px;
  }
  .c-jobCard__co {
    font-size: 1.4rem;
  }
  .c-jobCard__condWrap {
    margin: 0 0 6px;
  }
  .c-jobCard__cond {
    margin: 0 0 12px;
    display: block;
  }
  .c-jobCard__text {
    max-width: none;
    padding: 0;
  }
  .c-jobCard__condTitle {
    margin: 0 0 6px 0;
    font-size: 1.4rem;
  }
  .c-jobCard__condItem {
    font-size: 1.5rem;
  }
  .c-jobCard__arrow {
    display: none;
    /* position: relative;
    width: 44px;
    height: 44px;
    bottom: auto;
    right: auto;
    margin: 0px 24px 14px auto; */
  }
  .c-jobCard__arrow::before {
    top: 18px;
    left: 18px;
  }
  /* --- */
  .c-jobCardList .c-jobCard + .c-jobCard {
    margin: 40px 0 0;
  }
}

/*** article *********************************/
.c-article {
  border-bottom: 1px solid #ccc;
  padding: 40px 0;
}
.c-article__item {
  display: block;
  width: 100%;
  transition: opacity 0.4s;
  position: relative;
}
@media (hover: hover) {
  .c-article__item:hover {
    opacity: 0.6;
  }
}
.c-article__cat {
  display: flex;
  flex-wrap: wrap;
}
.c-article__catItem {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  background: #333;
  border-radius: 9999px;
  padding: 8px 14px;
  margin: 0 8px 8px 0;
}
.c-article__title {
  max-width: 1120px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.77;
  padding: 0 140px 0 0;
  margin: 8px 0 0;
}
.c-article__excerpt {
  max-width: 1120px;
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 0 140px 0 0;
  margin: 20px 0 0;
}
.c-article .c-moreLink {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* --- */
.c-articleList .c-article:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .c-article__title,
  .c-article__excerpt {
    padding: 0;
  }
  .c-article .c-moreLink {
    position: static;
    text-align: right;
    margin: 40px 0 0;
  }
}

/*** faq *********************************/
.c-faq {
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  position: relative;
}
.c-faq + .c-faq {
  margin: 80px 0 0;
}
.c-faq__q {
  font-size: 1.8rem;
  line-height: 1.77;
  font-weight: 900;
  padding: 0 110px 40px 50px;
  position: relative;
}
.c-faq__q::before {
  content: "";
  display: block;
  width: 30px;
  height: 28px;
  background: url(../img/common/icon_question.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.c-faq__icon {
  display: block;
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s;
}
.c-faq__icon::before,
.c-faq__icon::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.c-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-faq.is-active .c-faq__icon {
  background: #fff;
}
.c-faq.is-active .c-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0);
  background: #333;
}
.c-faq__a {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  padding: 0 110px 40px 50px;
  display: none;
}
@media screen and (max-width: 767px) {
  .c-faq {
    padding: 0 0 40px;
  }
  .c-faq + .c-faq {
    margin: 40px 0 0;
  }
  .c-faq__q {
    padding-right: 0;
  }
  .c-faq__icon {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto;
  }
  .c-faq__a {
    padding-right: 0;
  }
}

/*** route search *********************************/
.c-rctSearch {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  padding: 64px;
  border-radius: 16px;
  margin: 0 auto;
}
.c-rctSearchForm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-rctSearchForm__item {
  flex: 1;
}
.c-rctSearchForm__dl {
  display: flex;
  align-items: center;
}
.c-rctSearchForm__dt {
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-rctSearchForm__dd {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 16px;
}
/****** select ******/
.c-rctSearchForm select {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 44px 12px 16px;
}
.c-rctSearchForm select::-ms-expand {
  display: none;
}
.c-rctSearchForm .selectBoxWrap {
  width: 100%;
  position: relative;
  margin: 8px 0;
}
.c-rctSearchForm .selectBoxWrap::before {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background: url(../img/common/icon_toggle.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-rctSearchForm__btnItem {
  width: 300px;
  min-height: 56px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: #333;
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 18px;
}
.c-rctSearchForm__btnText {
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .c-rctSearch {
    padding: 64px 24px;
  }
  .c-rctSearchForm .selectBoxWrap {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .c-rctSearch {
    padding: 24px;
  }
  .c-rctSearchForm {
    display: block;
  }
  .c-rctSearchForm__dl {
    display: block;
    margin: 0 0 14px;
  }
  .c-rctSearchForm__dd {
    display: block;
    margin: 0;
  }
  /****** select ******/
  .c-rctSearchForm .selectBoxWrap {
    margin: 16px 0;
  }
  .c-rctSearchForm__btnItem {
    width: 100%;
  }
}
/* --- */
.c-searchResult {
  margin: 40px 0 0;
}
.c-searchResult__item {
  display: flex;
}

/*** breadcrumb *********************************/
.c-breadcrumb {
  margin: 0;
}
.c-breadcrumbList {
  width: 90%;
  margin: 0 auto;
  line-height: 1.5;
}
.c-breadcrumbList__item {
  display: inline;
  vertical-align: middle;
  font-size: 1.4rem;
  position: relative;
}
.c-breadcrumbList__item:nth-of-type(n + 2)::before {
  content: "＞";
  display: inline-block;
  padding: 0 8px;
}
.c-breadcrumbList__item a {
  text-decoration: underline;
}
@media (hover: hover) {
  .c-breadcrumbList__item a:hover {
    text-decoration: none;
  }
}

/*** breadcrumb *********************************/
.c-underTitle {
  margin: 0 0 80px;
}
.c-underTitle__inner {
  width: 90%;
  margin: 0 auto;
}
.c-underTitle__heading {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  /* margin: 56px 0 0; */
}
.c-underTitle__lead {
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 70px 0 0;
}

@media screen and (max-width: 767px) {
  .c-underTitle {
    margin: 0 0 40px;
  }
  .c-underTitle__inner {
    width: 88%;
  }
  .c-underTitle__heading {
    font-size: 2.4rem;
    /* margin: 40px 0 0; */
  }
  .c-underTitle__lead {
    margin: 40px 0 0;
  }
}

/*** pagination *********************************/
.c-pagination {
  margin: 120px auto 0;
}
.c-paginationList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-paginationList__item {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  font-size: 1.8rem;
  line-height: 40px;
  font-weight: 900;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  margin: 6px 14px;
  position: relative;
}
.c-paginationList__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-paginationList__itemNum {
  display: inline-block;
  padding: 0 4px;
  position: relative;
  transition: color 0.3s;
}
/* --- prev / next --- */
.c-paginationList__item--prev,
.c-paginationList__item--next {
  min-width: auto;
  width: 24px;
  height: 24px;
  background: #333;
  transition: opacity 0.3s;
  font-size: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.c-paginationList__item--prev::before,
.c-paginationList__item--next::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 8px;
  right: 10px;
  transform: rotate(45deg);
}
.c-paginationList__item--prev {
  transform: scale(-1, 1);
  margin-right: 56px;
  margin-left: 0;
}
.c-paginationList__item--next {
  margin-right: 0;
  margin-left: 56px;
}
/* --- current --- */
.c-paginationList__item.is-current {
  color: #32ae3a;
  background-color: #fff;
}
/* --- disable --- */
.c-paginationList__item.is-disable {
  pointer-events: none;
  opacity: 0.3;
}
@media (hover: hover) {
  .c-paginationList__item a:hover {
    color: #32ae3a;
  }
  .c-paginationList__item--prev:hover,
  .c-paginationList__item--next:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin: 80px auto;
  }
  .c-paginationList__item {
    margin: 6px 2px;
  }
  .c-paginationList__item--prev {
    margin-right: 26px;
    margin-left: 0;
  }
  .c-paginationList__item--next {
    margin-right: 0;
    margin-left: 26px;
  }
}

/*** contact form *********************************/
.c-contactForm {
  max-width: 1000px;
  margin: 80px auto 0;
}
.c-contactForm__dl {
  display: flex;
  flex-wrap: wrap;
}
.c-contactForm__dl + .c-contactForm__dl {
  margin: 40px 0 0;
}
.c-contactForm__dt {
  width: 310px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 900;
  padding: 14px 16px 0 0;
}
.c-contactForm__dd {
  width: calc(100% - 310px);
  position: relative;
}
.c-contactForm__placeholder {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  -webkit-font-smoothing: antialiased;
  margin-top: 6px;
}

/****** 必須 ******/
.c-contactForm .required {
  display: block;
  padding: 0 0 0 56px;
  position: relative;
}
.c-contactForm .required::before {
  content: "必須";
  display: block;
  width: 40px;
  height: 24px;
  font-size: 1.4rem;
  line-height: 24px;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background: #e50012;
  position: absolute;
  top: 2px;
  left: 0;
}

/****** 任意 ******/
.c-contactForm .any {
  display: block;
  padding: 0 0 0 56px;
  position: relative;
}
.c-contactForm .any::before {
  content: "任意";
  display: block;
  width: 40px;
  height: 24px;
  font-size: 1.4rem;
  line-height: 24px;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background: #666;
  position: absolute;
  top: 2px;
  left: 0;
}

/****** input ******/
.c-contactForm input {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 24px 6px;
}
.c-contactForm input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
.c-contactForm input:autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
.c-contactForm input:read-only {
  background: #ccc;
}

/****** テキストエリア ******/
.c-contactForm textarea {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 15px 24px;
}

/****** placeholder ******/
.c-contactForm input::placeholder,
.c-contactForm textarea::placeholder {
  color: #9a9a9a;
  font-weight: 500;
}

/****** セレクトボックス ******/
.c-contactForm select {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 6px 32px 6px 12px;
}
.c-contactForm select::-ms-expand {
  display: none;
}
.c-contactForm__selectWrap {
  max-width: 240px;
  position: relative;
}
.c-contactForm__selectWrap::before {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background: url(../img/common/icon_toggle.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/****** ラジオボタン ******/
.c-contactForm__radioWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .radio-field,
.c-contactForm .mwform-radio-field,
.c-contactForm .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.75;
  padding: 0px 0 0px 24px;
  margin: 6px 24px 10px 0;
  position: relative;
}
.c-contactForm .mwform-radio-field.horizontal-item + .horizontal-item {
  margin: 5px 30px 15px 0;
}
.c-contactForm .radio-field label,
.c-contactForm .mwform-radio-field label,
.c-contactForm .wpcf7-radio .wpcf7-list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.c-contactForm input[type="radio"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-contactForm .radio-field-text,
.c-contactForm .mwform-radio-field-text,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label {
  display: block;
}
.c-contactForm .radio-field-text::before,
.c-contactForm .mwform-radio-field-text::before,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 0;
}
.c-contactForm .radio-field-text::after,
.c-contactForm .mwform-radio-field-text::after,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #ffaf01;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 3px;
  opacity: 0;
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
/* --- selected --- */
.c-contactForm input[type="radio"]:checked + .radio-field-text::after,
.c-contactForm input[type="radio"]:checked + .mwform-radio-field-text::after,
.c-contactForm input[type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.c-contactForm input[type="radio"]:focus + .radio-field-text::before,
.c-contactForm input[type="radio"]:focus + .mwform-radio-field-text::before,
.c-contactForm input[type="radio"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/****** チェックボックス ******/
.c-contactForm__checkWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .checkbox-field,
.c-contactForm .mwform-checkbox-field,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333;
  padding: 0px 0 0px 36px;
  margin: 6px 24px 10px 0;
  position: relative;
}
.c-contactForm .checkbox-field label,
.c-contactForm .mwform-checkbox-field label,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.c-contactForm input[type="checkbox"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-contactForm .checkbox-field-text,
.c-contactForm .mwform-checkbox-field-text,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
}
.c-contactForm .checkbox-field-text::before,
.c-contactForm .mwform-checkbox-field-text::before,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
  top: 2px;
  left: 0;
}
.c-contactForm .checkbox-field-text::after,
.c-contactForm .mwform-checkbox-field-text::after,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  border: 1px solid #fff;
  border-width: 0 0 2px 2px;
  opacity: 0;
  position: absolute;
  top: 8px;
  left: 5px;
  transform: rotate(-45deg);
}
/* --- selected --- */
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::before,
.c-contactForm
  input[type="checkbox"]:checked
  + .mwform-checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: #2e9134;
  border-color: #2e9134;
}
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::after,
.c-contactForm
  input[type="checkbox"]:checked
  + .mwform-checkbox-field-text::after,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.c-contactForm input[type="checkbox"]:focus + .checkbox-field-text::before,
.c-contactForm
  input[type="checkbox"]:focus
  + .mwform-checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/****** アップローダー ******/
.c-contactForm input[type="file"] {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  border: 0;
  background: transparent;
  padding: 6px 0;
}
.c-contactForm input[type="file"]::file-selector-button {
  width: 210px;
  height: 56px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  border: 0;
  background: #333;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 0 32px 0 0;
  text-align: center;
  cursor: pointer;
}
.c-contactForm__dl--file .wpcf7-not-valid-tip {
  display: block !important;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #df543a;
}

/****** 送信ボタン ******/
.c-contactForm__btn {
  text-align: center;
  font-size: 0;
  margin: 64px 0 0;
}
.c-contactForm__btn .c-btn .c-btn__item {
  max-width: 400px;
}

/****** validation error ******/
.c-contactForm input.is-error,
.c-contactForm select.is-error {
  border: 1px solid #df543a;
}
.c-error-txt {
  width: 100%;
}
.c-error-txt .is-error:nth-of-type(n + 2) {
  display: none !important;
}
.c-error-txt .is-error {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #df543a;
  margin: 10px 0 0;
  padding: 0px 0 0 34px;
  position: relative;
}
.c-error-txt .is-error::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_error.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/****** 個別スタイル ******/
@media screen and (min-width: 768px) {
  /* 氏名 */
  .c-contactForm__dl--name input {
    max-width: 260px;
  }
  /* 電話番号 */
  .c-contactForm__dl--tel input {
    max-width: 260px;
  }
}
/* 承認確認 */
.c-contactForm__agree {
  margin: 120px 0 0;
}
.c-contactForm__agree .c-contactForm__checkWrap {
  text-align: center;
}
.c-contactForm__agree .textBox {
  text-align: center;
  margin: 0 0 40px;
}
.c-contactForm__agree .textBox a {
  text-decoration: underline;
  color: #01a0e9;
}
@media (hover: hover) {
  .c-contactForm__agree .textBox a:hover {
    text-decoration: none;
  }
}
/****** cf7 打ち消し ******/
.wpcf7-form-control-wrap {
  display: block;
  font-size: 0;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .c-contactForm__dl {
    display: block;
  }
  .c-contactForm__dt {
    width: 100%;
    margin: 0 0 16px;
  }
  .c-contactForm__dd {
    width: 100%;
  }
  /****** アップローダー ******/
  .c-contactForm input[type="file"]::file-selector-button {
    display: block;
    width: 100%;
    margin: 0 0 16px;
  }
  /****** 個別スタイル ******/
  /* 承認確認 */
  .c-contactForm__agree {
    margin: 40px 0 0;
  }
  .c-contactForm__agree .c-contactForm__checkWrap,
  .c-contactForm__agree .textBox {
    text-align: left;
  }
}

/* == header ============================================== */
.l-header {
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.l-header__inner {
  width: 96%;
  margin: 0 auto;
}
.l-header__logo {
  display: none;
}
.l-header__contents {
  width: 100%;
}
.l-header__navWrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__nav {
  width: 100%;
  margin: 0 20px 0 0;
}
.l-header__nav .nav__contents {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  border: 1px solid #eef1f4;
  backdrop-filter: blur(6.304689884185791px);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 40px;
}
.l-header__nav .nav__logo {
  width: 140px;
  height: 34px;
  position: relative;
}
.l-header__nav .nav__logoItem {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header__nav .navList {
  display: flex;
}
.l-header__nav .navList__item {
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 0 0 0 32px;
}
.l-header__nav .navList__item a {
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .l-header__nav .navList__item a:hover {
    opacity: 0.6;
  }
}
.l-header__contents .l-header__navBtn--02 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .l-header__nav .nav__logo {
    width: 100px;
  }
  .l-header__nav .navList__item {
    font-size: 1.5rem;
    margin: 0 0 0 16px;
  }
  .l-header__contents .l-header__navBtn {
    display: none;
  }
}
@media screen and (max-width: 880px) {
  .l-header__nav .navList__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    display: block;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
  }
  .l-header__inner {
    width: 88%;
  }
  .l-header__logo {
    display: block;
    width: 125px;
    height: 38px;
    position: absolute;
    top: 10px;
    left: 20px;
  }
  .l-header__logoItem {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    background: url(../img/common/logo.png) no-repeat center;
    background-size: contain;
  }
  .l-header__contents {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(4.707809925079346px);
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
    transition: opacity 0.6s, visibility 0.6s;
  }
  .l-header__navWrap {
    display: block;
    width: 82%;
    height: 100%;
    background: #666;
    padding: 80px 40px 240px;
    margin: 0 0 0 auto;
    overflow-y: auto;
    clip-path: inset(0px 0px 0px 100%);
    transition: clip-path 0.4s;
  }
  .l-header__nav {
    margin: 0;
  }
  .l-header__nav .nav__contents {
    display: block;
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .l-header__nav .nav__logo {
    display: none;
  }
  .l-header__nav .navList {
    display: inline-block;
    margin: 0 0 40px;
  }
  .l-header__nav .navList__item {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 24px;
  }
  .l-header__nav .navList__item__text {
    display: block;
    padding: 0 24px 0 0;
    position: relative;
  }
  .l-header__nav .navList__item__text::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    border-width: 1px 1px 0 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__contents .l-header__navBtn {
    display: block;
    margin: 0 0 20px 0;
  }
  .l-header__contents .l-header__navBtn .c-btn__item {
    width: 100%;
    min-width: auto;
  }
  .l-header__contents.is-active {
    opacity: 1;
    visibility: visible;
  }
  .l-header__contents.is-active .l-header__navWrap {
    clip-path: inset(0%);
  }
}
/* --- */
.l-simpleHeader {
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.l-simpleHeader .l-inner {
  max-width: none;
}
.l-simpleHeader__logo {
  width: 140px;
  height: 34px;
  position: relative;
}
.l-simpleHeader__logoItem {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    width: 88%;
  }
  .l-simpleHeader__logo {
    width: 160px;
    height: 38px;
  }
}

/*** hamburger btn *********************************/
.c-hamburger {
  width: 46px;
  height: 34px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 5;
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
  }
}
.c-hamburger__line {
  width: 28px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 8px;
  border-radius: 4px;
  transition: all 0.4s;
}
.c-hamburger__line--1 {
  top: 8px;
}
.c-hamburger__line--2 {
  top: 16px;
}
.c-hamburger__line--3 {
  top: 24px;
}
/* --- active --- */
.c-hamburger.is-active::before {
  height: 44px;
}
.c-hamburger.is-active .c-hamburger__line {
  background: #fff;
}
.c-hamburger.is-active .c-hamburger__line--1 {
  transform: rotate(-45deg);
  top: 16px;
}
.c-hamburger.is-active .c-hamburger__line--2 {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line--3 {
  transform: rotate(45deg);
  top: 16px;
}

/* == footer ============================================== */
.l-footer {
  width: 100%;
  background: #fff;
}
.l-footer__inner {
  width: 90%;
  margin: 0 auto;
}
.l-footer__upper {
  background: url(../img/common/bg_pattern.svg) repeat #f7f7f7;
  background-size: 228px auto;
  padding: 40px 0;
}
.l-footer__logo {
  width: 100%;
  max-width: 240px;
  margin: 0 0 40px;
}
.l-footer__contents {
  display: flex;
  justify-content: space-between;
}
.l-footer__nav {
  padding: 48px 0;
}
.l-footer__nav .nav__inner {
  display: flex;
}
.l-footer__nav .navList {
  display: inline-block;
}
.l-footer__nav .navList + .navList {
  margin-left: 80px;
}
.l-footer__nav .navList__item {
  font-size: 1.4rem;
  line-height: 1.7;
}
.l-footer__nav .navList__item + .navList__item {
  margin: 32px 0 0;
}
.l-footer__nav .navList__item a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .l-footer__nav .navList__item a:hover {
    opacity: 0.6;
  }
}
.l-footer__nav .navList__item__text {
  display: block;
  padding: 0 18px 0 0;
  position: relative;
}
.l-footer__nav .navList__item__text::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #333;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.l-footer__btn {
  padding: 48px 0 48px 80px;
  margin: 0 0 0 80px;
  border: 1px solid #ccc;
  border-width: 0 0 0 1px;
}
.l-footer__btn .c-btn {
  margin: 0 0 12px;
}
.l-footer__lower {
  padding: 20px 0 100px;
}
.l-footer__lower .l-footer__inner {
  position: relative;
}
.l-footer__lower .scrollTop {
  width: 64px;
  height: 64px;
  cursor: pointer;
  border: 2px solid #32ae3a;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  position: absolute;
  top: -54px;
  right: 0;
  z-index: 1;
  transition: opacity 0.4s;
}
.l-footer__lower .scrollTop::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #32ae3a;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 28px;
  right: 26px;
  transform: rotate(-45deg);
}
.l-footer__copyright {
  font-size: 1rem;
  text-align: right;
  padding: 0 90px 0 0;
}
@media screen and (max-width: 1180px) {
  .l-footer__upper {
    padding: 80px 0;
  }
  .l-footer__upper .l-footer__inner {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .l-footer__logo {
    margin: 0 0 80px;
  }
  .l-footer__contents {
    display: block;
  }
  .l-footer__nav {
    padding: 0;
  }
  .l-footer__nav .navList + .navList {
    margin-left: 50px;
  }
  .l-footer__btn {
    border-width: 1px 0 0;
    padding: 80px 0 0 0;
    margin: 80px 0 0 0;
  }
  .l-footer__copyright {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav .nav__inner,
  .l-footer__nav .navList {
    display: block;
  }
  .l-footer__nav .navList {
    max-width: 220px;
  }
  .l-footer__nav .navList + .navList {
    margin: 32px 0 0;
  }
}
/* --- */
.l-simpleFooter {
  padding: 60px 0 100px;
}
.l-simpleFooter .l-inner {
  max-width: none;
  position: relative;
}
.l-simpleFooter .scrollTop {
  width: 64px;
  height: 64px;
  cursor: pointer;
  border: 2px solid #32ae3a;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  position: absolute;
  top: -54px;
  right: 0;
  z-index: 1;
  transition: opacity 0.4s;
}
.l-simpleFooter .scrollTop::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #32ae3a;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 28px;
  right: 26px;
  transform: rotate(-45deg);
}
.l-simpleFooter__copyright {
  font-size: 1rem;
  text-align: right;
  padding: 0 90px 0 0;
}

@media screen and (max-width: 767px) {
  .l-simpleFooter__copyright {
    text-align: left;
  }
}

/* 202605 追加 */
.c-jobCard__item .entry__summaryItem .pointList {
  margin: 0 0 40px;
}
.c-jobCard__item .entry__summaryItem .pointList__item {
  font-size: 1.8rem;
  font-weight: 750;
  line-height: 1.77;
  padding: 8px 0 4px 104px;
  position: relative;
}
.c-jobCard__item .entry__summaryItem .pointList__item + .pointList__item {
  margin: 4px 0 0;
}
.c-jobCard__item .entry__summaryItem .pointList__point {
  display: block;
  width: 74px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-jobCard__item .entry__summaryItem .pointList__pointNum {
  font-size: 4rem;
}
.c-jobCard__item .entry__summaryItem .pointList__point::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: #43d14c;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .c-jobCard__item .entry__summaryItem .pointList__item {
    padding: 0 0 2px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .c-jobCard__item
    .entry__summaryItem
    .pointList__item
    + .pointList__item {
    /* margin: 18px 0 0; */
    margin: 0;
  }
  .c-jobCard__item .entry__summaryItem .pointList__point {
    margin: 0 0 10px;
    position: relative;
    top: auto;
    left: auto;
  }
}