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

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

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

@media print, screen and (max-width: 767px) {
  .singleArticle_top {
    padding-bottom: 40px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_top {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -ms-grid-columns: 1.19fr 1fr;
    grid-template-columns: 1.19fr 1fr;
    gap: 62px;
    padding-left: calc(80 / 1280 * 100vw);
    padding-bottom: 110px;
    -webkit-box-align: self-end;
    -ms-flex-align: self-end;
    align-items: self-end; } }

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

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .singleArticle_top_image {
    aspect-ratio: 518/600;
    width: calc(518 / 1280 * 100vw);
    max-height: 600px;
    overflow: hidden; } }

.singleArticle_top_image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

@media print, screen and (max-width: 767px) {
  .singleArticle_topContents_wrap {
    padding: 0 calc(20 / 375 * 100vw);
    margin-bottom: 48px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_topContents_wrap {
    padding: 0 clamp(40px, calc(80 / 1280 * 100vw), 80px);
    max-width: 1280px;
    margin: 0 auto 120px; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_topContents {
    padding: 0 calc(20 / 375 * 100vw); } }

.singleArticle_topContents_note {
  letter-spacing: 0; }
  .single-news .singleArticle_topContents_note {
    color: #252525; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .singleArticle_topContents_note {
      font-size: 14px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .singleArticle_topContents_note {
      font-size: 16px; } }

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

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .singleArticle_topContents_image {
    margin: 48px calc(-20 / 375 * 100vw) 0; }
    .singleArticle_topContents_image img {
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

.singleArticle_topContents_lead {
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: bold; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .singleArticle_topContents_lead {
      font-size: 15px;
      margin-top: 40px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .singleArticle_topContents_lead {
      font-size: 18px;
      margin-top: 55px; } }

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

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .singleArticle_flexible {
    max-width: 1280px;
    padding: 0 clamp(40px, calc(80 / 1280 * 100vw), 80px) 40px;
    margin: 0 auto; } }

.singleArticle_flexible .singleArticle_block:has(+ .singleArticle_tags) {
  margin-bottom: 0; }

.singleArticle_flexible .singleArticle_block:last-of-type {
  margin-bottom: 0; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .singleArticle_block {
    margin-bottom: 80px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .singleArticle_block {
    margin-bottom: 160px; } }

.singleArticle_introduce {
  border-block: 2px solid #1A1A1A; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .singleArticle_introduce {
      padding: 80px 0; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_introduce_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 80px; } }

.singleArticle_introduceNode {
  display: -ms-grid;
  display: grid; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_introduceNode {
      -ms-grid-columns: 1fr 2.2fr;
      grid-template-columns: 1fr 2.2fr;
      gap: calc(15 / 375 * 100vw);
      padding: 40px 0; }
      .singleArticle_introduceNode + .singleArticle_introduceNode {
        position: relative; }
        .singleArticle_introduceNode + .singleArticle_introduceNode::before {
          content: '';
          position: absolute;
          top: 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 (min-width: 768px) and (max-width: 1023px) {
    .singleArticle_introduceNode {
      padding: 40px 0; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_introduceNode {
      -ms-grid-columns: 120px 1fr;
      grid-template-columns: 120px 1fr;
      gap: clamp(10px, calc(40 / 1280 * 100vw), 40px); } }

.singleArticle_introduceNode_image {
  aspect-ratio: 1;
  overflow: hidden; }
  .singleArticle_introduceNode_image img,
  .singleArticle_introduceNode_image svg,
  .singleArticle_introduceNode_image iframe,
  .singleArticle_introduceNode_image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .singleArticle_introduceNode_image {
      width: 100px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .singleArticle_introduceNode_image {
      width: 120px; } }

.singleArticle_introduceNode_name {
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.6; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .singleArticle_introduceNode_name {
      font-size: 15px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .singleArticle_introduceNode_name {
      font-size: 18px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .singleArticle_introduceNode_career {
    font-size: 10px;
    margin-top: 11px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .singleArticle_introduceNode_career {
    font-size: 13px;
    letter-spacing: 0;
    margin-top: 7px; } }

.singleArticle_introduceNode_career span {
  margin: 0 8px; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
  .singleArticle_introduceNode_text {
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.7; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
  .singleArticle_introduceNode_text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 24px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_freeArea_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px; }
    .single-news .singleArticle_freeArea_inner {
      -ms-grid-columns: 1fr 1.27fr;
      grid-template-columns: 1fr 1.27fr;
      gap: clamp(10px, calc(120 / 1280 * 100vw), 120px); } }

.singleArticle_freeArea {
  position: relative;
  /*================================================================
*FILE					:_single-content.scss
*DESCRIPTION   :詳細ページパーツ カスタムCSS
*AUTHOR				:
*--------------------------------------------------------------
*(C)
=================================================================*/
  /*詳細ページ共通
-----------------------------------------------------------------*/
  /*詳細ページパーツ style
-----------------------------------------------------------------*/ }
  .singleArticle_freeArea h2 {
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 2;
    font-size: 20px;
    margin-bottom: 2em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_freeArea h2 {
        line-height: 1.8; } }
    @media print, screen and (min-width: 768px) {
      .single-interview .singleArticle_freeArea h2 {
        width: calc(440 / 1280 * 100vw);
        max-width: 440px; } }
  .singleArticle_freeArea h3 {
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 900;
    line-height: 2;
    margin-bottom: 2em; }
  .singleArticle_freeArea figure {
    margin-bottom: 1.5em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_freeArea figure {
        width: 100% !important; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_freeArea figure {
        width: calc(560 / 1280 * 100vw) !important;
        max-width: 560px !important; } }
  .singleArticle_freeArea figcaption {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 14px; }
  .singleArticle_freeArea hr {
    height: 2px;
    background-color: #1A1A1A;
    position: absolute;
    left: 0; }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
      .singleArticle_freeArea hr {
        width: calc(1120 / 1280 * 100vw);
        max-width: 1120px; } }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .singleArticle_freeArea hr {
        width: 100%; } }
  .singleArticle_freeArea img {
    width: 100% !important;
    height: auto !important;
    -o-object-fit: cover;
    object-fit: cover; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_freeArea img {
        aspect-ratio: 335/359; } }
  .singleArticle_freeArea p {
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 0.7em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_freeArea p {
        font-size: 14px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_freeArea p {
        font-size: 15px; } }
    .singleArticle_freeArea p a {
      text-decoration: underline;
      text-underline-offset: 3px;
      color: #0BCECB;
      -webkit-text-decoration-color: #0BCECB;
      text-decoration-color: #0BCECB;
      -webkit-transition: color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease;
      transition: color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease;
      transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease;
      transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease; }
      .singleArticle_freeArea p a:not(.button) {
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease; }
        @media (hover: hover) {
          .singleArticle_freeArea p a:not(.button):hover {
            opacity: 0.6; } }
      .singleArticle_freeArea p a .button {
        -webkit-transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
        transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
        transition: color 0.3s ease, text-decoration-color 0.3s ease;
        transition: color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease; }
  .singleArticle_freeArea blockquote {
    position: relative;
    padding: 40px 0;
    margin-bottom: 1.5em; }
    .singleArticle_freeArea blockquote p {
      font-weight: 900; }
    .singleArticle_freeArea blockquote::after, .singleArticle_freeArea blockquote::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      width: 21px;
      height: 20px;
      background-size: 100% 100%;
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path d='M11.2-35.9q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H7.3A5.741,5.741,0,0,1,8.275-30,4.817,4.817,0,0,1,11.2-31.6Zm12.1,0q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H19.4A5.741,5.741,0,0,1,20.375-30,4.817,4.817,0,0,1,23.3-31.6Z' transform='translate(-2.4 35.9)'/></svg>") no-repeat center/contain;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path d='M11.2-35.9q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H7.3A5.741,5.741,0,0,1,8.275-30,4.817,4.817,0,0,1,11.2-31.6Zm12.1,0q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H19.4A5.741,5.741,0,0,1,20.375-30,4.817,4.817,0,0,1,23.3-31.6Z' transform='translate(-2.4 35.9)'/></svg>") no-repeat center/contain; }
    .singleArticle_freeArea blockquote::after {
      top: 0;
      left: 0;
      content: '';
      display: inline-block;
      width: 20.9px;
      height: 19.4px;
      -webkit-transition: background-color 0.3s ease;
      transition: background-color 0.3s ease;
      background-color: rgba(var(--changing-color), 1); }
      @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
        .singleArticle_freeArea blockquote::after {
          background-image: url(../images/svg/quotation_top.svg);
          background-color: transparent; } }
    .singleArticle_freeArea blockquote::before {
      bottom: 0;
      right: 0;
      display: inline-block;
      -webkit-transition: background-color 0.3s ease;
      transition: background-color 0.3s ease;
      background-color: rgba(var(--changing-color), 1);
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path id='パス_2278' data-name='パス 2278' d='M23.4-27.2v-8.4H14.6v10.25h3.9a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,14.6-20.5v4.3q4.8-.8,6.8-3.45T23.4-27.2Zm-12.1,0v-8.4H2.5v10.25H6.4a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,2.5-20.5v4.3q4.8-.8,6.8-3.45T11.3-27.2Z' transform='translate(-2.5 35.6)'/></svg>") no-repeat center/contain;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path id='パス_2278' data-name='パス 2278' d='M23.4-27.2v-8.4H14.6v10.25h3.9a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,14.6-20.5v4.3q4.8-.8,6.8-3.45T23.4-27.2Zm-12.1,0v-8.4H2.5v10.25H6.4a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,2.5-20.5v4.3q4.8-.8,6.8-3.45T11.3-27.2Z' transform='translate(-2.5 35.6)'/></svg>") no-repeat center/contain; }
      @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
        .singleArticle_freeArea blockquote::before {
          background-image: url(../images/svg/quotation_bottom.svg);
          background-color: transparent; } }
  .singleArticle_freeArea ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5em; }
    .singleArticle_freeArea ul li {
      padding-left: 20px; }
      .singleArticle_freeArea ul li::before {
        content: "・";
        color: #1A1A1A;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 15px;
        border-radius: 50%; }
  .singleArticle_freeArea ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5em;
    counter-reset: item; }
    .singleArticle_freeArea ol li {
      padding-left: 30px; }
      .singleArticle_freeArea ol li::before {
        content: counter(item) ") ";
        counter-increment: item;
        position: absolute;
        left: 0;
        top: 0;
        color: #1A1A1A;
        font-size: 15px; }
  .singleArticle_freeArea li {
    letter-spacing: 0.1em;
    line-height: 2;
    display: block;
    position: relative; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_freeArea li {
        font-size: 14px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_freeArea li {
        font-size: 15px; } }
  .singleArticle_freeArea .button {
    display: block;
    text-align: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #1A1A1A;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 900;
    padding: 8px 10px;
    border: 2px solid #1A1A1A;
    -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1), border-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), border-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    cursor: pointer;
    margin-bottom: 1.5em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_freeArea .button {
        min-width: 216px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_freeArea .button {
        min-width: 240px; } }
    @media (hover: hover) {
      .singleArticle_freeArea .button:hover {
        background-color: rgba(var(--changing-color), 1);
        border-color: rgba(var(--changing-color), 1); } }
  @media print, screen and (max-width: 767px) {
    .single-news .singleArticle_freeArea {
      padding-top: 48px; } }
  @media print, screen and (min-width: 768px) {
    .single-interview .singleArticle_freeArea h2 {
      position: absolute;
      left: 0; } }
  .singleArticle_freeArea.singleArticle_freeArea_repeat .singleArticle_freeArea_left_image {
    display: none; }

.singleArticle_freeArea_left_image {
  aspect-ratio: 1;
  overflow: hidden; }
  .singleArticle_freeArea_left_image img,
  .singleArticle_freeArea_left_image svg,
  .singleArticle_freeArea_left_image iframe,
  .singleArticle_freeArea_left_image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  @media print, screen and (min-width: 768px) {
    .singleArticle_freeArea_left_image {
      width: 100%; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_freeArea_right > h2:first-child + * {
    margin-top: 0 !important; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_dailySchedule_content_wrap {
    margin-top: 48px; } }

.singleArticle_dailySchedule_content {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_dailySchedule_content {
      -ms-grid-columns: 95px 1fr;
      grid-template-columns: 95px 1fr; }
      .singleArticle_dailySchedule_content + .singleArticle_dailySchedule_content {
        margin-top: 48px; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_dailySchedule_content {
      -ms-grid-columns: 140px 1fr;
      grid-template-columns: 140px 1fr; }
      .singleArticle_dailySchedule_content + .singleArticle_dailySchedule_content {
        margin-top: 56px; } }

.singleArticle_dailySchedule_content_time {
  -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-family: Arial, sans-serif;
  letter-spacing: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  font-weight: 900; }
  .singleArticle_dailySchedule_content_time::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #1A1A1A; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_dailySchedule_content_time::before {
        width: 30px;
        right: 10px;
        bottom: 6px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_dailySchedule_content_time::before {
        width: 40px;
        right: 20px;
        bottom: 10px; } }
  @media print, screen and (max-width: 767px) {
    .singleArticle_dailySchedule_content_time {
      font-size: 15px; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_dailySchedule_content_time {
      font-size: 20px; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_content_wrap {
    margin-top: 46px; } }

.singleArticle_qa_label {
  font-size: 50px;
  letter-spacing: 0;
  font-weight: bold;
  font-family: Arial, sans-serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -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: 767px) {
  .singleArticle_qa_question_text {
    font-size: 14px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_qa_question_text {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-weight: 900; } }

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

@media print, screen and (min-width: 768px) {
  .singleArticle_qa_content_inner + .singleArticle_qa_content_inner {
    margin-top: 56px; } }

.singleArticle_qa_wrap {
  display: -ms-grid;
  display: grid; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_qa_wrap {
      -ms-grid-columns: 1fr 2.4fr;
      grid-template-columns: 1fr 2.4fr; }
      .singleArticle_qa_wrap + .singleArticle_qa_wrap {
        margin-top: 40px; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_qa_wrap {
      -ms-grid-columns: 100px 1fr;
      grid-template-columns: 100px 1fr; }
      .singleArticle_qa_wrap + .singleArticle_qa_wrap {
        margin-top: 48px; } }

.singleArticle_qa_question_text {
  /*================================================================
*FILE					:_single-content.scss
*DESCRIPTION   :詳細ページパーツ カスタムCSS
*AUTHOR				:
*--------------------------------------------------------------
*(C)
=================================================================*/
  /*詳細ページ共通
-----------------------------------------------------------------*/
  /*詳細ページパーツ style
-----------------------------------------------------------------*/ }
  .singleArticle_qa_question_text h2 {
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 2;
    font-size: 20px;
    margin-bottom: 2em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_qa_question_text h2 {
        line-height: 1.8; } }
    @media print, screen and (min-width: 768px) {
      .single-interview .singleArticle_qa_question_text h2 {
        width: calc(440 / 1280 * 100vw);
        max-width: 440px; } }
  .singleArticle_qa_question_text h3 {
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 900;
    line-height: 2;
    margin-bottom: 2em; }
  .singleArticle_qa_question_text figure {
    margin-bottom: 1.5em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_qa_question_text figure {
        width: 100% !important; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_qa_question_text figure {
        width: calc(560 / 1280 * 100vw) !important;
        max-width: 560px !important; } }
  .singleArticle_qa_question_text figcaption {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 14px; }
  .singleArticle_qa_question_text hr {
    height: 2px;
    background-color: #1A1A1A;
    position: absolute;
    left: 0; }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
      .singleArticle_qa_question_text hr {
        width: calc(1120 / 1280 * 100vw);
        max-width: 1120px; } }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .singleArticle_qa_question_text hr {
        width: 100%; } }
  .singleArticle_qa_question_text img {
    width: 100% !important;
    height: auto !important;
    -o-object-fit: cover;
    object-fit: cover; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_qa_question_text img {
        aspect-ratio: 335/359; } }
  .singleArticle_qa_question_text p {
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 0.7em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_qa_question_text p {
        font-size: 14px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_qa_question_text p {
        font-size: 15px; } }
    .singleArticle_qa_question_text p a {
      text-decoration: underline;
      text-underline-offset: 3px;
      color: #0BCECB;
      -webkit-text-decoration-color: #0BCECB;
      text-decoration-color: #0BCECB;
      -webkit-transition: color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease;
      transition: color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease;
      transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease;
      transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease; }
      .singleArticle_qa_question_text p a:not(.button) {
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease; }
        @media (hover: hover) {
          .singleArticle_qa_question_text p a:not(.button):hover {
            opacity: 0.6; } }
      .singleArticle_qa_question_text p a .button {
        -webkit-transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
        transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
        transition: color 0.3s ease, text-decoration-color 0.3s ease;
        transition: color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease; }
  .singleArticle_qa_question_text blockquote {
    position: relative;
    padding: 40px 0;
    margin-bottom: 1.5em; }
    .singleArticle_qa_question_text blockquote p {
      font-weight: 900; }
    .singleArticle_qa_question_text blockquote::after, .singleArticle_qa_question_text blockquote::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      width: 21px;
      height: 20px;
      background-size: 100% 100%;
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path d='M11.2-35.9q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H7.3A5.741,5.741,0,0,1,8.275-30,4.817,4.817,0,0,1,11.2-31.6Zm12.1,0q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H19.4A5.741,5.741,0,0,1,20.375-30,4.817,4.817,0,0,1,23.3-31.6Z' transform='translate(-2.4 35.9)'/></svg>") no-repeat center/contain;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path d='M11.2-35.9q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H7.3A5.741,5.741,0,0,1,8.275-30,4.817,4.817,0,0,1,11.2-31.6Zm12.1,0q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H19.4A5.741,5.741,0,0,1,20.375-30,4.817,4.817,0,0,1,23.3-31.6Z' transform='translate(-2.4 35.9)'/></svg>") no-repeat center/contain; }
    .singleArticle_qa_question_text blockquote::after {
      top: 0;
      left: 0;
      content: '';
      display: inline-block;
      width: 20.9px;
      height: 19.4px;
      -webkit-transition: background-color 0.3s ease;
      transition: background-color 0.3s ease;
      background-color: rgba(var(--changing-color), 1); }
      @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
        .singleArticle_qa_question_text blockquote::after {
          background-image: url(../images/svg/quotation_top.svg);
          background-color: transparent; } }
    .singleArticle_qa_question_text blockquote::before {
      bottom: 0;
      right: 0;
      display: inline-block;
      -webkit-transition: background-color 0.3s ease;
      transition: background-color 0.3s ease;
      background-color: rgba(var(--changing-color), 1);
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path id='パス_2278' data-name='パス 2278' d='M23.4-27.2v-8.4H14.6v10.25h3.9a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,14.6-20.5v4.3q4.8-.8,6.8-3.45T23.4-27.2Zm-12.1,0v-8.4H2.5v10.25H6.4a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,2.5-20.5v4.3q4.8-.8,6.8-3.45T11.3-27.2Z' transform='translate(-2.5 35.6)'/></svg>") no-repeat center/contain;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path id='パス_2278' data-name='パス 2278' d='M23.4-27.2v-8.4H14.6v10.25h3.9a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,14.6-20.5v4.3q4.8-.8,6.8-3.45T23.4-27.2Zm-12.1,0v-8.4H2.5v10.25H6.4a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,2.5-20.5v4.3q4.8-.8,6.8-3.45T11.3-27.2Z' transform='translate(-2.5 35.6)'/></svg>") no-repeat center/contain; }
      @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
        .singleArticle_qa_question_text blockquote::before {
          background-image: url(../images/svg/quotation_bottom.svg);
          background-color: transparent; } }
  .singleArticle_qa_question_text ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5em; }
    .singleArticle_qa_question_text ul li {
      padding-left: 20px; }
      .singleArticle_qa_question_text ul li::before {
        content: "・";
        color: #1A1A1A;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 15px;
        border-radius: 50%; }
  .singleArticle_qa_question_text ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5em;
    counter-reset: item; }
    .singleArticle_qa_question_text ol li {
      padding-left: 30px; }
      .singleArticle_qa_question_text ol li::before {
        content: counter(item) ") ";
        counter-increment: item;
        position: absolute;
        left: 0;
        top: 0;
        color: #1A1A1A;
        font-size: 15px; }
  .singleArticle_qa_question_text li {
    letter-spacing: 0.1em;
    line-height: 2;
    display: block;
    position: relative; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_qa_question_text li {
        font-size: 14px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_qa_question_text li {
        font-size: 15px; } }
  .singleArticle_qa_question_text .button {
    display: block;
    text-align: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #1A1A1A;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 900;
    padding: 8px 10px;
    border: 2px solid #1A1A1A;
    -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1), border-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), border-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    cursor: pointer;
    margin-bottom: 1.5em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_qa_question_text .button {
        min-width: 216px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_qa_question_text .button {
        min-width: 240px; } }
    @media (hover: hover) {
      .singleArticle_qa_question_text .button:hover {
        background-color: rgba(var(--changing-color), 1);
        border-color: rgba(var(--changing-color), 1); } }

@media print, screen and (min-width: 768px) {
  .singleArticle_imageText {
    padding-left: clamp(40px, calc(160 / 1280 * 100vw), 160px); } }

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

@media print, screen and (min-width: 768px) {
  .singleArticle_imageText_wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr clamp(40px, calc(560 / 1280 * 100vw), 560px);
    grid-template-columns: 1fr clamp(40px, calc(560 / 1280 * 100vw), 560px);
    gap: clamp(10px, calc(120 / 1280 * 100vw), 120px); }
    .singleArticle_imageText_wrap + .singleArticle_imageText_wrap {
      margin-top: 100px; } }

