@charset "UTF-8";

/*共通スタイル*/
/* main colors */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #1F1F1F;
  line-height: 1.75;
  font-size: 14px;
  font-feature-settings: "palt";
}

@media (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 1.75;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

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

a:hover {
  cursor: pointer !important;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .container-base {
    max-width: 1268px;
    padding: 0 40px;
  }
}

.container-max {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .container-max {
    max-width: 1400px;
    padding: 0 40px;
  }
}

.br_pc {
  display: none;
}

@media (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.br_sp {
  display: block;
}

@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.btn {
  border-radius: 4px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #222222;
  padding: 8px 28px;
  width: 100%;
  max-width: 280px;
  transition: background-color 0.3s ease;
  border: none;
}

@media (min-width: 920px) {
  .btn {
    max-width: none;
    border-radius: 8px;
    padding: 26px 28px;
  }
}

.btn_txt {
  font-size: 18px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

@media (min-width: 920px) {
  .btn_txt {
    font-size: 22px;
  }
}

.btn_icon {
  width: 28px;
  height: 28px;
  background-color: #fff;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: backgound-color 0.3s ease;
}

@media (min-width: 920px) {
  .btn_icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 919px) {
  .btn.sp_center {
    margin: 0 auto;
  }
}

.btn_small {
  border-radius: 4px;
  padding: 10px 20px;
}

.btn_small .btn_txt {
  font-size: 16px;
}

@media (min-width: 920px) {
  .btn:hover {
    background-color: #7876CF;
  }
}

.btn_white {
  background-color: #fff;
  border: 1px solid #222222;
}

.btn_white .btn_txt {
  color: #1F1F1F;
}

.btn_white .btn_icon {
  background-color: #1F1F1F;
}

@media (min-width: 920px) {
  .btn_white:hover {
    background-color: #F5F5F5;
  }
}

.linkLine {
  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

@media (min-width: 920px) {
  .linkLine:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

@media (min-width: 920px) {
  .linkLine_white {
    background-image: linear-gradient(#fff, #fff);
  }
}

.underline {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.underline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

@media (min-width: 920px) {

  .underline:hover::after,
  .underline:focus-visible::after {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

.draw_arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.home_link {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  border-radius: 4px;
  text-decoration: none;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .home_link {
    gap: 16px;
  }
}

.home_link_txt {
  position: relative;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

@media (min-width: 920px) {
  .home_link_txt {
    font-size: 18px;
  }
}

@media (min-width: 920px) {
  .home_link_txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #222222;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
}

.home_link_icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: #222222;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .home_link_icon {
    width: 48px;
    height: 48px;
  }
}

.home_link_icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #fff;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .home_link_icon::before {
    width: 32px;
    height: 32px;
  }
}

.home_link_center {
  margin: 0 auto;
}

@media (max-width: 919px) {
  .home_link.sp_center {
    margin: 0 auto;
  }
}

@media (min-width: 920px) {
  .home_link:hover .home_link_txt::after {
    transform: scaleX(1);
  }
}

@media (min-width: 920px) {
  .home_link:hover .home_link_icon {
    background-color: #7876CF;
  }
}

/* ヘッダーのスタイル */
.site_header {
  width: 100%;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #DBDBDB;
}

@media (min-width: 1200px) {
  .site_header {
    padding: 16px 24px 16px 40px;
  }
}

@media (max-width: 599px) {
  .site_header_logo {
    max-width: 70px;
  }
}

@media (max-width: 1299px) {
  .site_header_logo {
    max-width: 80px;
  }
}

.site_header_logo_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1299px) {
  .site_header_logo_wrap {
    gap: 8px;
  }
}

@media (max-width: 1299px) {
  .site_header_logo_sub {
    max-width: 156px;
  }
}

.global_nav {
  position: relative;
  z-index: 99;
  /*
   * 閉じている時に表示する3本線
   */
}

.global_nav_toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  display: block;
  position: relative;
  z-index: 1001;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

@media (min-width: 920px) {
  .global_nav_toggle {
    display: none;
  }
}

.global_nav_toggle_bar {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  right: 50%;
  border-radius: 10px;
  background: #222222;
  transform: translateX(50%);
}

.global_nav_toggle_bar-top {
  top: 9px;
}

.global_nav_toggle_bar-mid {
  top: 50%;
  transform: translate(50%, -50%);
}

.global_nav_toggle_bar-btm {
  bottom: 9px;
}

.global_nav {
  /*
   * メニュー表示中は3本線を非表示
   *
   * 回転や移動はさせず、
   * 表示だけ切り替える
   */
}

@media (max-width: 919px) {
  .global_nav.is-open .global_nav_toggle {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.global_nav {
  /*
   * SPナビゲーション背景
   */
}

@media (max-width: 919px) {
  .global_nav_overlay {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.38);
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
}

@media (max-width: 919px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.global_nav {
  /*
   * ナビゲーション内側
   */
}

@media (max-width: 919px) {
  .global_nav_container {
    width: 100%;
    min-height: 100%;
    padding: 16px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 919px) {
  .global_nav_panel {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
}

.global_nav_panel_head {
  display: none;
}

@media (max-width: 919px) {
  .global_nav_panel_head {
    min-height: 64px;
    padding: 14px 16px 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #DBDBDB;
  }
}

@media (max-width: 919px) {
  .global_nav_panel_logo {
    width: 79px;
    display: block;
  }
}

.global_nav_panel_logo img {
  width: 100%;
  height: auto;
  display: block;
}

.global_nav {
  /*
   * 開いている時に表示する別の×ボタン
   */
}

.global_nav_close {
  display: none;
}

@media (max-width: 919px) {
  .global_nav_close {
    width: 36px;
    height: 36px;
    padding: 0;
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 1102;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
  }
}

@media (max-width: 919px) {
  .global_nav_close_bar {
    width: 28px;
    height: 2px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    background: #222222;
    pointer-events: none;
  }
}

@media (max-width: 919px) {
  .global_nav_close_bar-01 {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

@media (max-width: 919px) {
  .global_nav_close_bar-02 {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.global_nav {
  /*
   * PC・SP共通のメニュー一覧
   */
}

.global_nav_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

@media (max-width: 919px) {
  .global_nav_list {
    gap: 0;
    padding: 24px 20px 40px;
  }
}

@media (min-width: 920px) {
  .global_nav_list {
    width: auto;
    flex-direction: row;
    gap: 10px;
  }
}

@media (min-width: 1200px) {
  .global_nav_list {
    gap: 20px;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item {
    display: block;
    border-bottom: 1px dashed #E1E1E1;
  }
}

@media (min-width: 920px) {
  .global_nav_list_item {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item--company {
    order: 1;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item--interview {
    order: 2;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item--about {
    order: 3;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item--news {
    order: 4;
  }
}

.global_nav_list_item--privacy {
  display: none;
}

@media (max-width: 919px) {
  .global_nav_list_item--privacy {
    display: block;
    order: 5;
    border-bottom: none;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item--privacy .global_nav_list_link {
    font-size: 12px;
    padding-bottom: 0;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item--contact {
    order: 6;
    margin-top: 24px;
    border-bottom: none;
  }
}

@media (max-width: 919px) {
  .global_nav_list_item_btn {
    border-bottom: none;
  }
}

.global_nav_list {
  /*
   * 共通メニューリンク
   */
}

.global_nav_list_link {
  display: block;
  position: relative;
  overflow: hidden;
  color: #222222;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

@media (max-width: 919px) {
  .global_nav_list_link {
    width: 100%;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 16px;
  }
}

@media (min-width: 920px) {
  .global_nav_list_link {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .global_nav_list_link {
    font-size: 16px;
  }
}

@media (max-width: 919px) {

  .global_nav_list_link.linkLine::before,
  .global_nav_list_link.linkLine::after {
    display: none;
  }
}

.global_nav_list_link_btn {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #222222;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 919px) {
  .global_nav_list_link_btn {
    width: 100%;
    min-height: 52px;
    padding: 12px 24px;
    border-color: #7b72d6;
    background-color: #7b72d6;
    color: #fff;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .global_nav_list_link_btn {
    padding: 12px 19px;
  }
}

@media (min-width: 920px) {
  .global_nav_list_link_btn:hover {
    background-color: #7b72d6;
  }
}

.global_nav_list {
  /*
   * メニュー文字
   */
}

.global_nav_list_txt {
  display: inline;
}

@media (max-width: 919px) {
  .global_nav_list_txt {
    display: block;
  }
}

.global_nav_list_icon {
  display: none;
}

@media (max-width: 919px) {
  .global_nav_list_icon {
    display: block;
  }
}

.global_nav_list {
  /*
   * 右側矢印画像
   */
}

.global_nav_list_icon {
  display: none;
}

@media (max-width: 919px) {
  .global_nav_list_icon {
    width: 22px;
    height: auto;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
  }
}

.global_nav_list {
  /*
   * お問い合わせボタン内の矢印を白にする
   */
}

@media (max-width: 919px) {
  .global_nav_list_item--contact .global_nav_list_icon {
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 919px) {

  html.is-menu-open,
  body.is-menu-open {
    overflow: hidden;
  }
}

/*フッターのスタイル*/
.work_section {
  padding: 60px 0;
  background-color: #fff;
  background-image: linear-gradient(#F5F5F5 2px, transparent 2px), linear-gradient(90deg, #F5F5F5 2px, transparent 2px);
  background-size: 12px 12px;
}

@media (min-width: 920px) {
  .work_section {
    padding: 80px 0;
  }
}

.work_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .work_list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    max-width: none;
    margin: 0;
  }
}

.work_list_item {
  min-width: 0;
  position: relative;
  padding-top: 50px;
}

@media (min-width: 920px) {
  .work_list_item {
    padding-top: 58px;
  }
}

@media (min-width: 920px) {
  .work_list_item:first-child {
    width: 43.1818181818%;
  }
}

@media (min-width: 920px) {
  .work_list_item:last-child {
    width: 52.1043771044%;
  }
}

.work_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px 30px;
  background-color: #fff;
  border: 2px solid #1F1F1F;
  border-radius: 12px;
  box-shadow: 8px 8px 0 #1F1F1F;
  text-align: center;
}

@media (min-width: 920px) {
  .work_card {
    min-height: min(384px, 32vw);
    padding: min(60px, 5.4545454545vw) min(48px, 4.3636363636vw) min(60px, 5.4545454545vw);
  }
}

.work_card.is_purple .work_card_ttl span {
  color: #6960f8;
}

.work_card.is_purple .work_card_ttl span::before {
  background-image: url("..//img/common/text_circle_purple.svg");
}

.work_card.is_orange .work_card_ttl span {
  color: #ff8a00;
}

.work_card.is_orange .work_card_ttl span::before {
  background-image: url("..//img/common/text_circle_orange.svg");
}

@media (min-width: 920px) {
  .work_card.is_orange .btn:hover {
    background-color: #ff8a00;
  }
}

.work_card .btn {
  padding: 18px 10px;
  width: 100%;
  max-width: 379px;
  margin: 0 auto;
}

.work_card_clip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 919px) {
  .work_card_clip {
    width: 80px;
  }
}

.work_card_ttl {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
  z-index: 1;
}

@media (min-width: 920px) {
  .work_card_ttl {
    font-size: min(24px, 2.1818181818vw);
    margin-bottom: 14px;
  }
}

.work_card_ttl span {
  position: relative;
  z-index: -1;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .work_card_ttl span {
    font-size: min(40px, 3.6363636364vw);
  }
}

.work_card_ttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 188px;
  height: 60px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

@media (min-width: 920px) {
  .work_card_ttl span::before {
    width: min(304px, 27.6363636364vw);
    height: min(97px, 8.8181818182vw);
  }
}

.work_card_txt {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}

@media (min-width: 920px) {
  .work_card_txt {
    font-size: min(16px, 1.4545454545vw);
    margin-bottom: 26px;
  }
}

.contact_cta {
  padding: 60px 0;
  text-align: center;
}

@media (min-width: 920px) {
  .contact_cta {
    padding: 90px 0;
  }
}

.contact_cta_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 664px;
  padding: 40px 20px;
  margin: 0 auto;
  color: #fff;
  background-color: #7876cf;
  border-radius: 8px;
  box-shadow: 8px 8px 0 #1F1F1F;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 920px) {
  .contact_cta_link {
    border-radius: 12px;
    padding: min(40px, 3.3333333333vw);
    min-height: min(163px, 13.5833333333vw);
  }
}

@media (min-width: 920px) {
  .contact_cta_link:hover {
    transform: translate(8px, 8px);
    box-shadow: 0 0 0 #1F1F1F;
  }
}

.contact_cta_link_txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .contact_cta_link_txt {
    font-size: min(36px, 3vw);
  }
}

.contact_cta_link_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 920px) {
  .contact_cta_link_icon {
    right: 40px;
    width: 34px;
    height: 34px;
    border-radius: 4px;
  }
}

.contact_cta_link_icon::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #fff;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: transform 0.2s ease;
}

@media (min-width: 920px) {
  .contact_cta_link_icon::before {
    width: 34px;
    height: 34px;
  }
}

.footer {
  background-color: #fff;
}

@media (min-width: 920px) {
  .footer {
    padding: 0 min(60px, 5vw);
  }
}

.footer_inr {
  padding: 50px 20px 14px;
  color: #fff;
  background-color: #1F1F1F;
  border-radius: 12px 12px 0 0;
}

@media (min-width: 920px) {
  .footer_inr {
    padding: min(58px, 4.8333333333vw) min(60px, 5vw) min(18px, 1.5vw);
    border-radius: 20px 20px 0 0;
  }
}

.footer_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid #cfcfcf;
}

@media (min-width: 920px) {
  .footer_top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer_logo_link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.footer_logo img {
  display: block;
  width: 287px;
  max-width: 100%;
  height: auto;
}

.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 920px) {
  .footer_nav {
    flex-direction: row;
    gap: min(60px, 5vw);
  }
}

.footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

@media (min-width: 920px) {
  .footer_nav_list {
    gap: 30px;
    align-items: unset;
  }
}

@media (max-width: 919px) {
  .footer_nav_list:first-child {
    flex-direction: row;
  }
}

.footer_nav_item {
  min-width: 0;
}

.footer_nav_link {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-decoration: none;
}

@media (min-width: 920px) {
  .footer_nav_link {
    font-size: 18px;
  }
}

.footer_nav_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #fff;
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 920px) {
  .footer_nav_contact {
    min-height: 43px;
    font-size: 16px;
    padding: 8px 24px;
  }
}

@media (min-width: 920px) {
  .footer_nav_contact:hover {
    background-color: #7b72d6;
    color: #fff;
    border-color: #7b72d6;
  }
}

.footer_nav_privacy {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-decoration: none;
}

.footer_bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  align-items: center;
  padding-top: 12px;
}

@media (min-width: 920px) {
  .footer_bottom {
    padding-top: 24px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer_copy {
  margin: 0;
  font-size: 10px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 920px) {
  .footer_copy {
    font-size: 14px;
  }
}

.interview_archive {
  padding-bottom: 80px;
}

@media (min-width: 920px) {
  .interview_archive {
    padding-bottom: 120px;
  }
}

.interview_archive_filter {
  margin: 0 0 72px;
  padding: 36px 40px 42px;
  border-radius: 8px;
  background: #f5f5f5;
}

.interview_archive_filter_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.interview_archive_filter_ttl {
  font-size: 24px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.interview_archive_filter_icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.interview_archive_filter_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  transform: translateY(-50%);
}

.interview_archive_filter_form {
  margin: 0;
}

.interview_archive_filter_note {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.interview_archive_filter_block {
  margin-bottom: 34px;
}

.interview_archive_filter_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.interview_archive_filter_label_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/interview/icon_search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.interview_archive_filter_keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview_archive_filter_keyword label {
  display: block;
  cursor: pointer;
}

.interview_archive_filter_keyword input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interview_archive_filter_keyword input:checked+span {
  background: #7876cf;
  color: #fff;
  font-weight: 500;
}

.interview_archive_filter_keyword input:focus-visible+span {
  outline: 2px solid #7876cf;
  outline-offset: 2px;
}

.interview_archive_filter_keyword span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  line-height: 1.2;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.interview_archive_filter_btns {
  display: flex;
  justify-content: center;
  gap: 17px;
}

.interview_archive_filter_submit {
  max-width: 328px;
  padding: 19px 20px;
}

.interview_archive_filter_reset {
  max-width: 214px;
  padding: 19px 20px;
  background-color: #e1e1e1;
}

.interview_archive_filter_reset .btn_txt {
  color: #1F1F1F;
}

.interview_archive_filter_submit_icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 8px;
}

.interview_archive_filter_submit_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.interview_archive_filter_submit_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.interview_archive_count {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .interview_archive_count {
    margin-bottom: 40px;
    font-size: 18px;
  }
}

.interview_archive_count .num {
  color: #7876cf;
  font-size: 24px;
  margin-left: 4px;
}

@media (min-width: 920px) {
  .interview_archive_count .num {
    font-size: 32px;
    margin-left: 12px;
  }
}

.interview_archive_count .small {
  font-size: 14px;
}

@media (min-width: 920px) {
  .interview_archive_count .small {
    font-size: 16px;
  }
}

.interview_archive_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 600px) {
  .interview_archive_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 920px) {
  .interview_archive_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 54px;
  }
}

.interview_archive_item {
  min-width: 0;
}

.interview_archive_card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.interview_archive_card_img {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 4px;
  aspect-ratio: 360/204;
}

@media (min-width: 920px) {
  .interview_archive_card_img {
    margin-bottom: 15px;
    border-radius: 8px;
  }
}

.interview_archive_card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interview_archive_card_img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.interview_archive_card:hover .interview_archive_card_img img {
  transform: scale(1.05);
}

.interview_archive_card_overlay {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding-right: 12px;
  z-index: 1;
  color: #fff;
}

@media (min-width: 920px) {
  .interview_archive_card_overlay {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }
}

.interview_archive_card_overlay_ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  font-family: fot-tsukuardgothic-std, sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 920px) {
  .interview_archive_card_overlay_ttl {
    font-size: 18px;
  }
}

.interview_archive_card_company {
  margin-bottom: 8px;
  line-height: 1.5;
}

.interview_archive_card_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  font-family: fot-tsukuardgothic-std, sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 920px) {
  .interview_archive_card_ttl {
    font-size: 20px;
  }
}

.interview_archive_card_keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px dashed #1F1F1F;
  list-style: none;
}

.interview_archive_card_keywords li {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 12px;
  line-height: 1.2;
}

.interview_archive_empty {
  margin: 0;
  padding: 56px 24px;
  border-radius: 6px;
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.interview_content>*:last-child {
  margin-bottom: 0 !important;
}

.interview_detail {
  padding: 24px 0 96px;
}

.interview_detail_layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 80px;
}

@media (min-width: 920px) {
  .interview_detail_layout {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}

@media (min-width: 920px) {
  .interview_detail_side {
    width: 100%;
    display: block;
    max-width: 264px;
  }
}

.interview_detail_side_inr {
  position: sticky;
  top: 100px;
}

@media (min-width: 920px) {
  .interview_detail_main {
    width: 71.0437710438%;
  }
}

.interview_detail_head {
  margin-bottom: 30px;
}

@media (min-width: 920px) {
  .interview_detail_head {
    margin-bottom: 74px;
  }
}

.interview_detail_ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  font-family: fot-tsukuardgothic-std, sans-serif;
  margin-bottom: 12px;
}

@media (min-width: 920px) {
  .interview_detail_ttl {
    font-size: min(36px, 3vw);
    margin-bottom: 16px;
  }
}

.interview_detail_meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.interview_detail_date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.interview_detail_date_icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/interview/icon_calendar.svg") no-repeat center/contain;
}

.interview_detail_meta {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .interview_detail_meta {
    margin-bottom: 28px;
  }
}

.interview_detail_mv {
  margin: 32px 0 42px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 844/530;
}

.interview_detail_mv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview_company_card {
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 32px;
}

.interview_company_card_label {
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #7876cf;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .interview_company_card_label {
    margin-bottom: 16px;
  }
}

.interview_company_card_item {
  margin-bottom: 12px;
}

@media (min-width: 920px) {
  .interview_company_card_item {
    margin-bottom: 18px;
  }
}

.interview_company_card_item:last-child {
  margin-bottom: 0;
}

.interview_company_card_head {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  margin-bottom: 3px;
}

.interview_company_card_body {
  font-size: 14px;
  line-height: 1.5;
}

.interview_company_card_logo {
  margin-bottom: 16px;
  padding: 18px;
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
}

.interview_company_card_logo img {
  max-width: 100%;
  height: auto;
}

.interview_company_card_sns_list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.interview_company_card_name {
  margin-bottom: 10px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.interview_company_card_txt {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.8;
}

.interview_company_card_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  background-color: #222222;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.interview_company_contact_ttl {
  font-size: 18px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.interview_company_contact_txt {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.interview_company_contact_btn {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 919px) {
  .interview_company_contact_btn .btn {
    max-width: 420px;
  }
}

.interview_person {
  position: relative;
  margin-bottom: 38px;
  padding: min(38px, 3.1666666667vw) min(40px, 3.3333333333vw) min(40px, 3.3333333333vw);
  border: 1px solid #222222;
  border-radius: 8px;
}

@media (max-width: 599px) {
  .interview_person {
    padding: 30px 16px 24px;
  }
}

.interview_person_label {
  position: absolute;
  top: 0;
  left: 28px;
  padding: 0 12px;
  background-color: #fff;
  transform: translateY(-50%);
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .interview_person_label {
    font-size: 24px;
  }
}

.interview_person_inr {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

@media (min-width: 920px) {
  .interview_person_inr {
    gap: 24px;
    align-items: center;
  }
}

.interview_person_img {
  width: 80px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

@media (min-width: 920px) {
  .interview_person_img {
    width: 120px;
  }
}

.interview_person_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview_person_body {
  min-width: 0;
}

.interview_person_position {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 919px) {
  .interview_person_position_separator {
    display: none;
  }
}

@media (max-width: 919px) {
  .interview_person_position_txt {
    display: block;
  }
}

.interview_person_name {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .interview_person_name {
    font-size: min(24px, 2.4vw);
    margin-bottom: 14px;
  }
}

.interview_person_name span {
  margin-left: 2px;
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
}

@media (min-width: 920px) {
  .interview_person_name span {
    margin-left: 4px;
    font-size: 16px;
  }
}

.interview_person_school {
  line-height: 1.5;
}

.interview_person_school span {
  margin-right: 4px;
  font-weight: 700;
}

@media (min-width: 920px) {
  .interview_person_school span {
    margin-right: 12px;
  }
}

.interview_toc {
  margin-bottom: 40px;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 920px) {
  .interview_toc {
    border-radius: 12px;
    margin-bottom: 78px;
  }
}

.interview_toc_head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 24px 20px;
  border: none;
  background: transparent;
  color: #222222;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

@media (min-width: 920px) {
  .interview_toc_head {
    padding: 32px 30px 30px;
  }
}

.interview_toc_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../img/interview/toc_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 599px) {
  .interview_toc_icon {
    width: 18px;
    height: 18px;
  }
}

.interview_toc_ttl {
  margin: 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .interview_toc_ttl {
    font-size: 20px;
  }
}

.interview_toc_body {
  overflow: hidden;
  transition: height 0.3s ease;
}

.interview_toc_body_inr {
  padding: 0 20px 28px;
}

@media (min-width: 920px) {
  .interview_toc_body_inr {
    padding: 0 30px 28px;
  }
}

.interview_toc_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview_toc_item {
  line-height: 1.5;
  list-style: none;
}

.interview_toc_item+.interview_toc_item {
  margin-top: 12px;
}

@media (min-width: 920px) {
  .interview_toc_item+.interview_toc_item {
    margin-top: 18px;
  }
}

.interview_toc_item>a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (min-width: 920px) {
  .interview_toc_item>a:hover {
    color: #7876cf;
  }
}

.interview_toc_item .bold {
  font-weight: 700;
}

.interview_toc_child {
  margin-top: 8px;
  padding-left: 12px;
  list-style: none;
}

@media (min-width: 920px) {
  .interview_toc_child {
    padding-left: 20px;
    margin-top: 12px;
  }
}

.interview_toc_child li+li {
  margin-top: 10px;
}

@media (min-width: 920px) {
  .interview_toc_child li+li {
    margin-top: 12px;
  }
}

.interview_toc_child a {
  color: inherit;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
}

@media (min-width: 920px) {
  .interview_toc_child a:hover {
    color: #7876cf;
  }
}

.interview_toc.is-open .interview_toc_icon {
  transform: rotate(0deg);
}

.interview_toc.is-closed .interview_toc_icon {
  transform: rotate(180deg);
}

.interview_section {
  margin-top: 32px;
}

@media (min-width: 920px) {
  .interview_section {
    margin-top: 64px;
  }
}

.interview_section:first-child {
  margin-top: 0;
}

.interview_section_ttl {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  padding-right: 20px;
  padding-left: 4px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
}

@media (min-width: 920px) {
  .interview_section_ttl {
    margin-bottom: 40px;
    font-size: 32px;
    padding-right: 34px;
  }
}

.interview_section_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  right: 54px;
  bottom: 6px;
  z-index: -1;
  height: 6px;
  background-color: #ffc266;
  transform: skewX(-10deg);
  transform-origin: left bottom;
  width: calc(100% - 18px);
}

@media (min-width: 920px) {
  .interview_section_ttl::before {
    width: calc(100% - 33px);
    height: 10px;
  }
}

.interview_section_ttl::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 23px;
  height: 28px;
  background-image: url("../img/interview/icon_pencil.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 920px) {
  .interview_section_ttl::after {
    width: 35px;
    height: 40px;
    right: 0;
    bottom: 8px;
  }
}

.interview_section_ttl span {
  font-size: 22px;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .interview_section_ttl span {
    font-size: 28px;
  }
}

.interview_section--video {
  margin-top: 40px;
}

@media (min-width: 920px) {
  .interview_section--video {
    margin-top: 72px;
  }
}

.interview_qa+.interview_qa {
  margin-top: 28px;
}

@media (min-width: 920px) {
  .interview_qa+.interview_qa {
    margin-top: 42px;
  }
}

.interview_qa_question {
  position: relative;
  margin-bottom: 12px;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15em;
}

@media (min-width: 920px) {
  .interview_qa_question {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 16px;
  }
}

.interview_qa_question::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 3px;
  height: 16px;
  background-color: #7876cf;
  border-radius: 10px;
}

@media (min-width: 920px) {
  .interview_qa_question::before {
    width: 4px;
    height: 20px;
    top: 4px;
  }
}

.interview_qa_answer {
  line-height: 1.75;
  text-align: justify;
  letter-spacing: 0.125em;
}

@media (min-width: 920px) {
  .interview_qa_answer {
    line-height: 2;
    letter-spacing: 0.15em;
  }
}

.interview_img {
  margin: 28px 0;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 920px) {
  .interview_img {
    margin: 42px 0;
  }
}

.interview_img img {
  display: block;
  width: 100%;
  height: auto;
}

.interview_message {
  margin: 20px 0;
  padding: 20px;
  color: #fff;
  background-color: #7876cf;
  border-radius: 0 12px 12px 12px;
}

@media (min-width: 920px) {
  .interview_message {
    border-radius: 0 16px 16px 16px;
    padding: 24px 26px;
    margin: 44px 0;
  }
}

.interview_message_ttl {
  position: relative;
  margin-bottom: 10px;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15em;
}

@media (min-width: 920px) {
  .interview_message_ttl {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 12px;
  }
}

.interview_message_ttl::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
}

@media (min-width: 920px) {
  .interview_message_ttl::before {
    width: 4px;
    height: 20px;
    top: 4px;
  }
}

.interview_message_txt {
  text-align: justify;
  letter-spacing: 0.15em;
  line-height: 2;
}

.interview_video_lead {
  margin-bottom: 24px;
  line-height: 2;
}

@media (min-width: 920px) {
  .interview_video_lead {
    margin-bottom: 40px;
  }
}

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

@media (min-width: 920px) {
  .interview_video_list {
    gap: 24px;
  }
}

.interview_video_embed {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/9;
  background-color: #eee;
}

.interview_video_embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.interview_video_embed a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 24px;
  color: inherit;
  text-decoration: underline;
  background-color: #f5f5f5;
}

.interview_other {
  margin-top: 96px;
  padding: 40px 0;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  overflow: hidden;
}

@media (min-width: 920px) {
  .interview_other {
    padding: 56px 0;
  }
}

.interview_other_ttl {
  margin: 0 0 20px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .interview_other_ttl {
    font-size: 32px;
    margin: 0 0 28px;
  }
}

.interview_other_slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.interview_other_swiper {
  width: 100%;
  overflow: visible;
  cursor: default;
  touch-action: pan-y;
  user-select: none;
}

.interview_other_swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
  will-change: transform;
}

.interview_other_swiper .swiper-slide {
  flex-shrink: 0;
}

.interview_other_swiper img {
  user-select: none;
  -webkit-user-drag: none;
}

.interview_other_item {
  width: 280px;
  height: auto;
  list-style: none;
}

@media (min-width: 920px) {
  .interview_other_item {
    width: 360px;
  }
}

.interview_other_card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.interview_other_card_img {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
  aspect-ratio: 360/204;
  background-color: #eee;
}

@media (min-width: 920px) {
  .interview_other_card_img {
    margin-bottom: 20px;
  }
}

.interview_other_card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interview_other_card_img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

@media (min-width: 920px) {
  .interview_other_card:hover .interview_other_card_img img {
    transform: scale(1.05);
  }
}

.interview_other_card_overlay {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: #fff;
}

.interview_other_card_overlay_ttl {
  margin: 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .interview_other_card_overlay_ttl {
    font-size: 18px;
  }
}

.interview_other_card_company {
  margin: 0 0 8px;
  line-height: 1.5;
}

.interview_other_card_ttl {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .interview_other_card_ttl {
    font-size: 20px;
  }
}

.interview_other_card_keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px dashed #1F1F1F;
  list-style: none;
}

.interview_other_card_keywords li {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 12px;
  line-height: 1.2;
}

.archive_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}

@media (min-width: 920px) {
  .archive_pagination {
    margin-top: 64px;
    gap: 8px;
  }
}

.archive_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 24px;
  padding: 0;
  border-radius: 4px;
  background: #e1e1e1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers {
    min-width: 42px;
    min-height: 32px;
    font-size: 16px;
  }
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers:hover {
    background: #cccccc;
  }
}

.archive_pagination .page-numbers.current {
  background: #1F1F1F;
  color: #fff;
  pointer-events: none;
}

.archive_pagination .page-numbers.dots {
  position: relative;
  width: 32px;
  min-width: 32px;
  min-height: 24px;
  padding: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
  pointer-events: none;
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers.dots {
    width: 42px;
    min-width: 42px;
    min-height: 32px;
  }
}

.archive_pagination .page-numbers.dots::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #1F1F1F;
  transform: translateX(-50%);
  box-shadow: -8px 0 0 #1F1F1F, 8px 0 0 #1F1F1F;
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers.dots::before {
    width: 3px;
    height: 3px;
  }
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers.dots:hover {
    background: transparent;
  }
}

.archive_pagination .page-numbers.prev,
.archive_pagination .page-numbers.next {
  position: relative;
  font-size: 0;
}

.archive_pagination .page-numbers.prev::before,
.archive_pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../img/page/pagination_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 920px) {

  .archive_pagination .page-numbers.prev::before,
  .archive_pagination .page-numbers.next::before {
    width: 16px;
    height: 16px;
  }
}

.archive_pagination .page-numbers.prev {
  margin-right: 10px;
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers.prev {
    margin-right: 32px;
  }
}

.archive_pagination .page-numbers.prev::before {
  transform: rotate(180deg);
}

.archive_pagination .page-numbers.next {
  margin-left: 10px;
}

@media (min-width: 920px) {
  .archive_pagination .page-numbers.next {
    margin-left: 32px;
  }
}

.company_archive {
  padding-bottom: 90px;
}

@media (min-width: 920px) {
  .company_archive {
    padding-bottom: 126px;
  }
}

.company_archive_filter {
  margin: 0 0 66px;
  padding: 20px 16px;
  border-radius: 6px;
  background: #f5f5f5;
}

@media (min-width: 920px) {
  .company_archive_filter {
    padding: 36px 40px;
    border-radius: 8px;
  }
}

.company_archive_filter_form {
  position: relative;
}

.company_archive_filter_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.company_archive_filter.is-open .company_archive_filter_body {
  grid-template-rows: 1fr;
}

.company_archive_filter.is-open .company_archive_filter_icon::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.company_archive_filter_head {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.company_archive_filter_head:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.company_archive_filter_body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.company_archive_filter_body_inr {
  min-height: 0;
  overflow: hidden;
}

.company_archive_filter_ttl {
  font-size: 18px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .company_archive_filter_ttl {
    font-size: 24px;
  }
}

.company_archive_filter_icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.company_archive_filter_icon::before,
.company_archive_filter_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #222;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.company_archive_filter_icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.company_archive_filter_icon::after {
  transform: translate(-50%, -50%);
}

.company_archive_filter_note {
  margin-top: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.35;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .company_archive_filter_note {
    margin-top: 42px;
    margin-bottom: 38px;
  }
}

.company_archive_filter_block_wrap {
  margin-bottom: 40px;
}

.company_archive_filter_block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e1e1e1;
}

