@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; } }

.c-modal {
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease; }
  .c-modal.is-modal-open {
    opacity: 1;
    visibility: visible; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-modal.c-modal_secondary {
      height: calc(100dvh - 56px);
      padding: 20px 20px 0; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-modal.c-modal_secondary {
      height: calc(100dvh - 80px);
      padding: 20px 20px 0; } }

.c-modal_inner {
  width: 100%;
  height: 100%;
  background-color: #F1F1F1;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none; }
  .c-modal_inner::-webkit-scrollbar {
    display: none; }

.c-modal_close {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  cursor: pointer; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-modal_close {
      top: 30px;
      right: 30px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-modal_close {
      top: 60px;
      right: 60px; } }

.c-modal_close_text {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 900; }

.c-modal_close_icon {
  -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);
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%; }
  .c-modal_close_icon::after, .c-modal_close_icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #1A1A1A;
    top: 50%;
    left: 50%;
    translate: -50% -50%; }
  .c-modal_close_icon::after {
    rotate: 45deg; }
  .c-modal_close_icon::before {
    rotate: -45deg; }

.jobInfo_node_link {
  display: block; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobInfo_node_link {
      padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) 20px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobInfo_node_link {
      padding: 20px 20px 30px; } }

.jobInfo_node {
  background-color: #fff;
  cursor: pointer;
  position: relative; }
  .jobInfo_node:nth-child(n + 4) .pickup_icon {
    display: none; }
  @media print, screen and (max-width: 767px) {
    .jobInfo_node + .jobInfo_node {
      margin-top: 40px; } }
  @media (hover: hover) {
    .jobInfo_node:hover .jobInfo_node_image img {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); } }

.jobInfo_node_image {
  aspect-ratio: 1.66845;
  overflow: hidden;
  overflow: hidden;
  width: 100%; }
  .jobInfo_node_image img,
  .jobInfo_node_image svg,
  .jobInfo_node_image iframe,
  .jobInfo_node_image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .jobInfo_node_image img {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }

.jobInfo_node_category_wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px; }

.jobInfo_node_title {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-top: 12px; }

.jobInfo_node_detail_wrap {
  margin-top: 21px; }

.jobInfo_node_detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 80px 1fr; }
  .jobInfo_node_detail + .jobInfo_node_detail {
    margin-top: 12px; }

.jobInfo_node_detail_label {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 1.3; }

.jobInfo_node_detail_value {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.3; }

.jobInfo_node_tags {
  margin-top: 20px; }

.jobInfo_noResult_text {
  margin-top: 80px;
  letter-spacing: 0;
  font-weight: 800; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .jobInfo_noResult_text {
      font-size: 20px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .jobInfo_noResult_text {
      font-size: 30px; } }

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

@media print, screen and (max-width: 767px) {
  .c-card + .c-card {
    margin-top: 56px; } }

@media (hover: hover) {
  .c-card_link:hover .c-card_image img {
    scale: 1.05; } }

.c-card_image {
  overflow: hidden; }
  .c-card_image img {
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease; }
  .c-card_interview .c-card_image {
    aspect-ratio: 0.86486;
    overflow: hidden; }
    .c-card_interview .c-card_image img,
    .c-card_interview .c-card_image svg,
    .c-card_interview .c-card_image iframe,
    .c-card_interview .c-card_image video {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
  .c-card_news .c-card_image {
    aspect-ratio: 1;
    overflow: hidden; }
    .c-card_news .c-card_image img,
    .c-card_news .c-card_image svg,
    .c-card_news .c-card_image iframe,
    .c-card_news .c-card_image video {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }

.c-card_contents_top_text {
  margin-top: 20px;
  letter-spacing: 0; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-card_contents_top_text {
      font-size: 13px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-card_contents_top_text {
      font-size: 12px; } }

.c-card_contents_title {
  font-weight: 900;
  letter-spacing: 0; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-card_contents_title {
      font-size: 20px;
      line-height: 1.7;
      margin-top: 12px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-card_contents_title {
      font-size: 20px;
      line-height: 1.6;
      margin-top: 8px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .archiveArticle_inner {
    padding: 0 calc(20 / 375 * 100vw);
    overflow: hidden; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .archiveArticle_inner {
    padding: 0 80px; } }

.archiveArticle_title {
  border-bottom: 2px solid #1A1A1A;
  padding-bottom: 80px; }

.archiveArticle_card_list {
  border-bottom: 2px solid #1A1A1A; }
  @media print, screen and (max-width: 767px) {
    .archiveArticle_card_list {
      margin-top: 56px;
      padding-bottom: 56px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1023px) {
    .archiveArticle_card_list {
      margin-top: 56px;
      padding-bottom: 56px;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 56px; } }
  @media print, screen and (min-width: 1024px) {
    .archiveArticle_card_list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      gap: 80px;
      margin: 96px auto 0;
      padding-bottom: 120px;
      max-width: 1120px; } }
  @media screen and (min-width: 1680px) {
    .post-type-archive-interview .archiveArticle_card_list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
      max-width: 1520px; } }
  @media screen and (min-width: 1760px) {
    .post-type-archive-news .archiveArticle_card_list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
      max-width: 1600px; } }

.archiveArticle_card_item {
  position: relative; }
  @media print, screen and (max-width: 767px) {
    .archiveArticle_card_item + .archiveArticle_card_item {
      margin-top: 56px; } }

.archiveArticle_card_item_new {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -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);
  position: absolute;
  top: -20px;
  left: -20px;
  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;
  z-index: 10; }

.archiveArticle_card_item_newText {
  font-size: 14px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.1; }

@media screen and (min-width: 1760px) {
  .wrapper {
    max-width: 1760px; } }