.singleArticle_imageText_image {
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%; }
  .singleArticle_imageText_image img,
  .singleArticle_imageText_image svg,
  .singleArticle_imageText_image iframe,
  .singleArticle_imageText_image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  @media print, screen and (min-width: 768px) {
    .singleArticle_imageText_image {
      width: 100%; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_imageText_wysiwyg {
    margin-top: 20px; } }

.singleArticle_dialog {
  position: relative; }

.singleArticle_dialog_wrap + .singleArticle_dialog_wrap {
  margin-top: 48px; }

@media print, screen and (min-width: 768px) {
  .singleArticle_dialog_wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.27fr;
    grid-template-columns: 1fr 1.27fr;
    gap: 117px; } }

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .singleArticle_dialog_wrap {
    -ms-grid-columns: 1fr 1.4fr;
    grid-template-columns: 1fr 1.4fr; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_dialog_wysiwyg {
    margin-top: 12px; } }

.singleArticle_dialog_name {
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 900;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -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: 767px) {
    .singleArticle_dialog_name {
      font-size: 14px; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_dialog_name {
      font-size: 15px;
      text-align: right;
      position: relative; }
      .singleArticle_dialog_name::before {
        content: "";
        position: absolute;
        width: 80px;
        height: 1px;
        background-color: #1A1A1A;
        right: -100px;
        top: 14px; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_slider {
    margin-inline: calc(-20 / 375 * 100vw);
    padding-bottom: 80px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_slider {
    margin-inline: calc(-80 / 1280 * 100vw); } }

.singleArticle_swiper {
  overflow: visible !important; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_swiper {
      width: calc(200 / 375 * 100vw); } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_swiper {
      width: calc(340 / 1280 * 100vw);
      max-width: 340px; } }

.singleArticle_swiper_slide_image {
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%; }
  .singleArticle_swiper_slide_image img,
  .singleArticle_swiper_slide_image svg,
  .singleArticle_swiper_slide_image iframe,
  .singleArticle_swiper_slide_image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }

@media print, screen and (max-width: 767px) {
  .singleArticle_swiper_pagination_wrap {
    position: absolute;
    bottom: -80px;
    left: 50%;
    translate: -50% 0;
    margin: 0; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_content_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px; } }

.singleArticle_main_title {
  font-family: Arial, sans-serif;
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -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); }

.singleArticle_wysiwyg {
  /*================================================================
*FILE					:_single-content.scss
*DESCRIPTION   :詳細ページパーツ カスタムCSS
*AUTHOR				:
*--------------------------------------------------------------
*(C)
=================================================================*/
  /*詳細ページ共通
-----------------------------------------------------------------*/
  /*詳細ページパーツ style
-----------------------------------------------------------------*/ }
  .singleArticle_wysiwyg h2 {
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 2;
    font-size: 20px;
    margin-bottom: 2em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_wysiwyg h2 {
        line-height: 1.8; } }
    @media print, screen and (min-width: 768px) {
      .single-interview .singleArticle_wysiwyg h2 {
        width: calc(440 / 1280 * 100vw);
        max-width: 440px; } }
  .singleArticle_wysiwyg h3 {
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 900;
    line-height: 2;
    margin-bottom: 2em; }
  .singleArticle_wysiwyg figure {
    margin-bottom: 1.5em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_wysiwyg figure {
        width: 100% !important; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_wysiwyg figure {
        width: calc(560 / 1280 * 100vw) !important;
        max-width: 560px !important; } }
  .singleArticle_wysiwyg figcaption {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 14px; }
  .singleArticle_wysiwyg hr {
    height: 2px;
    background-color: #1A1A1A;
    position: absolute;
    left: 0; }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
      .singleArticle_wysiwyg hr {
        width: calc(1120 / 1280 * 100vw);
        max-width: 1120px; } }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
      .singleArticle_wysiwyg hr {
        width: 100%; } }
  .singleArticle_wysiwyg img {
    width: 100% !important;
    height: auto !important;
    -o-object-fit: cover;
    object-fit: cover; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_wysiwyg img {
        aspect-ratio: 335/359; } }
  .singleArticle_wysiwyg p {
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 0.7em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_wysiwyg p {
        font-size: 14px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_wysiwyg p {
        font-size: 15px; } }
    .singleArticle_wysiwyg p a {
      text-decoration: underline;
      text-underline-offset: 3px;
      color: #0BCECB;
      -webkit-text-decoration-color: #0BCECB;
      text-decoration-color: #0BCECB;
      -webkit-transition: color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease;
      transition: color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease;
      transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease;
      transition: color 0.3s ease, text-decoration-color 0.3s ease, opacity 0.3s ease, -webkit-text-decoration-color 0.3s ease; }
      .singleArticle_wysiwyg p a:not(.button) {
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease; }
        @media (hover: hover) {
          .singleArticle_wysiwyg p a:not(.button):hover {
            opacity: 0.6; } }
      .singleArticle_wysiwyg p a .button {
        -webkit-transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
        transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
        transition: color 0.3s ease, text-decoration-color 0.3s ease;
        transition: color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease; }
  .singleArticle_wysiwyg blockquote {
    position: relative;
    padding: 40px 0;
    margin-bottom: 1.5em; }
    .singleArticle_wysiwyg blockquote p {
      font-weight: 900; }
    .singleArticle_wysiwyg blockquote::after, .singleArticle_wysiwyg blockquote::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      width: 21px;
      height: 20px;
      background-size: 100% 100%;
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path d='M11.2-35.9q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H7.3A5.741,5.741,0,0,1,8.275-30,4.817,4.817,0,0,1,11.2-31.6Zm12.1,0q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H19.4A5.741,5.741,0,0,1,20.375-30,4.817,4.817,0,0,1,23.3-31.6Z' transform='translate(-2.4 35.9)'/></svg>") no-repeat center/contain;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path d='M11.2-35.9q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H7.3A5.741,5.741,0,0,1,8.275-30,4.817,4.817,0,0,1,11.2-31.6Zm12.1,0q-4.8.8-6.8,3.45t-2,7.55v8.4h8.8V-26.75H19.4A5.741,5.741,0,0,1,20.375-30,4.817,4.817,0,0,1,23.3-31.6Z' transform='translate(-2.4 35.9)'/></svg>") no-repeat center/contain; }
    .singleArticle_wysiwyg blockquote::after {
      top: 0;
      left: 0;
      content: '';
      display: inline-block;
      width: 20.9px;
      height: 19.4px;
      -webkit-transition: background-color 0.3s ease;
      transition: background-color 0.3s ease;
      background-color: rgba(var(--changing-color), 1); }
      @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
        .singleArticle_wysiwyg blockquote::after {
          background-image: url(../images/svg/quotation_top.svg);
          background-color: transparent; } }
    .singleArticle_wysiwyg blockquote::before {
      bottom: 0;
      right: 0;
      display: inline-block;
      -webkit-transition: background-color 0.3s ease;
      transition: background-color 0.3s ease;
      background-color: rgba(var(--changing-color), 1);
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path id='パス_2278' data-name='パス 2278' d='M23.4-27.2v-8.4H14.6v10.25h3.9a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,14.6-20.5v4.3q4.8-.8,6.8-3.45T23.4-27.2Zm-12.1,0v-8.4H2.5v10.25H6.4a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,2.5-20.5v4.3q4.8-.8,6.8-3.45T11.3-27.2Z' transform='translate(-2.5 35.6)'/></svg>") no-repeat center/contain;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20.9' height='19.4' viewBox='0 0 20.9 19.4'><path id='パス_2278' data-name='パス 2278' d='M23.4-27.2v-8.4H14.6v10.25h3.9a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,14.6-20.5v4.3q4.8-.8,6.8-3.45T23.4-27.2Zm-12.1,0v-8.4H2.5v10.25H6.4a5.741,5.741,0,0,1-.975,3.25A4.817,4.817,0,0,1,2.5-20.5v4.3q4.8-.8,6.8-3.45T11.3-27.2Z' transform='translate(-2.5 35.6)'/></svg>") no-repeat center/contain; }
      @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
        .singleArticle_wysiwyg blockquote::before {
          background-image: url(../images/svg/quotation_bottom.svg);
          background-color: transparent; } }
  .singleArticle_wysiwyg ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5em; }
    .singleArticle_wysiwyg ul li {
      padding-left: 20px; }
      .singleArticle_wysiwyg ul li::before {
        content: "・";
        color: #1A1A1A;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 15px;
        border-radius: 50%; }
  .singleArticle_wysiwyg ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5em;
    counter-reset: item; }
    .singleArticle_wysiwyg ol li {
      padding-left: 30px; }
      .singleArticle_wysiwyg ol li::before {
        content: counter(item) ") ";
        counter-increment: item;
        position: absolute;
        left: 0;
        top: 0;
        color: #1A1A1A;
        font-size: 15px; }
  .singleArticle_wysiwyg li {
    letter-spacing: 0.1em;
    line-height: 2;
    display: block;
    position: relative; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_wysiwyg li {
        font-size: 14px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_wysiwyg li {
        font-size: 15px; } }
  .singleArticle_wysiwyg .button {
    display: block;
    text-align: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #1A1A1A;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 900;
    padding: 8px 10px;
    border: 2px solid #1A1A1A;
    -webkit-transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1), border-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), border-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    cursor: pointer;
    margin-bottom: 1.5em; }
    @media print, screen and (max-width: 767px) {
      .singleArticle_wysiwyg .button {
        min-width: 216px; } }
    @media print, screen and (min-width: 768px) {
      .singleArticle_wysiwyg .button {
        min-width: 240px; } }
    @media (hover: hover) {
      .singleArticle_wysiwyg .button:hover {
        background-color: rgba(var(--changing-color), 1);
        border-color: rgba(var(--changing-color), 1); } }
  .singleArticle_wysiwyg h2 {
    width: auto !important; }
  .singleArticle_wysiwyg > :last-child {
    margin-bottom: 0 !important; }