@media (min-width: 920px) {
  .company_archive_filter_block {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

.company_archive_filter_block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.company_archive_filter_label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .company_archive_filter_label {
    gap: 8px;
    margin-bottom: 24px;
    font-size: 18px;
  }
}

.company_archive_filter_label_icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 920px) {
  .company_archive_filter_label_icon {
    width: 24px;
    height: 24px;
  }
}

.company_archive_filter_label_icon--area {
  background-image: url("../img/company/icon_area.svg");
}

.company_archive_filter_label_icon--job {
  background-image: url("../img/company/icon_feature.svg");
}

.company_archive_filter_area_buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

@media (min-width: 600px) {
  .company_archive_filter_area_buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

.company_archive_filter_job_buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

@media (min-width: 600px) {
  .company_archive_filter_job_buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 920px) {
  .company_archive_filter_job_buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.company_archive_filter_select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #1F1F1F;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

@media (min-width: 1200px) {
  .company_archive_filter_select {
    padding: 12px 20px;
  }
}

.company_archive_filter_select.is-selected {
  background-color: #7876cf;
  color: #fff;
}

.company_archive_filter_select_input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.company_archive_filter_select_main {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 1200px) {
  .company_archive_filter_select_main {
    font-size: 16px;
  }
}

.company_archive_filter_btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .company_archive_filter_btns {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    margin: 0;
    gap: 17px;
  }
}

.company_archive_filter_submit {
  width: 100%;
  max-width: 328px;
  padding: 12px;
}

@media (min-width: 920px) {
  .company_archive_filter_submit {
    padding: 19px 20px;
  }
}

@media (max-width: 919px) {
  .company_archive_filter_submit .btn_txt {
    font-size: 16px;
  }
}

@media (max-width: 919px) {
  .company_archive_filter_submit .btn_icon {
    width: 20px;
    height: 20px;
  }
}

.company_archive_filter_reset {
  width: 100%;
  padding: 12px;
  background-color: #e1e1e1;
  border: none;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .company_archive_filter_reset {
    max-width: 214px;
    padding: 19px 20px;
  }
}

@media (min-width: 920px) {
  .company_archive_filter_reset:hover {
    background-color: #d3d3d3;
  }
}

.company_archive_filter_reset .btn_txt {
  color: #1F1F1F;
}

.company_archive_result {
  margin-top: 0;
}

.company_archive_count {
  margin-bottom: 12px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .company_archive_count {
    margin-bottom: 40px;
    font-size: 18px;
  }
}

.company_archive_count .num {
  color: #7876cf;
  font-size: 24px;
  margin-left: 4px;
}

@media (min-width: 920px) {
  .company_archive_count .num {
    font-size: 32px;
    margin-left: 12px;
  }
}

.company_archive_count .small {
  font-size: 14px;
}

@media (min-width: 920px) {
  .company_archive_count .small {
    font-size: 16px;
  }
}

.company_archive_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 600px) {
  .company_archive_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 920px) {
  .company_archive_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
  }
}

