@charset "UTF-8";
/*================================================================
 *FILE          :page.css
 *DESCRIPTION   :resetはressを使用。環境変数とmixinは_mixin.scss内に記述。
                 それぞれfoundationよりインポート。
 *AUTHOR        :
 *--------------------------------------------------------------
 *(C)
=================================================================*/
/* フォント定設
-----------------------------------------------------------------*/
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

/*================================================================
 *FILE					:_components.scss
 *DESCRIPTION   :全ページ共通コンポーネント カスタムCSS
 *AUTHOR				:
 *--------------------------------------------------------------
 *(C)
=================================================================*/
/* 共通パーツ
-----------------------------------------------------------------*/
/*
next 矢印
------------------------------------*/
/*
ボタン
------------------------------------*/
/*
タグ
------------------------------------*/
/*
card
------------------------------------*/
/*
モーダル
------------------------------------*/
/*
チェックボックス
------------------------------------*/
/*
ページャー
------------------------------------*/
/*
jobカード
------------------------------------*/
/*
スワイパー ページャー
------------------------------------*/
/*
アーカイブ記事
------------------------------------*/
/*
シングル記事
------------------------------------*/
/*
 banner
------------------------------------*/
/*
 pickup_icon
------------------------------------*/
.c-arrow {
  -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  background-color: rgba(var(--changing-color), 1);
  --color-primary: rgba(var(--changing-color), $opacity);
  --color-secondary: rgba(var(--changing-color), $opacity);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-arrow {
      width: 30px;
      height: 30px; }
      .c-arrow.c-arrow-big {
        width: 41px;
        height: 41px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-arrow {
      width: 41px;
      height: 41px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-arrow.c-arrow-small {
      width: 20px;
      height: 20px; } }
  .c-arrow.c-arrow-blackStraight {
    background-color: #1A1A1A; }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .c-arrow.c-arrow-blackStraight {
        width: 41px;
        height: 41px; } }
  .c-arrow.c-arrow_big {
    width: 41px;
    height: 41px; }

.c-arrow_svg {
  fill: #1A1A1A; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-arrow_svg {
      width: 12px;
      height: 9px; }
      .c-arrow-big .c-arrow_svg {
        width: 14px;
        height: 11px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-arrow_svg {
      width: 14px;
      height: 11px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-arrow-small .c-arrow_svg {
      width: 10px;
      height: 7px; } }
  .c-arrow-blackStraight .c-arrow_svg {
    fill: #fff; }

.c-arrow_send {
  width: 15px;
  height: 15px;
  fill: #1A1A1A;
  translate: -1px 1px; }

.c-button {
  background-color: #1A1A1A;
  position: relative;
  text-align: center;
  padding: 21px 21px 20px;
  display: block;
  cursor: pointer; }
  .c-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease; }
  .c-button.c-buttonHoverWhite::before {
    background-color: #fff; }
  .c-button.c-buttonHoverBlue::before {
    background-color: rgba(var(--changing-color), 1); }
  @media (hover: hover) {
    .c-button:hover::before {
      height: 100%; }
    .c-button:hover.c-buttonHoverWhite .c-button_text {
      color: #1A1A1A !important; }
    .c-button:hover.c-buttonHoverWhite .c-button_icon {
      fill: #1A1A1A !important; }
    .c-button:hover.c-buttonHoverBlue .c-button_text {
      color: #1A1A1A !important; }
    .c-button:hover.c-buttonHoverBlue .c-button_icon {
      fill: #1A1A1A !important; } }
  .c-button.c-button-blue {
    -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    background-color: rgba(var(--changing-color), 1);
    --color-primary: rgba(var(--changing-color), $opacity);
    --color-secondary: rgba(var(--changing-color), $opacity); }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .c-button.c-button-blue {
        padding: 15px 20px; } }
  .c-button.c-button-white {
    background-color: #fff;
    border: 1px solid #1A1A1A; }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .c-button.c-button-white {
        padding: 15px 20px; } }
  .c-button.c-button_small {
    padding: 15px 20px; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-button.c-button_thin {
      padding: 10px 20px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-button.c-button_thin {
      padding: 12px 20px; } }

.c-button_text {
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10; }
  .c-button-blue .c-button_text,
  .c-button-white .c-button_text {
    color: #1A1A1A; }
  .c-button_small .c-button_text {
    font-size: 14px; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-button_thin .c-button_text {
      font-size: 14px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-button_thin .c-button_text {
      font-size: 16px; } }

.c-button_icon {
  position: absolute;
  right: 21px;
  top: 50%;
  translate: 0 -50%;
  fill: #fff;
  width: 14px;
  height: 10px;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  z-index: 20; }
  .c-button-blue .c-button_icon,
  .c-button-white .c-button_icon {
    fill: #1A1A1A; }
  .c-button_icon.c-button_icon_prev {
    left: 21px; }

.c-tag_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-tag_wrap {
      gap: 8px 8px;
      margin-top: 19px;
      position: relative;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .c-tag_wrap.is-hidden {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-tag_wrap {
      gap: 7px 9px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .c-tag_wrap.c-tag_wrap_card {
    margin-top: 16px; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-tags_wrap-top {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0 calc(20 / 375 * 100vw);
    margin-inline: calc(-20 / 375 * 100vw);
    overflow-x: auto;
    scrollbar-width: none; }
    .c-tags_wrap-top::-webkit-scrollbar {
      display: none; } }

.c-tag {
  border: 1px solid #1A1A1A;
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer; }
  .c-tag.c-tag-blue {
    border: 1px solid;
    -webkit-transition: border-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    transition: border-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    border-color: rgba(var(--changing-color), 1);
    --color-primary: rgba(var(--changing-color), $opacity);
    --color-secondary: rgba(var(--changing-color), $opacity);
    background-color: #fff;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease; }
    @media (hover: hover) {
      .c-tag.c-tag-blue:hover {
        -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
        transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
        background-color: rgba(var(--changing-color), 1);
        --color-primary: rgba(var(--changing-color), $opacity);
        --color-secondary: rgba(var(--changing-color), $opacity); }
        .c-tag.c-tag-blue:hover .c-tag_text {
          color: #1A1A1A; }
        .c-tag.c-tag-blue:hover .c-tag_close_icon::before, .c-tag.c-tag-blue:hover .c-tag_close_icon::after {
          background-color: #1A1A1A; } }
  @media (hover: hover) {
    .c-tag.c-tag-hoverBlack:hover {
      background-color: #1A1A1A; }
      .c-tag.c-tag-hoverBlack:hover .c-tag_text {
        color: #fff; } }
  .c-tag.is-click {
    background-color: #1A1A1A; }
  .c-tag.c-tag-blueBlack {
    -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    background-color: rgba(var(--changing-color), 1);
    --color-primary: rgba(var(--changing-color), $opacity);
    --color-secondary: rgba(var(--changing-color), $opacity);
    border: none; }
  .c-tag.is-hidden {
    display: none; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-tag_inner {
    padding: 5px 12px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .c-tag_inner {
    padding: 3px 17px 4px 16px; } }

.c-tag_inner.c-tag_inner_large {
  padding: 6px 20px 7px; }

.c-tag_close .c-tag_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px; }

.c-tag_text {
  letter-spacing: 0.1em;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-tag_text {
      font-size: 10px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-tag_text {
      font-size: 12px; } }
  .c-tag_text.c-tag_text-wrap {
    white-space: normal; }
  .c-tag-blue .c-tag_text {
    -webkit-transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    color: rgba(var(--changing-color), 1);
    --color-primary: rgba(var(--changing-color), $opacity);
    --color-secondary: rgba(var(--changing-color), $opacity); }
  .is-click .c-tag_text {
    color: #fff; }
  .c-tag-blueBlack .c-tag_text {
    color: #1A1A1A;
    font-weight: 900; }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .c-tag-blueBlack .c-tag_text {
        font-size: 12px; } }

.c-tag_close_icon {
  width: 9px;
  height: 9px;
  position: relative; }
  .c-tag_close_icon::before, .c-tag_close_icon::after {
    background-color: #1A1A1A;
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    top: 50%;
    left: 50%;
    translate: -50% -50%; }
  .c-tag_close_icon::before {
    rotate: 45deg; }
  .c-tag_close_icon::after {
    rotate: -45deg; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-tagsContent {
    position: relative; }
    .c-tagsContent::after {
      content: "";
      position: absolute;
      width: calc(20 / 375 * 100vw);
      height: 37px;
      top: 0;
      z-index: 10;
      right: calc(-20 / 375 * 100vw);
      background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, #F1F1F1));
      background: -webkit-linear-gradient(left, transparent 0%, #F1F1F1 50%);
      background: linear-gradient(to right, transparent 0%, #F1F1F1 50%); }
    .c-tagsContent::before {
      content: "";
      position: absolute;
      width: calc(20 / 375 * 100vw);
      height: 37px;
      top: 0;
      z-index: 10;
      left: calc(-20 / 375 * 100vw);
      background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, #F1F1F1));
      background: -webkit-linear-gradient(right, transparent 0%, #F1F1F1 50%);
      background: linear-gradient(to left, transparent 0%, #F1F1F1 50%); } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-tags_wrap {
    margin-top: 32px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .c-tags_wrap {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 87px; } }

.c-tags_title {
  font-family: Arial, sans-serif;
  font-weight: 900;
  -webkit-transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  color: rgba(var(--changing-color), 1);
  --color-primary: rgba(var(--changing-color), $opacity);
  --color-secondary: rgba(var(--changing-color), $opacity);
  font-size: 30px;
  letter-spacing: 0; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-tags_title {
      margin-top: -7px; } }

.c-tag_show,
.c-tag_hidden {
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-tag_show,
    .c-tag_hidden {
      font-size: 12px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-tag_show,
    .c-tag_hidden {
      font-size: 15px; } }
  .c-tag_show.is-hidden,
  .c-tag_hidden.is-hidden {
    display: none; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .is-hidden .c-tag_show {
    white-space: nowrap; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-tag_hidden {
    margin-top: 32px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .c-tag_hidden {
    margin-top: 24px; } }

.c-title_main {
  display: block;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 900;
  -webkit-transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  color: rgba(var(--changing-color), 1);
  --color-primary: rgba(var(--changing-color), $opacity);
  --color-secondary: rgba(var(--changing-color), $opacity); }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-title_main {
      font-size: 50px; }
      .c-title_main.c-title_main_big {
        font-size: 60px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-title_main {
      font-size: 100px;
      letter-spacing: 0; } }
  .c-title-black .c-title_main {
    color: #1A1A1A; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-title_main.c-title_main_br {
      line-height: 0.8; } }

.c-title_sub {
  display: block;
  font-weight: bold; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-title_sub {
      font-size: 13px;
      margin-top: 12px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-title_sub {
      font-size: 16px;
      letter-spacing: 0;
      margin-top: 14px; } }

.c-archivePager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-archivePager {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-archivePager {
      margin-top: 40px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .c-archivePager > .c-archivePager_button_wrap:nth-child(2) {
        left: 0; }
      .c-archivePager > .c-archivePager_button_wrap:nth-child(3) {
        right: 0; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .c-archivePager_button_wrap {
    position: absolute;
    top: 50%;
    translate: 0 -50%; } }

.c-archivePager_button_prev,
.c-archivePager_button_next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .c-archivePager_button_prev.disabled,
  .c-archivePager_button_next.disabled {
    opacity: 0.2;
    pointer-events: none; }

.c-archivePager_button_next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.c-archivePager_button_text {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 900; }

.c-archivePager_numbers {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 900; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-archivePager_numbers {
      font-size: 24px;
      gap: 22px;
      margin: 34px auto 0; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-archivePager_numbers {
      font-size: 20px;
      gap: 20px; } }

.c-archivePager_numbers .current {
  -webkit-transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  color: rgba(var(--changing-color), 1);
  --color-primary: rgba(var(--changing-color), $opacity);
  --color-secondary: rgba(var(--changing-color), $opacity); }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-archivePager_button_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .c-archivePager_button_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .c-archivePager_button_group .c-archivePager_button_wrap:nth-child(1) {
    left: 0; }
  .c-archivePager_button_group .c-archivePager_button_wrap:nth-child(2) {
    right: 0; } }

.c-checkbox {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer; }
  .c-checkbox:has(input:checked) {
    font-weight: 800; }
  .c-checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #1A1A1A;
    background-color: #fff;
    position: relative; }
    .c-checkbox input:checked {
      -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
      transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
      background-color: rgba(var(--changing-color), 1);
      --color-primary: rgba(var(--changing-color), $opacity);
      --color-secondary: rgba(var(--changing-color), $opacity); }
      .c-checkbox input:checked::before {
        content: '';
        position: absolute;
        background-image: url("../images/svg/check.svg");
        width: 10px;
        height: 8px;
        background-size: 10px 8px;
        background-repeat: no-repeat;
        background-position: center;
        top: 50%;
        left: 50%;
        translate: -50% -50%; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .contactForm .c-checkbox {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      align-items: baseline;
      gap: 20px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .wrapper {
    max-width: none; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .jobSearch {
    padding-bottom: 119px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .jobSearch {
    padding-bottom: 146px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .jobSearch_inner {
    padding: 0 calc(20 / 375 * 100vw); }
    .post-type-archive-job .jobSearch_inner {
      padding-top: 68px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .jobSearch_inner {
    padding: 0 80px; }
    .post-type-archive-job .jobSearch_inner {
      padding-top: 120px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .jobSearch_top_wrap {
    margin-top: 40px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .jobSearch_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .jobSearch_top_all {
    text-align: center; } }

.jobSearch_top_all_text {
  letter-spacing: 0;
  display: block;
  font-weight: 900; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_top_all_text {
      font-size: 14px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_top_all_text {
      font-size: 20px; } }
  .jobSearch_top_all_text i {
    font-size: 30px;
    font-weight: 900; }
  .jobSearch_top_all_text span {
    font-weight: 400; }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .jobSearch_top_all_text span:nth-of-type(1) {
        margin-inline: 4px; }
      .jobSearch_top_all_text span:nth-of-type(2) {
        margin-left: 5px; } }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
      .jobSearch_top_all_text span:nth-of-type(1) {
        margin-inline: 12px; }
      .jobSearch_top_all_text span:nth-of-type(2) {
        font-size: 14px;
        margin-left: 5px; } }

.jobSearch_form_follow_search {
  border: none;
  letter-spacing: 0.1em;
  font-weight: 900;
  cursor: pointer; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_form_follow_search {
      font-size: 11px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_form_follow_search {
      font-size: 14px; } }

.jobSearch_button {
  margin-top: 19px;
  width: 240px; }

.jobSearch_form {
  margin-top: 80px; }

.jobSearch_form_follow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100; }

.jobSearch_form_follow_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(26, 26, 26, 0.8); }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_form_follow_inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 29px;
      padding: 10px calc(20 / 375 * 100vw); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_form_follow_inner {
      padding: 18px 80px;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 324px 1fr;
      grid-template-columns: 1fr 324px 1fr; } }
  .jobInfo_modal .jobSearch_form_follow_inner {
    background-color: rgba(0, 0, 0, 0.8); }

.jobSearch_form_follow_reset {
  color: #fff;
  letter-spacing: 0.1em; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_form_follow_reset {
      font-size: 10px;
      margin-left: 20px;
      text-align: center;
      white-space: nowrap; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_form_follow_reset {
      font-size: 14px; } }

.jobSearch_form_follow_reset_text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  @media (hover: hover) {
    .jobSearch_form_follow_reset_text:hover {
      opacity: 0.6; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .jobSearch_filter + .jobSearch_filter {
    margin-top: 40px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .jobSearch_filter + .jobSearch_filter {
    margin-top: 80px; } }

.jobSearch_filter_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: 2px solid #1A1A1A;
  padding-bottom: 11px;
  position: relative; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_filter_head {
      gap: 12px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_filter_head {
      gap: 40px; } }

.jobSearch_filter_parent {
  font-weight: bold; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_filter_parent {
      font-size: 20px;
      letter-spacing: 0; } }

.jobSearch_filter_headLabel {
  letter-spacing: 0;
  font-weight: 800;
  cursor: pointer; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_filter_headLabel {
      font-size: 18px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_filter_headLabel {
      font-size: 30px; } }

.jobSearch_filter_head_cancel {
  opacity: 0.65;
  letter-spacing: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_filter_head_cancel {
      font-size: 10px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_filter_head_cancel {
      font-size: 12px; } }
  @media (hover: hover) {
    .jobSearch_filter_head_cancel:hover {
      opacity: 0.5; } }

.jobSearch_filter_head_icon {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  cursor: pointer; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_filter_head_icon {
      height: 40px;
      margin-top: -20px;
      translate: 0 10px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_filter_head_icon {
      height: 26px;
      translate: 0 7px; } }
  .jobSearch_filter_head_icon::after, .jobSearch_filter_head_icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #1A1A1A;
    top: 50%;
    right: 0;
    translate: -50% -50%;
    -webkit-transition: rotate 0.5s ease;
    transition: rotate 0.5s ease; }
  .is-open .jobSearch_filter_head_icon::after {
    rotate: 90deg; }

@media print, screen and (max-width: 767px) {
  .jobSearch_filter_content {
    padding: 24px 0 0;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .jobSearch_filter_content {
    padding: 40px 0 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px; } }

@media print, screen and (min-width: 1024px) {
  .jobSearch_filter_content {
    padding: 40px 0 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px; } }

@media screen and (min-width: 1280px) {
  .jobSearch_filter_content {
    padding: 40px 0 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px; } }

.jobSearch_filter_head_parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  cursor: pointer;
  position: relative; }
  .jobSearch_filter_head_parent::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    background-image: url(../images/svg/border_dotted_black.svg);
    background-position: left;
    background-repeat: repeat-x;
    height: 3px;
    width: 100%; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobSearch_filter_head_parent {
      gap: 12px;
      padding: 20px 0 11px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobSearch_filter_head_parent {
      gap: 40px;
      padding: 40px 0 12px; } }