@media print, screen and (max-width: 767px) {
  .singleArticle_tags_wrap {
    margin-top: 40px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_tags_wrap {
    margin-top: 0; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_tags {
    margin-top: 80px; } }

@media print, screen and (min-width: 768px) {
  .singleArticle_tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 87px;
    max-width: 1280px;
    margin: 160px auto 0; } }

.singleArticle_tags_title {
  font-family: Arial, sans-serif;
  -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;
  font-weight: 900; }

.singleArticle_button {
  border-top: 2px solid #1A1A1A;
  margin: 0 auto; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_button {
      padding-top: 41px;
      max-width: calc(335 / 375 * 100vw); } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_button {
      padding-top: 64px;
      width: calc(1120 / 1280 * 100vw);
      max-width: 1120px; } }

.singleArticle_button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_button_wrap {
      gap: 12px; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_button_wrap {
      gap: 20px; } }

.singleArticle_button_text {
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 900; }
  @media print, screen and (max-width: 767px) {
    .singleArticle_button_text {
      font-size: 15px; } }
  @media print, screen and (min-width: 768px) {
    .singleArticle_button_text {
      font-size: 20px; } }

.singleArticle_more {
  -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) {
    .singleArticle_more {
      padding: 66px 0 80px;
      margin-top: 134px; }
      .singleArticle_more .c-title_main {
        line-height: 0.8; }
      .singleArticle_more .c-title_sub {
        margin-top: 17px; } }
  @media print, screen and (min-width: 1024px) {
    .singleArticle_more {
      padding: 138px 0 160px;
      margin-top: 240px; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_more_inner {
    padding: 0 calc(20 / 375 * 100vw); } }

@media print, screen and (min-width: 768px) {
  .singleArticle_more_inner {
    padding: 0 clamp(40px, calc(80 / 1280 * 100vw), 80px);
    max-width: 1280px;
    margin: 0 auto; } }

@media print, screen and (max-width: 767px) {
  .singleArticle_more_list {
    margin-top: 64px; } }

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .singleArticle_more_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    margin-top: 64px; } }