.company_archive_item {
  min-width: 0;
}

.company_archive_card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.company_archive_card_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  aspect-ratio: 360/204;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  background: #fff;
}

@media (min-width: 920px) {
  .company_archive_card_logo {
    border-radius: 8px;
    margin-bottom: 18px;
  }
}

.company_archive_card_logo img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (min-width: 920px) {
  .company_archive_card:hover .company_archive_card_logo img {
    transform: scale(1.05);
  }
}

.company_archive_card_ttl {
  margin-bottom: 2px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .company_archive_card_ttl {
    font-size: 24px;
  }
}

.company_archive_card_meta {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #b8b8b8;
}

@media (min-width: 920px) {
  .company_archive_card_meta {
    margin-bottom: 16px;
  }
}

.company_archive_card_status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.company_archive_card_status_item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1.5;
}

.company_archive_card_status_item::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.company_archive_card_status_item--employees::before {
  background-image: url("../img/company/icon_employees.svg");
}

.company_archive_card_status_item--articles::before {
  background-image: url("../img/company/icon_articles.svg");
}

.company_archive_card_txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
}

.company_archive_empty {
  margin: 0;
  padding: 56px 24px;
  border-radius: 6px;
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.company_archive_cta {
  margin-top: 96px;
}

.company_archive_cta_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.company_archive_cta_card {
  border: 2px solid #222;
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  background: #fff;
  box-shadow: 8px 8px 0 #222;
}

.company_archive_cta_card .btn {
  margin-top: 28px;
}

.company_archive_cta_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.company_archive_cta_txt {
  margin-top: 20px;
  line-height: 1.8;
}

.company_archive_cta_contact {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.company_detail {
  padding: 48px 0 96px;
}

.company_detail img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.company_detail_article {
  margin-bottom: 80px;
}

.company_detail_head {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 70px;
}

@media (min-width: 920px) {
  .company_detail_head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 78px;
  }
}

@media (min-width: 920px) {
  .company_detail_head_body {
    width: 38.3838383838%;
  }
}

.company_detail_mv {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 672/480;
}

@media (min-width: 920px) {
  .company_detail_mv {
    width: 56.5656565657%;
    border-radius: 8px;
  }
}

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

.company_detail_ttl {
  margin: 0 0 12px;
  font-size: 26px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .company_detail_ttl {
    margin: 0 0 24px;
    font-size: min(40px, 3.3333333333vw);
  }
}

.company_detail_lead {
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.125em;
  text-align: justify;
}

@media (min-width: 920px) {
  .company_detail_lead {
    margin: 0 0 40px;
    line-height: 2;
    letter-spacing: 0.15em;
  }
}

.company_detail_area {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .company_detail_area {
    margin: 0 0 16px;
  }
}

.company_detail_area_icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: url("../img/company/icon_area.svg") no-repeat center/contain;
}

.company_detail_feature_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company_detail_feature_item {
  position: relative;
  padding-left: 20px;
}

.company_detail_feature_item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../img/company/icon_feature.svg") no-repeat center/contain;
}

.company_detail_feature_ttl {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.company_detail_feature_txt {
  display: block;
  color: #343434;
  font-size: 12px;
  line-height: 1.5;
}

.company_detail_layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 80px;
}

@media (min-width: 920px) {
  .company_detail_layout {
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
  }
}

.company_detail_side {
  min-width: 0;
}

@media (min-width: 920px) {
  .company_detail_side {
    width: 100%;
    display: block;
    max-width: 264px;
    position: sticky;
    top: 100px;
  }
}

@media (min-width: 920px) {
  .company_detail_main {
    width: 71.0437710438%;
  }
}

.company_detail_main>*:last-child {
  margin-bottom: 0;
}

.company_detail_card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.company_detail_card_ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.company_detail_card_txt {
  margin: 0;
  color: #343434;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.company_detail_card_btn {
  margin-top: 4px;
}

.company_detail_card_btn .btn {
  max-width: 420px;
}

.company_detail_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 264/150;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #fff;
}

.company_detail_logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 75%;
  max-height: 65%;
  object-fit: contain;
}

.company_detail_section_ttl {
  position: relative;
  margin: 0 0 20px;
  padding-left: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .company_detail_section_ttl {
    margin: 0 0 40px;
    font-size: min(32px, 2.9090909091vw);
    padding-left: 16px;
  }
}