@media print, screen and (min-width: 1024px) {
  .singleArticle_more_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, calc(80 / 1280 * 100vw), 80px);
    margin-top: 80px; }
    .single-news .singleArticle_more_list {
      gap: clamp(20px, calc(50 / 1280 * 100vw), 50px); }
    .singleArticle_more_list .c-card:nth-child(n + 4) {
      display: none; } }

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

.c-swiper_pagination_wrap {
  width: 244px;
  height: 41px;
  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: 767px) {
    .home .c-swiper_pagination_wrap {
      margin: 48px auto 0;
      translate: calc(10 / 375 * 100vw) 0; } }
  @media print, screen and (min-width: 768px) {
    .home .c-swiper_pagination_wrap {
      margin: 48px auto 0; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1023px) and (orientation: portrait) {
    .c-swiper_pagination_wrap {
      margin: 48px calc(-20 / 375 * 100vw) 0; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1024px) {
    .c-swiper_pagination_wrap {
      margin: 40px auto 0; }
      .home .c-swiper_pagination_wrap {
        margin: 40px 0 0; } }

.c-swiper_pagination {
  position: relative !important;
  bottom: 0 !important; }

.swiper_pagination_separator {
  display: inline-block;
  width: 2px;
  height: 25px;
  background-color: #1A1A1A;
  translate: 0 5px; }

.swiper-pagination-current,
.swiper-pagination-total {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 900; }

.swiper-pagination-total {
  margin-left: 20px; }

.swiper-pagination-current {
  margin-right: 20px; }

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