.company_detail_section_ttl::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 3px;
  height: 20px;
  background: #7774d8;
  border-radius: 999px;
}

@media (min-width: 920px) {
  .company_detail_section_ttl::before {
    height: 30px;
    top: 9px;
  }
}

.company_detail_section_head {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 920px) {
  .company_detail_section_head {
    margin-bottom: 40px;
  }
}

.company_detail_section_head .company_detail_section_ttl {
  margin-bottom: 0;
}

.company_detail_interview {
  margin-bottom: 80px;
}

.company_detail_interview_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 920px) {
  .company_detail_interview_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

.company_detail_interview_item {
  min-width: 0;
}

.company_detail_interview_link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 920px) {
  .company_detail_interview_link:hover .company_detail_interview_img img {
    transform: scale(1.05);
  }
}

.company_detail_interview_img {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 6px;
  aspect-ratio: 260/150;
  background: #f5f5f5;
}

@media (min-width: 920px) {
  .company_detail_interview_img {
    border-radius: 8px;
  }
}

.company_detail_interview_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.company_detail_interview_img::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 100px;
  background: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.company_detail_interview_overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding-right: 12px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

@media (min-width: 920px) {
  .company_detail_interview_overlay {
    bottom: 14px;
    left: 16px;
    padding-right: 16px;
  }
}

.company_detail_interview_overlay_ttl {
  margin: 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 920px) {
  .company_detail_interview_overlay_ttl {
    font-size: min(22px, 2vw);
  }
}

.company_detail_interview_ttl {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .company_detail_interview_ttl {
    font-size: min(20px, 1.8181818182vw);
  }
}

.company_detail_interview_name {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.company_detail_info {
  margin-bottom: 40px;
}

@media (min-width: 920px) {
  .company_detail_info {
    margin-bottom: 80px;
  }
}

.company_detail_info_list {
  margin: 0;
}

.company_detail_info_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 920px) {
  .company_detail_info_item {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 44px;
    padding: 20px 0;
  }
}

.company_detail_info_item:first-child {
  padding-top: 0;
}

.company_detail_info_head {
  font-weight: 700;
  line-height: 1.5;
}

.company_detail_info_body {
  min-width: 0;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .company_detail_info_body {
    line-height: 1.75;
  }
}

.company_detail_info_body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.company_detail_location+.company_detail_location {
  margin-top: 8px;
}

@media (min-width: 920px) {
  .company_detail_location+.company_detail_location {
    margin-top: 16px;
  }
}

.company_detail_location p {
  margin: 0;
}

.company_detail_location_label {
  font-weight: 700;
}

@media (min-width: 920px) {
  .company_detail_location_label {
    line-height: 2;
  }
}

.company_detail_sns_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 920px) {
  .company_detail_sns_list {
    gap: 8px 16px;
  }
}

.company_detail_map {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 8px;
  background: #f5f5f5;
}

.company_detail_map iframe {
  display: block;
  width: 100%;
  height: auto;
  height: 260px;
  border: 0;
}

@media (min-width: 920px) {
  .company_detail_map iframe {
    height: 350px;
  }
}

.company_detail_video {
  margin: 0 0 40px;
}

@media (min-width: 920px) {
  .company_detail_video {
    margin: 0 0 80px;
  }
}

.company_detail_video_lead {
  margin: 0 0 24px;
  line-height: 2;
}

@media (min-width: 920px) {
  .company_detail_video_lead {
    margin: 0 0 40px;
  }
}

.company_detail_video_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 920px) {
  .company_detail_video_list {
    gap: 24px;
  }
}

.company_detail_video_link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.company_detail_video_img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
}

.company_detail_video_img img {
  width: 100%;
  aspect-ratio: 260/145;
  object-fit: cover;
}

.company_detail_video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 34px;
  background: #e60012;
  border-radius: 8px;
  transform: translate(-50%, -50%);
}

.company_detail_video_icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.company_detail_video_embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}

.company_detail_video_ttl {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.company_detail .information_list_item_link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e1e1e1;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_link {
    padding: 24px 0;
  }
}

.company_detail .information_list_item_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #222222;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.company_detail .information_list_item:first-child .information_list_item_link {
  padding-top: 0;
}

.company_detail .information_list_item_txtArea {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80%;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_txtArea {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 91.5704387991%;
    gap: 0;
  }
}

.company_detail .information_list_item_date {
  width: 120px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_date {
    font-size: 16px;
  }
}

.company_detail .information_list_item_ttl {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_ttl {
    width: 83.257251%;
    font-size: 16px;
  }
}

.company_detail .information_list_item_icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_icon {
    width: 36px;
    height: 36px;
  }
}

.company_detail .information_list_item_icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #222222;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .company_detail .information_list_item_icon::before {
    width: 28px;
    height: 28px;
  }
}

.company_detail {
  /* スマホ時だけ表示順を変更 */
}

@media screen and (max-width: 919px) {
  .company_detail .information_body {
    display: flex;
    flex-direction: column;
  }

  .company_detail .information_ttl {
    display: contents;
  }

  .company_detail .information_ttl .company_detail_section_head {
    display: contents;
  }

  .company_detail .information_ttl .company_detail_section_ttl {
    order: 1;
    margin-bottom: 32px;
  }

  .company_detail .information_list {
    order: 2;
  }

  .company_detail .information_ttl .home_link {
    order: 3;
    align-self: flex-start;
    margin-top: 32px;
  }
}

.company_other {
  padding: 72px 0 0;
  border-top: 1px solid #d8d8d8;
  overflow: hidden;
}

.company_other_ttl {
  margin: 0 0 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media (min-width: 920px) {
  .company_other_ttl {
    font-size: min(22px, 2vw);
  }
}

.company_other_slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.company_other_slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.company_other_swiper {
  width: 100%;
  overflow: visible;
  cursor: default;
  user-select: none;
}

.company_other_swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
  will-change: transform;
}

.company_other_swiper .swiper-slide {
  flex-shrink: 0;
}

.company_other_swiper img {
  user-select: none;
  -webkit-user-drag: none;
}

.company_other_item {
  width: 260px;
  height: auto;
  list-style: none;
}

@media (min-width: 600px) {
  .company_other_item {
    width: 300px;
  }
}

@media (min-width: 920px) {
  .company_other_item {
    width: 330px;
  }
}

@media (min-width: 1200px) {
  .company_other_item {
    width: 360px;
  }
}

.company_other_item_ttl {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .company_other_item_ttl {
    font-size: 24px;
  }
}

.company_other_link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 920px) {
  .company_other_link:hover .company_other_img img {
    transform: scale(1.05);
  }
}

.company_other_img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 360/204;
  margin-bottom: 16px;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  background: #fff;
}

.company_other_img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 75%;
  max-height: 65%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.company_other_area {
  margin: 0 0 8px;
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.5;
}

.company_other_meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.company_other_meta_item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1F1F1F;
  font-size: 12px;
  line-height: 1.5;
}

.company_other_meta_item::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.company_other_meta_item--employees::before {
  background-image: url("../img/company/icon_employees.svg");
}

.company_other_meta_item--articles::before {
  background-image: url("../img/company/icon_articles.svg");
}

.company_other_txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.contact_body {
  padding-bottom: 156px;
}

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

@media (min-width: 920px) {
  .contact_layout {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

@media (min-width: 920px) {
  .contact_lead {
    width: 34.8484848485%;
  }
}

.contact_lead_txt {
  position: sticky;
  top: 120px;
}

.contact_lead_txt p {
  text-align: justify;
  margin-bottom: 10px;
}

@media (min-width: 920px) {
  .contact_lead_txt p {
    margin-bottom: 20px;
  }
}

.contact_lead_txt p:last-child {
  margin-bottom: 0;
}

@media (min-width: 920px) {
  .contact_form {
    width: 56.5656565657%;
  }
}

.contact_form .wpcf7 {
  width: 100%;
}

.contact_form .wpcf7-form {
  width: 100%;
}

.contact_form .wpcf7-spinner {
  display: none;
}

.contact_form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
}

.contact_form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
}

.contact_form .wpcf7-list-item {
  margin: 0;
}

.contact_form .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.8;
}

.contact_error {
  padding: 24px;
  background: #f7f7f7;
  border-radius: 8px;
}

.contact_error p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.form_item {
  margin-bottom: 16px;
}

@media (min-width: 920px) {
  .form_item {
    margin-bottom: 32px;
  }
}

.form_item input,
.form_item textarea,
.form_item select {
  width: 100%;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease;
  font-size: 16px;
}

.form_item input,
.form_item select {
  height: 48px;
  padding: 0 16px;
}

@media (min-width: 920px) {

  .form_item input,
  .form_item select {
    height: 56px;
  }
}

.form_item textarea {
  display: block;
  height: 168px;
  padding: 14px 16px;
  resize: none;
}

.form_item input::placeholder {
  color: #dbdbdb;
}

.form_item input:focus {
  border-color: #7972d8;
}

.form_item input-file input[type=file] {
  border: none;
  background: transparent;
}

.form_item input[type=radio],
.form_item input[type=checkbox] {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 8px 0 0;
  border: 1px solid #d9d9d9;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: -4px;
  cursor: pointer;
}

.form_item input[type=radio] {
  border-radius: 50%;
}

.form_item input[type=radio]:checked {
  border-color: #7972d8;
  background: radial-gradient(circle, #7972d8 0 5px, transparent 6px);
}

.form_item input[type=checkbox] {
  border-radius: 0;
}

.form_item input[type=checkbox]:checked {
  border-color: #7972d8;
  background-color: #7972d8;
  background-image: linear-gradient(45deg, transparent 55%, #fff 55%), linear-gradient(-45deg, transparent 55%, #fff 55%);
  background-repeat: no-repeat;
  background-size: 6px 10px, 10px 6px;
  background-position: 5px 8px, 8px 6px;
}

.form_item textarea::placeholder {
  color: #dbdbdb;
}

.form_item textarea:focus {
  border-color: #7972d8;
}

.form_item select:focus {
  border-color: #7972d8;
}

.form_item .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form_item-company {
  margin-bottom: 32px;
}

.form_file {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px dashed #dbdbdb;
  background: #f5f5f5;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

.form_file_txt {
  color: #dbdbdb;
  pointer-events: none;
}

.form_file .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.form_file input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  opacity: 0;
  cursor: pointer;
}

.form_file.is-dragover {
  border-color: #7972d8;
  background: #f5f4ff;
}

.form_file.is-selected .form_file_txt {
  color: #1f1f1f;
}

.form_label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .form_label {
    margin-bottom: 12px;
  }
}

.form_note {
  margin: 4px 0 0;
  font-size: 10px;
}

@media (min-width: 920px) {
  .form_note {
    margin: 8px 0 0;
    font-size: 12px;
  }
}

.form_privacy {
  margin-top: 34px;
  text-align: center;
}

.form_privacy .wpcf7-form-control-wrap {
  display: inline-block;
}

.form_privacy .wpcf7-acceptance {
  display: inline-block;
}

.form_privacy .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.form_privacy label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  cursor: pointer;
}

.form_privacy input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.form_privacy input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.form_privacy input[type=checkbox]:focus-visible+.wpcf7-list-item-label::before {
  outline: 2px solid #7972d8;
  outline-offset: 3px;
}

.form_privacy .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  color: #1f1f1f;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
}

.form_privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #1f1f1f;
  background: #fff;
  box-sizing: border-box;
  border-radius: 2px;
}

.form_privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #7972d8;
  border-bottom: 2px solid #7972d8;
  opacity: 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.form_privacy a {
  color: #7972d8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form_submit {
  position: relative;
  width: 328px;
  max-width: 100%;
  margin: 24px auto 0;
}

.form_submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 72px;
  width: 32px;
  height: 32px;
  background: #fff;
  transform: translateY(-50%);
  pointer-events: none;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.form_submit input[type=submit] {
  display: block;
  width: 100%;
  min-height: 60px;
  padding: 0 82px 0 48px;
  border: none;
  border-radius: 8px;
  background: #7972d8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 1;
  text-align: center;
  appearance: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

@media (min-width: 920px) {
  .form_submit input[type=submit] {
    font-size: 22px;
    padding: 0 82px 0 48px;
    min-height: 80px;
  }
}

.form_submit input[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.required {
  color: #7972d8;
}

.thanks_page .thanks_body {
  padding-bottom: 82px;
}

@media (min-width: 920px) {
  .thanks_page .thanks_body {
    padding-top: 40px;
  }
}

.thanks_page .thanks_content {
  margin: 0 auto;
  text-align: center;
}

.thanks_page .thanks_icon {
  width: 80px;
  margin: 0 auto 20px;
}

@media (min-width: 920px) {
  .thanks_page .thanks_icon {
    width: 120px;
    margin: 0 auto 40px;
  }
}

.thanks_page .thanks_ttl {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .thanks_page .thanks_ttl {
    font-size: 40px;
  }
}

.thanks_page .thanks_txt {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thanks_page .thanks_btn {
  margin: 40px auto 0;
}

@media (min-width: 920px) {
  .thanks_page .thanks_btn {
    margin: 64px auto 0;
    width: 310px;
  }
}

.thanks_page .thanks_btn .btn {
  width: 100%;
  margin: 0 auto;
}

.about .subPage_section_header {
  padding-bottom: 0;
}

.about_intro {
  position: relative;
}

@media (min-width: 1200px) {
  .about_intro {
    padding-bottom: 158px;
  }
}

.about_intro_wrap {
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
}

@media (max-width: 919px) {
  .about_intro_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 84vw;
  }
}

@media (max-width: 1199px) {
  .about_intro_wrap {
    margin-bottom: 120px;
  }
}

@media (max-width: 1419px) {
  .about_intro_wrap {
    overflow-x: clip;
  }
}

@media (min-width: 1420px) {
  .about_intro_wrap {
    overflow: visible;
  }
}

.about_intro_ttl {
  margin: 0 0 42px;
}

@media (min-width: 920px) {
  .about_intro_text {
    width: 62.2895622896%;
  }
}

.about_intro_text h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

@media (min-width: 920px) {
  .about_intro_text h2 {
    font-size: min(28px, 2.3333333333vw);
    margin-bottom: 24px;
  }
}

.about_intro_text p {
  margin: 0 0 8px;
  font-size: 14px;
}

@media (min-width: 920px) {
  .about_intro_text p {
    font-size: min(16px, 1.2698412698vw);
    margin: 0 0 10px;
    text-shadow: 0 0 10px rgb(255, 255, 255);
  }
}

.about_intro_text p:last-child {
  margin-bottom: 0;
}

.about_intro_text .subPage_section_ttl {
  font-size: 26px;
  margin-bottom: 24px;
}

@media (min-width: 920px) {
  .about_intro_text .subPage_section_ttl {
    font-size: min(60px, 4.2857142857vw);
    margin-bottom: 30px;
  }
}

.about_intro_images {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .about_intro_images {
    padding: 0;
    max-width: none;
  }
}

.about_intro_image {
  overflow: hidden;
  border-radius: 4px;
  position: absolute;
  z-index: -1;
}

@media (min-width: 920px) {
  .about_intro_image {
    border-radius: 8px;
  }
}

.about_intro_image img {
  display: block;
  width: 100%;
}

.about_intro_image-main {
  width: 58.2051282051vw;
  bottom: 53.8461538462vw;
}

@media (min-width: 920px) {
  .about_intro_image-main {
    bottom: auto;
    top: -90px;
    right: -20px;
    width: min(432px, 30.8571428571vw);
  }
}

@media (min-width: 1420px) {
  .about_intro_image-main {
    right: 0;
  }
}

.about_intro_image-small01 {
  width: 19.4871794872vw;
  bottom: 34.358974359vw;
  left: 40vw;
}

@media (min-width: 920px) {
  .about_intro_image-small01 {
    top: min(210px, 15vw);
    right: min(296px, 21.1428571429vw);
    width: min(149px, 10.6428571429vw);
    bottom: auto;
    left: auto;
  }
}

.about_intro_image-small02 {
  width: 27.4358974359vw;
  bottom: 12.8205128205vw;
  right: 10.2564102564vw;
}

@media (min-width: 920px) {
  .about_intro_image-small02 {
    top: min(230px, 16.4285714286vw);
    right: min(72px, 5.1428571429vw);
    width: min(204px, 14.5714285714vw);
    bottom: auto;
  }
}

.about_intro_image-small03 {
  width: 39.4871794872vw;
  bottom: 0;
  left: 15.3846153846vw;
}

@media (min-width: 920px) {
  .about_intro_image-small03 {
    top: min(328px, 23.4285714286vw);
    right: min(342px, 24.4285714286vw);
    width: min(296px, 21.1428571429vw);
    bottom: auto;
    left: auto;
  }
}

.about_intro_image-small04 {
  width: 31.2820512821vw;
  bottom: 35.8974358974vw;
  left: 5.1282051282vw;
}

@media (min-width: 920px) {
  .about_intro_image-small04 {
    top: min(128px, 9.1428571429vw);
    right: min(470px, 33.5714285714vw);
    width: min(234px, 16.7142857143vw);
    bottom: auto;
    left: auto;
  }
}

.about_section_ttl {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .about_section_ttl {
    font-size: min(40px, 3.3333333333vw);
    margin: 0 0 42px;
  }
}

.about_format {
  padding: 0 0 80px;
  position: relative;
}

.about_format .draw_arrow_03 {
  position: absolute;
  top: -140px;
  width: 180px;
  right: 0;
  aspect-ratio: 348/228;
}

@media (min-width: 920px) {
  .about_format .draw_arrow_03 {
    width: min(348px, 26.7692307692vw);
    top: -130px;
  }
}

.about_format .draw_arrow_04 {
  position: absolute;
  bottom: -60px;
  width: 120px;
  right: 20px;
  aspect-ratio: 221/215;
}

@media (min-width: 920px) {
  .about_format .draw_arrow_04 {
    bottom: -120px;
    right: 180px;
    width: min(221px, 17vw);
  }
}

.about_format_body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 920px) {
  .about_format_body {
    gap: 100px;
  }
}

.about_format_body_item h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 46px;
  position: relative;
  font-family: fot-tsukuardgothic-std, sans-serif;
  margin-bottom: 20px;
}

@media (min-width: 920px) {
  .about_format_body_item h2 {
    font-size: min(40px, 3.3333333333vw);
    margin-bottom: 40px;
    padding-top: 54px;
  }
}

.about_format_body_item h2 img {
  width: 140px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 920px) {
  .about_format_body_item h2 img {
    width: 174px;
  }
}

.about_format_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 920px) {
  .about_format_item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 40px 0;
  }
}

.about_format_item:first-child {
  padding-top: 0;
}

.about_format_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media (min-width: 920px) {
  .about_format_text {
    width: 42.0875420875%;
  }
}

.about_format_text .home_link {
  margin-top: 20px;
}

@media (min-width: 920px) {
  .about_format_text .home_link {
    margin-top: 40px;
  }
}

.about_format_en {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  font-family: "Unbounded", sans-serif;
}

@media (min-width: 920px) {
  .about_format_en {
    font-size: min(56px, 4.6666666667vw);
    margin: 0 0 26px;
  }
}

.about_format_label {
  margin: 0 0 4px;
  color: #7876cf;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .about_format_label {
    font-size: 18px;
  }
}

.about_format_label_orange {
  color: #ff8f00;
}

.about_format_ttl {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .about_format_ttl {
    font-size: min(32px, 2.6666666667vw);
    margin: 0 0 22px;
  }
}

.about_format_image {
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 920px) {
  .about_format_image {
    width: 51.1784511785%;
  }
}

.about_format_image img {
  display: block;
  width: 100%;
  height: auto;
}

.about_flow {
  padding: 78px 0 80px;
  background: #f5f5f5;
}

.about_flow_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 920px) {
  .about_flow_list {
    flex-direction: row;
    gap: min(16px, 1.1428571429vw);
  }
}

.about_flow_item {
  min-height: 180px;
  padding: min(38px, 2.7142857143vw) min(16px, 1.1428571429vw);
  background: #fff;
  border-radius: 8px;
  text-align: center;
  flex: 1;
}

@media (max-width: 919px) {
  .about_flow_item {
    width: 100%;
    max-width: 500px;
    padding: 24px 16px 20px;
  }
}

.about_flow_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
}

@media (min-width: 920px) {
  .about_flow_icon {
    width: 64px;
    height: 64px;
  }
}

.about_flow_icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.about_flow_ttl {
  margin: 0 0 10px;
  font-size: 16px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 920px) {
  .about_flow_ttl {
    min-height: 2.7em;
    font-size: min(18px, 1.6071428571vw);
  }
}

.about_flow_desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .about_flow_desc {
    font-size: min(14px, 1.25vw);
  }
}

.about_flow_arrow {
  width: 32px;
  height: 32px;
  background: #1f1f1f;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transform: rotate(90deg);
}

@media (min-width: 920px) {
  .about_flow_arrow {
    transform: none;
    width: min(40px, 2.8571428571vw);
    height: min(40px, 2.8571428571vw);
  }
}

.about_link {
  padding: 88px 0 76px;
  background-color: #fff;
  background-image: linear-gradient(#ececec 1px, transparent 1px), linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 12px 12px;
}

.about_link_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

.about_link_card {
  position: relative;
  padding: 58px 48px 42px;
  background: #fff;
  border: 3px solid #1f1f1f;
  border-radius: 6px;
  box-shadow: 8px 8px 0 #1f1f1f;
  text-align: center;
}

.about_link_card-note .about_link_clip {
  background: #7972d8;
}

.about_link_card-note .about_link_copy span {
  color: #7972d8;
}

.about_link_card-company .about_link_clip {
  background: #ff9800;
}

.about_link_card-company .about_link_copy span {
  color: #ff9800;
}

.about_link_clip {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 54px;
  height: 64px;
  transform: translateX(-50%);
  mask-image: url("../img/about/icon_clip.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/about/icon_clip.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.about_link_copy {
  margin: 0 0 18px;
  color: #1f1f1f;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.about_link_desc {
  margin: 0 0 26px;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.about_link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 54px;
  margin: 0 auto;
  background: #1f1f1f;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
}

.about_link_btn span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about_link_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 10px;
  background: #fff;
  transform: translateY(-50%);
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.about_cta {
  padding: 70px 0 88px;
}

.about_cta_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  max-width: 100%;
  height: 82px;
  margin: 0 auto;
  background: #7972d8;
  border-radius: 6px;
  box-shadow: 6px 6px 0 #1f1f1f;
  color: #fff;
  text-decoration: none;
}

.about_cta_btn span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.about_cta_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 28px;
  height: 28px;
  background: #fff;
  transform: translateY(-50%);
  mask-image: url("../img/common/icon_mail.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/icon_mail.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.news_archive .subPage_body {
  padding-bottom: 72px;
}

.news_archive_list {
  max-width: 1014px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}

@media (min-width: 920px) {
  .news_archive_list {
    margin: min(140px, 11.6666666667vw) auto 54px;
  }
}

.news_archive_item {
  border-bottom: 1px solid #e1e1e1;
}

.news_archive_item:first-child .news_archive_link {
  padding-top: 0;
}

.news_archive_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  color: #222222;
  text-decoration: none;
}

@media (min-width: 920px) {
  .news_archive_link {
    gap: 24px;
    padding: 24px 0;
  }
}

.news_archive_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #222222;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

@media (min-width: 920px) {
  .news_archive_link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.news_archive_body {
  min-width: 0;
}

.news_archive_meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 0;
  margin-bottom: 4px;
  align-items: center;
}

@media (min-width: 920px) {
  .news_archive_meta {
    column-gap: 16px;
  }
}

.news_archive_date {
  color: #222222;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

@media (min-width: 920px) {
  .news_archive_date {
    font-size: 16px;
  }
}

.news_archive_source {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
  line-height: 1.5;
}

.news_archive_source--company {
  color: #7876cf;
}

.news_archive_source--admin {
  color: #ff8f00;
}

.news_archive_ttl {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 920px) {
  .news_archive_ttl {
    font-size: 16px;
  }
}

.news_archive_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

@media (min-width: 920px) {
  .news_archive_icon {
    width: 36px;
    height: 36px;
  }
}

.news_archive_icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #222222;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .news_archive_icon::before {
    width: 28px;
    height: 28px;
  }
}

.news_archive_empty {
  margin: 0 0 54px;
  color: #222222;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.news_single {
  padding-bottom: 80px;
}

.news_single_inner {
  max-width: 844px;
  margin: 0 auto;
}

.news_single_meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

@media (min-width: 920px) {
  .news_single_meta {
    gap: 12px;
  }
}

.news_single_date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.news_single_date_icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/interview/icon_calendar.svg") no-repeat center/contain;
}

.news_single_company {
  color: #7876cf;
  font-size: 12px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.news_single_source {
  color: #ff8f00;
  font-size: 12px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.news_single_ttl {
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 920px) {
  .news_single_ttl {
    font-size: 36px;
    padding-bottom: 40px;
    margin: 0 0 40px;
  }
}

.news_single_content {
  margin-bottom: 40px;
}

@media (min-width: 920px) {
  .news_single_content {
    margin-bottom: 78px;
  }
}

.news_single_content p {
  margin: 0 0 24px;
  line-height: 1.75;
  letter-spacing: 0.15em;
}

@media (min-width: 920px) {
  .news_single_content p {
    line-height: 2;
    margin: 0 0 40px;
  }
}

.news_single_content h2 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15em;
}

@media (min-width: 920px) {
  .news_single_content h2 {
    font-size: 20px;
    padding-left: 16px;
    margin: 0 0 40px;
  }
}

.news_single_content h2::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 3px;
  height: 18px;
  background-color: #7972d8;
  border-radius: 99px;
}

@media (min-width: 920px) {
  .news_single_content h2::before {
    width: 4px;
    height: 20px;
    top: 5px;
  }
}

.news_single_content h3 {
  margin: 0 0 18px;
  color: #222222;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.15em;
}

.news_single_content h3:not(:first-child) {
  padding-top: 18px;
}

.news_single_content ol {
  margin: 0 0 24px;
  padding-left: 1.6em;
  letter-spacing: 0.15em;
}

.news_single_content ul {
  margin: 0 0 24px;
  letter-spacing: 0.15em;
}

.news_single_content li {
  position: relative;
  padding-left: 12px;
}

@media (min-width: 920px) {
  .news_single_content li {
    padding-left: 24px;
  }
}

.news_single_content li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #222222;
  border-radius: 50%;
  left: 2px;
  top: 10px;
}

@media (min-width: 920px) {
  .news_single_content li::before {
    top: 12px;
    width: 4px;
    height: 4px;
    left: 4px;
  }
}

.news_single_content a {
  color: #7972d8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news_single_content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 4px;
}

@media (min-width: 920px) {
  .news_single_content img {
    margin: 0 auto 44px;
  }
}

.news_single_content figure {
  margin: 0 0 20px;
}

@media (min-width: 920px) {
  .news_single_content figure {
    margin: 0 0 44px;
  }
}

.news_single_content figure img {
  margin-bottom: 0;
}

.news_single_content figcaption {
  padding-top: 10px;
  color: #777;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.news_single_content *:last-child {
  margin-bottom: 0;
}

.news_single_nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
  padding-top: 40px;
  border-top: 1px solid #e1e1e1;
}

@media (min-width: 920px) {
  .news_single_nav {
    gap: 24px;
  }
}

.news_single_nav_item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

@media (min-width: 920px) {
  .news_single_nav_item a {
    gap: 10px;
  }
}

@media (min-width: 920px) {
  .news_single_nav_item a:hover .news_single_nav_txt::after {
    transform: scaleX(1);
  }
}

@media (min-width: 920px) {
  .news_single_nav_item a:hover .news_single_nav_icon {
    background-color: #7876cf;
  }
}

.news_single_nav_item-archive {
  text-align: center;
}

.news_single_nav_item-archive a {
  justify-content: center;
}

.news_single_nav_item-next,
.news_single_nav_item-prev {
  display: flex;
  align-items: center;
}

.news_single_nav_item-next {
  text-align: right;
  justify-content: flex-end;
}

.news_single_nav_item-next a {
  justify-content: flex-end;
}

.news_single_nav_txt {
  position: relative;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

@media (min-width: 920px) {
  .news_single_nav_txt {
    font-size: 16px;
  }
}

@media (min-width: 920px) {
  .news_single_nav_txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #222222;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
}

.news_single_nav_icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: #222222;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .news_single_nav_icon {
    width: 36px;
    height: 36px;
  }
}

.news_single_nav_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}

@media (min-width: 920px) {
  .news_single_nav_icon::before {
    width: 20px;
    height: 20px;
  }
}

.news_single_nav_item-prev .news_single_nav_icon {
  transform: scaleX(-1);
}

.news_link {
  padding: 88px 0 76px;
  background-color: #fff;
  background-image: linear-gradient(#ececec 1px, transparent 1px), linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 12px 12px;
}

.news_link_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

.news_link_card {
  position: relative;
  padding: 58px 48px 42px;
  background-color: #fff;
  border: 3px solid #222222;
  border-radius: 6px;
  box-shadow: 8px 8px 0 #222222;
  text-align: center;
}

.news_link_card-note .news_link_clip {
  background-color: #7972d8;
}

.news_link_card-note .news_link_copy span {
  color: #7972d8;
}

.news_link_card-company .news_link_clip {
  background-color: #ff9800;
}

.news_link_card-company .news_link_copy span {
  color: #ff9800;
}

.news_link_clip {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 54px;
  height: 64px;
  transform: translateX(-50%);
  mask-image: url("../img/about/icon_clip.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/about/icon_clip.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.news_link_copy {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7em;
  margin: 0 0 18px;
  color: #222222;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}

.news_link_desc {
  margin: 0 0 26px;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.news_link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 54px;
  margin: 0 auto;
  background-color: #222222;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
}

.news_link_btn span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news_link_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 10px;
  background-color: #fff;
  transform: translateY(-50%);
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.news_cta {
  padding: 70px 0 88px;
}

.news_cta_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  max-width: 100%;
  height: 82px;
  margin: 0 auto;
  background-color: #7972d8;
  border-radius: 6px;
  box-shadow: 6px 6px 0 #222222;
  color: #fff;
  text-decoration: none;
}

.news_cta_btn span {
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.news_cta_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 28px;
  height: 28px;
  background-color: #fff;
  transform: translateY(-50%);
  mask-image: url("../img/common/icon_mail.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/common/icon_mail.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

@media (max-width: 919px) {
  .news_archive_link {
    grid-template-columns: 1fr 32px;
    gap: 6px 12px;
    padding: 16px 0;
  }

  .news_archive_date {
    grid-column: 1/2;
    width: auto;
    font-size: 14px;
  }

  .news_archive_ttl {
    grid-column: 1/2;
  }

  .news_archive_icon {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

.information_single .news_single_content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 920px) {
  .information_single .news_single_content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }
}

.information_single .news_single_content>.news_single_content_block:not(.news_single_content_movie) {
  grid-column: 1/-1;
}

.information_single .news_single_content_movie {
  min-width: 0;
}

.information_single .news_single_content_movie_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.information_single .news_single_content_movie_inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}



@font-face {
  font-family: 'FumiOverride';
  font-weight: 400;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/zen-maru-gothic@latest/japanese-400-normal.woff2') format('woff2');
  unicode-range: U+6587;
  font-style: normal;
  size-adjust: 93%;
}

.company_detail_ttl {
  font-family: 'FumiOverride', fot-tsukuardgothic-std, sans-serif;

}

.company_detail_card_ttl {
  font-family: 'FumiOverride', fot-tsukuardgothic-std, sans-serif;

}

.company_other_item_ttl {
  font-family: 'FumiOverride', fot-tsukuardgothic-std, sans-serif;

}
