/*画面設定*/
:root {
  --vk-color-text-body: #313131;
}

.l-main {
  overflow: hidden;
}

.p-sub_pc_on {
  display: block;
}

table .p-sub_pc_on {
  display: table-cell;
  display: inline-block;
}

.p-sub_sp_on {
  display: none;
}

table .p-sub_sp_on {
  display: none;
}

#page_no_side {
  width: 100%;
  margin: 0;
}

.image {
  width: 100%;
  object-fit: fill;
}

/* アニメーション設定 */
.animate-slide_up {
  opacity: 0;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
}

.animate-slide_up.showed {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

@keyframes loop-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* font設定 */
/* font-family */
html,
body,
p,
h1,
h2,
h3,
h4,
h5,
th,
td,
time,
a {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
}

.lang-en {
  font-family: sans-serif !important;
}

.under-line {
  text-decoration: underline !important;
}

/* font-color */
.c-font-c_fff {
  color: #fff !important;
}

.c-font-c_313131 {
  color: #313131 !important;
}

.c-font-c_2B7CD1 {
  color: #2b7cd1 !important;
}

.c-font-c_1853A4 {
  color: #1853a4 !important;
}

.c-font-c_1135A8 {
  color: #1135a8 !important;
}

.c-font-c_A2B9D9 {
  color: #a2b9d9 !important;
}

.c-font-c_062176 {
  color: #062176 !important;
}

.c-font-c_091550 {
  color: #091550 !important;
}

.c-font-c_2293C6 {
  color: #2293c6 !important;
}

.c-font-c_500909 {
  color: #500909;
}

.c-font-c_FCA60D {
  color: #fca60d;
}

.c-font-c_F4762D {
  color: #f4762d;
}

.c-font-c_F55626 {
  color: #f55626;
}

.c-font-c_D32D01 {
  color: #d32d01;
}

/* 全体 */
html {
  margin: 0 !important;
}

body.is-menu-opened {
  overflow: hidden;
}

p {
  margin: 0;
}

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

.l-inner {
  width: 1280px;
  max-width: 100%;
  margin: 0px auto;
}

.l-sub-inner {
  width: 1060px;
  max-width: 100%;
  margin: 0px auto;
}

/* コンポーネント */

/* コンテナ */
.c-container {
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .c-container {
    padding-right: calc(20 / 393 * 100%);
    padding-left: calc(20 / 393 * 100%);
  }
}

.c-container.--narrow {
  max-width: 1140px;
}

/* ボタン */
.c-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-radius: 9999px;
  border: 2px solid;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button {
    height: 68px;
    font-size: 14px;
  }
}

.c-button__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-button__icon {
    width: 32px;
    height: 32px;
  }
}

.c-button__circle {
  transition: fill 0.3s;
}

.c-button__arrow {
  transition: fill 0.3s;
}

.c-button--blue {
  background-color: #2b7cd1;
  border-color: #2b7cd1;
  color: #fff !important;
}
.c-button--blue .c-button__circle {
  fill: #fff;
}
.c-button--blue .c-button__arrow {
  fill: #2b7cd1;
}

.c-button--white {
  background-color: #fff;
  border-color: #fff;
  color: #1853a4 !important;
}
.c-button--white .c-button__circle {
  fill: #c4ddff;
}
.c-button--white .c-button__arrow {
  fill: #1853a4;
}

@media (any-hover: hover) {
  .c-button--blue:hover {
    background-color: #fff;
    color: #2b7cd1 !important;
  }
  .c-button--blue:hover .c-button__circle {
    fill: #2b7cd1;
  }
  .c-button--blue:hover .c-button__arrow {
    fill: #fff;
  }

  .c-button--white:hover {
    background-color: transparent;
    color: #fff !important;
  }
  .c-button--white:hover .c-button__circle {
    fill: #fff;
  }
}

/* 見出し */
.c-heading {
  display: flex;
  flex-direction: column;
}

.c-heading__sub {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.c-heading__main {
  margin: 0;
  margin-block: calc((1em - 1lh) / 2);
  padding: 0;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #1853a4;
}

@media screen and (max-width: 1023px) {
  .c-heading__sub {
    font-size: 64px;
  }

  .c-heading__main {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading__sub {
    font-size: 50px;
    letter-spacing: 0;
  }

  .c-heading__main {
    font-size: 12px;
  }
}

/* 下層ページタイトル */
.c-page_head {
  position: relative;
  padding: 216px 0 20px;
  background: url("../images/common/page-head.jpg") no-repeat center / cover;
}
@media screen and (max-width: 767px) {
  .c-page_head {
    padding: 127px 0 17px;
    background-image: url("../images/common/page-head@sp.jpg");
  }

  .c-page_head.--has-nav {
    padding-bottom: 67px;
  }

  .c-page_head.--has-nav .c-breadcrumbs {
    margin-top: 44px;
  }
}

.c-page_head__title {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-page_head__title {
    row-gap: 0;
  }
}

.c-page_head__title_en {
  font-size: 80px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .c-page_head__title_en {
    font-size: 56px;
  }
}
@media screen and (max-width: 767px) {
  .c-page_head__title_en {
    font-size: 30px;
    line-height: calc(31 / 30);
  }
}

.c-page_head__title_ja {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .c-page_head__title_ja {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-page_head__title_ja {
    font-size: 14px;
  }
}

/* パンくず */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 10px;
  margin: 103px 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
    justify-content: flex-start;
    margin: 94px 0 0;
  }
}

.c-breadcrumbs__item {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 12px;
  list-style: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs__item {
    margin-block: 0;
    line-height: calc(17 / 12);
  }
}
.c-breadcrumbs__item:not(:last-of-type) {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.c-breadcrumbs__item:not(:last-of-type)::after {
  content: "";
  flex-shrink: 0;
  width: 17.7px;
  height: 0.5px;
  background-color: #fff;
}

.c-breadcrumbs__item h1 {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.c-breadcrumbs__item a {
  text-decoration: none !important;
  color: #fff !important;
  transition: opacity 0.3s;
}

.c-breadcrumbs__item a:hover {
  opacity: 0.75;
}

/* アンカーリンク */
.c-anchor-links {
  display: grid;
  justify-content: center;
  margin: 100px auto 0;
}

.c-anchor-links.--col-2 {
  max-width: 684px;
  grid-template-columns: repeat(2, 1fr);
}

.c-anchor-links.--col-3 {
  max-width: 1060px;
  grid-template-columns: repeat(3, 1fr);
}

.c-anchor-links.--col-4 {
  max-width: 1060px;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .c-anchor-links {
    grid-template-columns: 100% !important;
    max-width: 100%;
    margin: 60px auto 0;
    border-top: 1px solid #dbe2e7;
  }
}

.c-anchor-links__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #313131 !important;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .c-anchor-links__item {
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #dbe2e7;
    padding: 23.5px 10px;
    text-align: left;
  }
}
@media (any-hover: hover) {
  .c-anchor-links__item:hover {
    opacity: 0.7;
  }
}

.c-anchor-links__item::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  margin: 20px 0 0;
  background: url("../images/common/icon-anchor.svg") no-repeat center / contain;
}
@media screen and (max-width: 767px) {
  .c-anchor-links__item::after {
    width: 40px;
    height: 40px;
    margin: 1px 0 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .c-anchor-links__item:not(:last-of-type) {
    border-right: 1px solid #dbe2e7;
  }
}

.c-anchor-links__title {
  display: flex;
  flex-direction: column;
}

.c-anchor-links__number,
.c-anchor-links__en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-anchor-links__number,
  .c-anchor-links__en {
    font-size: 20px;
  }
}

.c-anchor-links__en {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-anchor-links__en {
    margin-top: 0;
    line-height: 1.15;
  }
}

.c-anchor-links__ja {
  margin-top: 6px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-anchor-links__ja {
    margin-top: 0;
    font-size: 14px;
    line-height: calc(19 / 14);
  }
}

/* ページネーション */
.c-pagination .navigation {
  margin: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .c-pagination .navigation {
    margin: 40px 0 0;
  }
}

.c-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.c-pagination ul.page-numbers li {
  overflow: visible;
}

.c-pagination ul.page-numbers .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 38px;
  height: 38px;
  border: none;
  border-radius: 9999px !important;
  background-color: rgba(43 124 209 / 0.13);
  padding: 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #2b7cd1;
  transition: background-color 0.3s;
}

.c-pagination ul.page-numbers .page-numbers.current {
  background-color: #2b7cd1;
  color: #fff;
}

.c-pagination ul.page-numbers .page-numbers.prev,
.c-pagination ul.page-numbers .page-numbers.next {
  border: 1px solid #2774c7;
  background: #fff url("../images/common/pager-arrow.svg") no-repeat center / 6.81px auto;
}
.c-pagination ul.page-numbers .page-numbers.prev {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .c-pagination ul.page-numbers a.page-numbers:hover {
    background-color: rgba(43 124 209 / 0.23);
  }

  .c-pagination ul.page-numbers .page-numbers.prev:hover,
  .c-pagination ul.page-numbers .page-numbers.next:hover {
    background-color: rgba(43 124 209 / 0.1);
  }
}

/* ヘッダー */
.site-header {
  width: calc(1280 / 1470 * 100%);
  position: fixed;
  z-index: 99999;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1279px) {
  .site-header {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 959px) {
  .site-header {
    top: 20px;
    width: calc(373 / 393 * 100%);
  }
}

.site-header__inner {
  height: 80px;
  margin: 0;
  padding: 0 25px 0 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .site-header__inner {
    padding: 0 15px 0 30px;
  }
}
@media screen and (max-width: 959px) {
  .site-header__inner {
    justify-content: space-between;
    height: 70px;
    padding: 0 12px 0 13px;
  }
}

.site-header__logo {
  width: 180px;
  margin: 0;
  margin-right: 58px;
  padding-bottom: 5px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .site-header__logo:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 959px) {
  .site-header__logo {
    width: 171px;
    margin-right: 0;
    padding-bottom: 0;
  }
}

.site-header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__nav-list {
  display: flex;
  position: relative;
  margin: unset;
  padding-left: 0;
  column-gap: 58px;
}
@media screen and (max-width: 1279px) {
  .site-header__nav-list {
    column-gap: 28px;
  }
}

.site-header__nav-item {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.site-header__nav-link,
.site-header__sub-link {
  transition: color 0.3s;
}

.site-header__nav-link.is-active {
  color: #2b7cd1;
}

@media (any-hover: hover) {
  .site-header__nav-link:hover,
  .site-header__sub-link:hover {
    color: #2b7cd1 !important;
  }
}

.site-header__nav-link {
  display: flex;
  align-items: center;
  height: 80px;
}

.site-header__contact-button {
  width: 182px;
  height: 50px;
  margin-left: 50px;
  padding: 0 20px;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .site-header__contact-button {
    display: none;
  }
}

.site-header__contact-button .c-button__icon {
  width: 28px;
  height: 28px;
}

.site-header__sub-list-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
}

.site-header__sub-list {
  display: none;
  background: #fff;
  border-radius: 14px;
  padding: 11.5px 25px;
  margin: 0;
  line-height: calc(31 / 14);
  white-space: nowrap;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.site-header__sub-link {
  position: relative;
  padding-left: 16px;
}

.site-header__sub-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0f3f8e;
}

.site-header__menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 4.5px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #2b7cd1;
}
@media screen and (min-width: 960px) {
  .site-header__menu-button {
    display: none;
  }
}

.site-header__menu-button__line,
.site-header__menu-button::before,
.site-header__menu-button::after {
  content: "";
  width: 21px;
  height: 1.5px;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}

body.is-menu-opened .site-header__menu-button__line {
  opacity: 0;
}

body.is-menu-opened .site-header__menu-button::before {
  transform: translateY(6px) rotate(45deg);
}

body.is-menu-opened .site-header__menu-button::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: #fff;
  overflow-y: scroll;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
}
body.is-menu-opened .mobile-menu {
  transform: none;
}

.mobile-menu__nav {
  padding: 130px calc(21.5 / 393 * 100%) 70px;
}

.mobile-menu__list {
  padding-left: 0;
  border-bottom: 0.5px solid #2b7cd1;
}

.mobile-menu__item {
  border-top: 0.5px solid #2b7cd1;
}

.mobile-menu__nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s;
  cursor: pointer;
}
@media (any-hover: hover) {
  .mobile-menu__nav-link:hover {
    background-color: rgba(213 233 255 / 0.3);
    color: var(--vk-color-text-body);
  }
}

.mobile-menu__toggle-button {
  position: relative;
  display: flex;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #2774c7;
}
.mobile-menu__toggle-button::before {
  content: "";
  width: 9px;
  height: 1px;
  margin: auto;
  background-color: #2774c7;
}
.mobile-menu__toggle-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 9.5px;
  transform: translate(-50%, -50%);
  background-color: #2774c7;
}
.mobile-menu__nav-link.is-expanded .mobile-menu__toggle-button::after {
  display: none;
}

.mobile-menu__sub-list {
  display: none;
  margin-top: -5px;
  padding-left: 0;
  overflow: hidden;
}

.mobile-menu__sub-link {
  display: flex;
  align-items: center;
  height: 35px;
  padding-left: 31px;
  font-size: 14px;
  font-weight: 600;
}

@media (any-hover: hover) {
  .mobile-menu__sub-link:hover {
    background-color: rgba(213 233 255 / 0.3);
    color: #2b7cd1;
  }
}

.mobile-menu__contact-button {
  width: 240px;
  height: 68px;
  margin-top: 40px;
  padding: 0 25px 0 65px;
  font-size: 14px;
}

/* フッター */
.footer {
  background: #f2f8fc;
}

/* footer-contact */
.footer_contact {
  padding: 100px 0;
}
@media screen and (max-width: 1023px) {
  .footer_contact {
    padding: 70px 0;
  }
}

.footer_contact_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../images/common/contact-bg.png") no-repeat center / cover;
  text-align: center;
  padding: 60px 40px;
  border-radius: 60px;
}
@media screen and (max-width: 767px) {
  .footer_contact_contents {
    margin: 0 -12px;
    padding: 50px 25px;
    border-radius: 50px;
    background-image: url("../images/common/contact-bg@sp.png");
  }
}

.footer_contact_title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .footer_contact_title {
    font-size: 64px;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact_title {
    font-size: 50px;
  }
}

.footer_contact_text {
  margin-top: 67.5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .footer_contact_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact_text {
    margin-top: 38.5px;
    line-height: 2.625;
  }
}

.footer_contact_button {
  width: 333px;
  height: 74px;
  margin-top: 66.5px;
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  .footer_contact_button {
    width: 277px;
    height: 68px;
    margin-top: 38.5px;
    padding: 0 25px 0 33px;
    font-size: 14px;
  }
}

.footer_contact_icon {
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 767px) {
  .footer_contact_icon {
    width: 32px;
    height: 32px;
  }
}

/* footer-info */
.footer_info {
  border-radius: 6.25rem 6.25rem 0 0;
  background: #003895;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_info {
    border-radius: 60px 60px 0 0;
  }
}

.footer_page_top_button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  padding-bottom: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #2b7cd1;
  background-color: #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1023px) {
  .footer_page_top_button {
    width: 93px;
    height: 93px;
    padding-bottom: 7px;
  }
}
@media (any-hover: hover) {
  .footer_page_top_button:hover {
    opacity: 0.8;
  }
}

.footer_page_top_icon {
  width: 15px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .footer_page_top_icon {
    width: 13px;
  }
}

.footer_page_top_text {
  margin-top: 19px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #2b7cd1;
}
@media screen and (max-width: 1023px) {
  .footer_page_top_text {
    margin-top: 16px;
    font-size: 14px;
  }
}

.footer_info_container {
  display: flex;
  justify-content: space-between;
  column-gap: 36px;
  margin-top: 30px;
  font-size: 16px;
}
@media screen and (max-width: 1279px) {
  .footer_info_container {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer_info_container {
    flex-direction: column;
    row-gap: 50px;
  }
}

.footer_top {
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer_top {
    padding-top: 71px;
  }
}

.footer_logo {
  display: block;
  width: 236px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 167px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .footer_info_company {
    text-align: center;
  }
}

.footer_company_name {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .footer_company_name {
    display: inline;
    margin-right: 0.75em;
    font-size: 12px;
    line-height: calc(20 / 12);
  }
}

.footer_address {
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .footer_address {
    display: inline;
    font-size: 12px;
    line-height: calc(20 / 12);
  }
}

.footer_sns_list {
  display: flex;
  column-gap: 20px;
  list-style: none;
  margin: 30px 0 0;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .footer_sns_list {
    justify-content: center;
    margin: 18.5px 0 0;
  }
}

.footer_sns_item {
  margin: 0;
}

.footer_sns_icon {
  width: auto;
  height: 30px;
}

.footer_info_list {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 50px 86px;
  margin: 0;
  padding-right: 8.59375%;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 1470px) {
  .footer_info_list {
    gap: 50px calc(86 / 1470 * 100vw);
  }
}
@media screen and (max-width: 1023px) {
  .footer_info_list {
    gap: 50px 20px;
    padding-right: 0;
  }
}

.footer_info_list_item {
  margin: 0;
}

.footer_info_list_title {
  text-decoration: none;
  font-size: 1.1875em;
  font-weight: bold;
  line-height: calc(20 / 19);
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .footer_info_list_title {
    font-size: 14px;
    line-height: calc(15 / 14);
  }
}

.footer_info_sub_list {
  margin: 19px 0 0;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .footer_info_sub_list {
    margin: 12px 0 0;
  }
}

.footer_info_sub_item {
  margin: 12px 0 0;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .footer_info_sub_item {
    margin: 9px 0 0;
  }
}

.footer_info_sub_link {
  position: relative;
  display: block;
  padding-left: 1em;
  text-decoration: none;
  font-size: 1em;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .footer_info_sub_link {
    padding-left: 10px;
    font-size: 12px;
  }
}

.footer_info_sub_link::before {
  content: "−";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 20px;
  margin-top: 70px;
  padding: 22px 0;
  border-top: 0.5px solid #fff;
  font-size: 12px;
  line-height: calc(17 / 12);
}
@media screen and (max-width: 767px) {
  .footer_bottom {
    column-gap: 24px;
    margin-top: 54px;
    padding: 28px 0;
  }
}

.footer_copyright {
  font-size: 12px;
}

.footer_privacy_link {
  margin-left: auto;
  text-decoration: underline;
  color: #fff;
}

.footer_privacy_icon {
  width: 80px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer_privacy_icon {
    width: 44px;
  }
}

/* トップページ */
body.home {
  overflow-x: unset;
}

/* kv */
.top_kv_wrapper {
  position: relative;
  overflow: hidden;
}

.top_kv {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  max-height: 100svh;
  min-height: 827px;
  object-fit: cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top_kv {
    height: 100vh;
    height: 100svh;
    min-height: unset;
    transform: scale(1.25);
  }
}

.top_kv_inner {
  position: absolute;
  inset: 0;
}

.top_kv_scroll_wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 4.626%;
}
@media screen and (max-width: 767px) {
  .top_kv_scroll_wrapper {
    padding-bottom: 27px;
  }
}

.top_kv_scroll {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_kv_scroll {
    margin-right: 11px;
  }
}

.top_kv_ripple {
  position: relative;
  z-index: 0;
}

.top_kv_ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  box-shadow: 0 0 0 rgba(43 124 209 / 0.25);
  opacity: 0;
  animation: ripple 3s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 40px rgba(43 124 209 / 0.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.top_kv_scroll_icon {
  display: block;
  width: 45.5px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_kv_scroll_icon {
    width: 33.5px;
  }
}

.top_kv_scroll_text {
  margin-top: 9.8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .top_kv_scroll_text {
    margin-top: 7px;
    font-size: 11px;
  }
}

/* top_company */
.top_company {
  padding: 100px 0 63px;
}

.top_company__title {
  display: inline-flex;
  flex-direction: column;
  row-gap: 14px;
}

@media screen and (max-width: 767px) {
  .top_company__title {
    row-gap: 20px;
  }
}

.top_company__title_en {
  background: linear-gradient(90deg, #0f3f8e, #2b7cd1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 125px;
  font-weight: 700;
  line-height: 0.96;
  color: #0f3f8e;
}
@media screen and (max-width: 1023px) {
  .top_company__title_en {
    font-size: 86px;
  }
}
@media screen and (max-width: 767px) {
  .top_company__title_en {
    margin-block: calc((1em - 1lh) / 2);
    font-size: 52px;
    letter-spacing: 0.04em;
    line-height: calc(60 / 52);
    white-space: nowrap;
  }
}

.top_company__title_ja {
  display: flex;
  align-items: center;
  column-gap: 18px;
  margin-block: calc((1em - 1lh) / 2);
  background: linear-gradient(90deg, #0f3f8e, #2b7cd1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  border: none;
  font-size: 26px;
  color: #0f3f8e;
}
@media screen and (max-width: 1023px) {
  .top_company__title_ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .top_company__title_ja {
    position: relative;
    column-gap: 15px;
    font-size: 23px;
    letter-spacing: 0.09em;
    line-height: calc(44 / 23);
    white-space: nowrap;
  }
}

.top_company__title_ja::after {
  content: "";
  width: 192px;
  height: 1px;
  background-color: #2b7cd1;
}
@media screen and (max-width: 1023px) {
  .top_company__title_ja::after {
    width: 128px;
  }
}
@media screen and (max-width: 767px) {
  .top_company__title_ja::after {
    position: absolute;
    width: 116px;
    right: 0;
    bottom: 20px;
  }
}

.top_company__content_wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 100px;
  padding-right: 88px;
}
@media screen and (max-width: 1023px) {
  .top_company__content_wrapper {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top_company__content_wrapper {
    justify-content: center;
    margin-top: 70px;
  }
}

.top_company__heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_company__heading {
    font-size: 26px;
    line-height: calc(36 / 26);
    letter-spacing: 0.16em;
  }
}

.top_company__text {
  margin-top: 45px;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .top_company__text {
    margin-top: 36px;
    line-height: 2.875;
  }
}

.top_company__button {
  width: 232px;
  margin-top: 84px;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .top_company__button {
    width: 240px;
    margin-top: 36px;
    padding: 0 25px 0 52px;
  }
}

.top_company__slider_wrapper {
  margin-top: 100px;
  display: flex;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .top_company__slider_wrapper {
    margin-top: 70px;
  }
}

.top_company__slider {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  column-gap: calc(30 / 1470 * 100vw);
  padding: 0 calc(15 / 1470 * 100vw);
  animation: loop-left 40s infinite linear both;
}
@media screen and (max-width: 767px) {
  .top_company__slider {
    column-gap: 15px;
    padding: 0 7.5px;
  }
}

.top_company__slide_img {
  height: auto;
  border-radius: 26px;
}
.top_company__slide_img.--01 {
  width: calc(440 / 1470 * 100vw);
}
.top_company__slide_img.--02 {
  width: calc(380 / 1470 * 100vw);
  margin-top: calc(30 / 1470 * 100vw);
}
.top_company__slide_img.--03 {
  width: calc(320 / 1470 * 100vw);
  margin-top: calc(60 / 1470 * 100vw);
}
.top_company__slide_img.--04 {
  width: calc(380 / 1470 * 100vw);
  margin-top: calc(30 / 1470 * 100vw);
}
.top_company__slide_img.--05 {
  width: calc(440 / 1470 * 100vw);
  margin-top: calc(33 / 1470 * 100vw);
}
.top_company__slide_img.--06 {
  width: calc(380 / 1470 * 100vw);
  margin-top: calc(75 / 1470 * 100vw);
}
.top_company__slide_img.--07 {
  width: calc(320 / 1470 * 100vw);
  margin-top: calc(105 / 1470 * 100vw);
}

@media screen and (max-width: 767px) {
  .top_company__slide_img.--01 {
    width: 220px;
  }
  .top_company__slide_img.--02 {
    width: 190px;
    margin-top: 15px;
  }
  .top_company__slide_img.--03 {
    width: 160px;
    margin-top: 30px;
  }
  .top_company__slide_img.--04 {
    width: 190px;
    margin-top: 15px;
  }
  .top_company__slide_img.--05 {
    width: 220px;
    margin-top: 16px;
  }
  .top_company__slide_img.--06 {
    width: 190px;
    margin-top: 38px;
  }
  .top_company__slide_img.--07 {
    width: 160px;
    margin-top: 53px;
  }
}

/* top_service */
.top_service {
  padding: 104px 0 96px;
  border-radius: 8.75rem 0 8.75rem 0;
  background-image: linear-gradient(180deg, #f5fbff, #9fcefd);
}
@media screen and (max-width: 767px) {
  .top_service {
    position: relative;
    padding: 70px 0 183px;
    border-radius: 60px 0 60px 0;
  }
}

.top_service__container {
  display: grid;
  grid-template-columns: calc(486 / 1280 * 100%) 1fr;
  align-items: flex-start;
  column-gap: calc(141 / 1470 * 100%);
}
@media screen and (max-width: 767px) {
  .top_service__container {
    grid-template-columns: 100%;
    row-gap: 45px;
  }
}

.top_service__sticky {
  order: 2;
  position: sticky;
  top: 160px;
}
@media screen and (max-width: 767px) {
  .top_service__sticky {
    order: 1;
    position: static;
  }
}

@media screen and (min-width: 768px) {
  .top_service .c-heading__main {
    padding-left: 5px;
  }
}

.top_service__description {
  margin: 80px -4px 0 0;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 1023px) {
  .top_service__description {
    margin: 64px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .top_service__description {
    margin: 40px 0 0;
    font-size: 14px;
  }
}

.top_service__button {
  width: 280px;
  margin-top: 80px;
  padding: 0 25px;
}
@media screen and (max-width: 1023px) {
  .top_service__button {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .top_service__button {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 240px;
    margin-top: 0;
    transform: translate(-50%);
  }
}

.top_service__list {
  order: 1;
  display: flex;
  flex-direction: column;
  row-gap: 56px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .top_service__list {
    order: 2;
    row-gap: 45px;
  }
}

.top_service__item {
  margin: 0;
}

.top_service__item_link {
  display: block;
  text-decoration: none;
  color: var(--vk-color-text-body) !important;
}

.top_service__img_wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.top_service__img_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(29 91 207 / 0.7);
  transform: scale(0);
  border-radius: 50%;
  opacity: 0;
  transition: transform 0.3s, border-radius 0.3s, opacity 0.3s;
}

@media (any-hover: hover) {
  .top_service__item_link:hover .top_service__img_wrapper::before {
    transform: none;
    border-radius: 0;
    opacity: 1;
  }
}

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

.top_service__item_number {
  position: absolute;
  bottom: -11px;
  left: 12px;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255 255 255 / 0.5);
}
@media screen and (max-width: 1359px) {
  .top_service__item_number {
    bottom: calc(-11 / 1360 * 100vw);
    left: calc(12 / 1360 * 100vw);
    font-size: calc(80 / 1360 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .top_service__item_number {
    bottom: 0;
    left: 10px;
    font-size: 48px;
  }
}

.top_service__item_title {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  border: none;
  font-size: 24px;
  font-weight: 600;
  line-height: calc(33 / 24);
}
@media screen and (max-width: 1023px) {
  .top_service__item_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_service__item_title {
    align-items: center;
    margin: 19px 0 0;
    font-size: 22px;
    line-height: calc(30 / 22);
  }
}

.top_service__item_title::after {
  content: "";
  flex-shrink: 0;
  position: sticky;
  width: 35px;
  height: 35px;
  border: none;
  background: url("../images/top/service-arrow.svg") no-repeat center / contain;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .top_service__item_title::after {
    width: 28px;
    height: 28px;
  }
}

.top_service__item_text {
  margin-top: 14px;
  font-size: 16px;
  line-height: calc(26 / 16);
}
@media screen and (max-width: 1023px) {
  .top_service__item_text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top_service__item_text {
    margin-top: 15px;
    margin-right: -10.5px;
    line-height: 1.75;
  }
}

/* top_member */
.top_member {
  padding: 104px 0 100px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .top_member {
    padding: 70px 0;
  }
}

.top_member__container {
  display: flex;
  column-gap: 9.375%;
}
@media screen and (max-width: 767px) {
  .top_member__container {
    position: relative;
    flex-direction: column;
    row-gap: 40px;
    padding-bottom: 168px;
  }
}

.top_member__button {
  width: 278px;
  margin-top: 109px;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .top_member__button {
    position: absolute;
    bottom: 70px;
    left: 50%;
    width: 240px;
    transform: translateX(-50%);
  }
}

.top_member__slider.swiper {
  flex-shrink: 0;
  width: calc(890 / 1470 * 100vw);
  margin-top: 60px;
  padding: 0 20px 80px 0;
}
@media screen and (max-width: 1023px) {
  .top_member__slider.swiper {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .top_member__slider.swiper {
    width: unset;
    margin-right: calc(50% - 50vw);
    margin-left: 0;
    margin-top: 0;
    padding-bottom: 60px;
  }
}

.top_member__slide.swiper-slide {
  width: calc(388 / 1470 * 100vw);
  margin-right: 20px;
}
@media screen and (max-width: 1279px) {
  .top_member__slide.swiper-slide {
    width: 338px;
  }
}
@media screen and (max-width: 1023px) {
  .top_member__slide.swiper-slide {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .top_member__slide.swiper-slide {
    width: calc(301 / 393 * 100vw);
    margin-right: 16px;
  }
}

.top_member__slide_link {
  display: block;
  color: var(--vk-color-text-body) !important;
}

.top_member__slide_img_wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e5e5e5;
}
@media screen and (max-width: 767px) {
  .top_member__slide_img_wrapper {
    border-radius: 10px;
  }
}

.top_member__slide_img_wrapper::before {
  content: "";
  display: block;
  padding-top: calc(218 / 388 * 100%);
}

.top_member__slide_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .top_member__slide_link:hover .top_member__slide_img {
    transform: scale(1.03);
  }
}

.top_member__slide_label {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  min-width: 147px;
  padding: 5px 16px;
  border-radius: 0 0 0 10px;
  background-image: linear-gradient(90deg, #1e57b4, #62cfff);
  font-size: 14px !important;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .top_member__slide_label {
    min-width: 118px;
    font-size: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .top_member__slide_label {
    min-width: 113px;
    padding: 2.5px 13px;
    font-size: 13px !important;
  }
}

.top_member__slide_title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(22 / 16);
}
@media screen and (max-width: 1023px) {
  .top_member__slide_title {
    font-size: 14px !important;
  }
}

.top_member__slider_controls {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  column-gap: 19px;
  width: calc(795 / 910 * 100%);
}
@media screen and (max-width: 1279px) {
  .top_member__slider_controls {
    width: 75%;
  }
}
@media screen and (max-width: 1023px) {
  .top_member__slider_controls {
    width: 68%;
    column-gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top_member__slider_controls {
    width: calc(100% - 20px);
    column-gap: 13px;
  }
}

.top_member__slider .swiper-pagination {
  position: static;
  height: 5px !important;
  border-radius: 9999px;
  overflow: hidden;
  background-color: #dbe2e7 !important;
  margin-right: 19px;
}
@media screen and (max-width: 1023px) {
  .top_member__slider .swiper-pagination {
    margin-right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top_member__slider .swiper-pagination {
    margin-right: 8px;
  }
}

.top_member__slider .swiper-pagination-progressbar-fill {
  background-color: #2b7cd1 !important;
}

.top_member__slider .swiper-button-next,
.top_member__slider .swiper-button-prev {
  flex-shrink: 0;
  position: static;
  width: 45px;
  height: 45px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #2774c7;
  background: url("../images/top/slide-arrow.svg") no-repeat center / 8.3px auto;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .top_member__slider .swiper-button-next,
  .top_member__slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    background-size: 6.4px auto;
  }
}
@media (any-hover: hover) {
  .top_member__slider .swiper-button-next:hover,
  .top_member__slider .swiper-button-prev:hover {
    opacity: 0.6;
  }
}

.top_member__slider .swiper-button-prev {
  transform: rotate(180deg);
}

.top_member__banner_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.25%;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top_member__banner_list {
    grid-template-columns: 100%;
    row-gap: 20px;
    margin-top: 0;
  }
}

.top_member__banner {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 2px 3px 6px rgba(0 0 0 / 0.16);
}

/* top_recruit */
.top_recruit {
  overflow-x: hidden;
}

.top_recruit__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 60px;
  padding: calc(80 / 1470 * 100%) 40px;
  background: url("../images/top/recruit-bg.jpg") no-repeat center / cover;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_recruit__body {
    padding: calc(70 / 393 * 100%) 20px;
    background-image: url("../images/top/recruit-bg@sp.jpg");
  }
}

.top_recruit__title {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .top_recruit__title {
    font-size: 64px;
  }
}
@media screen and (max-width: 767px) {
  .top_recruit__title {
    font-size: 50px;
    text-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
  }
}

.top_recruit__description {
  margin-top: calc(77 / 1390 * 100%);
  font-size: 22px;
  font-weight: 600;
  line-height: calc(30 / 22);
}
@media screen and (max-width: 1023px) {
  .top_recruit__description {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_recruit__description {
    margin-top: calc(30 / 393 * 100%);
    font-size: 24px;
    line-height: calc(40 / 24);
    text-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
  }
}

.top_recruit__text {
  margin-top: calc(46 / 1390 * 100%);
  font-size: 16px;
  font-weight: 600;
  line-height: 2.5;
}
@media screen and (max-width: 1023px) {
  .top_recruit__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top_recruit__text {
    margin-top: calc(60 / 393 * 100%);
    font-size: 16px;
    line-height: 2.25;
    text-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
  }
}

.top_recruit__button {
  width: 268px;
  margin-top: calc(65 / 1390 * 100%);
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  .top_recruit__button {
    width: 240px;
    margin-top: calc(56 / 393 * 100%);
    padding: 0 25px 0 45px;
  }
}

.top_recruit__loop {
  display: flex;
  white-space: nowrap;
}

.top_recruit__loop_text {
  padding: 0 0.25em;
  font-size: calc(180 / 1470 * 100vw);
  font-weight: 700;
  line-height: calc(183 / 180);
  color: rgba(24 83 164 / 0.08);
  animation: loop-left 20s infinite linear both;
}
@media screen and (max-width: 767px) {
  .top_recruit__loop_text {
    font-size: calc(120 / 393 * 100vw);
    line-height: calc(122 / 120);
  }
}

/* top_news */
.top_news {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top_news {
    position: relative;
    padding-top: 70px;
    padding-bottom: 178px;
  }
}

.top_news__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.top_news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top_news__head {
    display: block;
  }
}

.top_news__button {
  width: 247px;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .top_news__button {
    position: absolute;
    bottom: 70px;
    left: 50%;
    width: 240px;
    padding: 0 25px 0 35px;
    transform: translateX(-50%);
  }
}

.top_news__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .top_news__list {
    row-gap: 10px;
    margin-top: 40px;
  }
}

.top_news__item_link {
  position: relative;
  display: block;
  padding: 16px 120px 27px 40px;
  border: 1px solid #dbe2e7;
  border-radius: 7px;
  color: var(--vk-color-text-body);
  transition: background-color 0.3s, border-color 0.3s;
}
.top_news__item_link:hover {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .top_news__item_link {
    min-height: 140px;
    padding: 16px 20px 36px;
  }
}

.top_news__item_head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top_news__item_category {
  padding: 5.5px 15px;
  border-radius: 9999px;
  background-color: rgba(43 124 209 / 0.1);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #2b7cd1;
}

.top_news__item_date {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 2;
  color: rgba(24 83 164 / 0.4);
}

.top_news__item_title {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top_news__item_title {
    font-size: 14px;
    line-height: 1.75;
  }
}

.top_news__item_icon {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  right: 40px;
  height: auto;
}

.top_news__item_icon_circle {
  fill: #2b7cd1;
  transition: fill 0.3s;
}
.top_news__item_icon_arrow {
  fill: #fff;
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .top_news__item_link:hover {
    border-color: #ebf8ff;
    background-color: #ebf8ff;
  }

  .top_news__item_link:hover .top_news__item_icon_circle {
    fill: #fff;
  }
  .top_news__item_link:hover .top_news__item_icon_arrow {
    fill: #2b7cd1;
  }
}

/* 会社情報ページ */
.page_nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  width: calc(687 / 1470 * 100%);
  max-width: 687px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .page_nav {
    width: calc(234 / 393 * 100%);
  }
}

.page_nav__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 80px;
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page_nav__button {
    height: 50px;
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .page_nav__button:hover {
    background-color: #fff;
    color: #2b7cd1;
  }
}
.page_nav__button:first-of-type {
  border-radius: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .page_nav__button:first-of-type {
    border-radius: 20px 0 0 0;
  }
}
.page_nav__button:last-of-type {
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 767px) {
  .page_nav__button:last-of-type {
    border-radius: 0 20px 0 0;
  }
}

.page_nav__button.is-active {
  cursor: default;
  background-color: #fff;
  color: #2b7cd1;
}

/* PHILOSOPHY */
.company_philosophy {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .company_philosophy {
    padding-top: 100px;
  }
}

.company_philosophy__img_wrapper {
  position: relative;
  max-width: 79.5em;
  margin-top: 60px;
  margin: 60px auto 0;
  font-size: 10px;
}
@media screen and (max-width: 1239px) {
  .company_philosophy__img_wrapper {
    font-size: calc(10 / 1240 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .company_philosophy__img_wrapper {
    max-width: 100%;
    margin: 21px auto 0;
    font-size: calc(10 / 393 * 100vw);
  }
}

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

.company_philosophy__caption {
  position: absolute;
  display: flex;
  padding-bottom: 1.8em;
  background: no-repeat bottom left / 100% 2px;
  opacity: 0;
  transition: opacity 1s;
}
.company_philosophy__caption.is-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .company_philosophy__caption {
    padding-bottom: 0.95em;
    background-size: 100% 1px;
  }
}

.company_philosophy__caption.--01 {
  top: 6.09em;
  right: -13.2em;
  justify-content: flex-end;
  width: 31.23em;
  background-image: linear-gradient(90deg, #0f3f8e, #2b7cd1);
}
@media screen and (max-width: 767px) {
  .company_philosophy__caption.--01 {
    top: 4.3em;
    right: 0;
    width: 10em;
    text-align: right;
    background-position: bottom left 2em;
  }
}

.company_philosophy__caption.--02 {
  top: 34.53em;
  left: -13.3em;
  width: 37.2em;
  background-image: linear-gradient(90deg, #4f64b2, #4f64b2);
}
@media screen and (max-width: 767px) {
  .company_philosophy__caption.--02 {
    top: 12.45em;
    left: 0;
    width: 10.1em;
  }
}

.company_philosophy__caption.--03 {
  bottom: 6.93em;
  right: -13.2em;
  justify-content: flex-end;
  width: 45.7em;
  background-image: linear-gradient(90deg, #4683d6, #4683d6);
}
@media screen and (max-width: 767px) {
  .company_philosophy__caption.--03 {
    bottom: 1.5em;
    right: 0;
    width: 13.4em;
    text-align: right;
  }
}

.company_philosophy__caption_text {
  display: flex;
  flex-direction: column;
  row-gap: calc(12em / 22);
  font-size: 2.2em;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: calc(30 / 22);
}
@media screen and (max-width: 767px) {
  .company_philosophy__caption_text {
    font-size: 1.2em;
    line-height: calc(17 / 12);
  }
}

.company_philosophy__caption_text strong {
  display: block;
  margin-block: calc((1em - 1lh) / 2);
  font-size: calc(40em / 22);
  font-weight: 600;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .company_philosophy__caption_text strong {
    font-size: calc(16em / 12);
    line-height: 1.375;
  }
}

.company_philosophy__list {
  display: grid;
  grid-template-columns: repeat(1, 100%);
  row-gap: 3.75em;
  margin: 5em 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1359px) {
  .company_philosophy__list {
    font-size: calc(16 / 1360 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .company_philosophy__list {
    row-gap: 30px;
    margin: 66px 0 0;
    font-size: 16px;
  }
}

.company_philosophy__item {
  display: grid;
  grid-template-columns: 19.375em 1fr;
  align-items: center;
  aspect-ratio: 1280 / 300;
  column-gap: 3.125em;
  margin: 0;
  padding: 1.4375em 3em 1.4375em 6.875em;
  border-radius: 2.5em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .company_philosophy__item {
    display: flex;
    flex-direction: column;
    aspect-ratio: unset;
    padding: 40px 23.5px 50px;
    border-radius: 40px;
  }
}

.company_philosophy__item.--01 {
  background-image: linear-gradient(105deg, #0246a2, #63b9ef);
}

.company_philosophy__item.--02 {
  background-image: linear-gradient(105deg, #466eb9, #7487d3);
}

.company_philosophy__item.--03 {
  background-image: linear-gradient(105deg, #1e6ad1, #70a0e3);
}

@media screen and (max-width: 767px) {
  .company_philosophy__item.--01 {
    row-gap: 30px;
  }
  .company_philosophy__item.--02 {
    row-gap: 36px;
  }
  .company_philosophy__item.--03 {
    row-gap: 43px;
  }
}

.company_philosophy__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .company_philosophy__heading {
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

.company_philosophy__heading_en {
  margin: calc((1em - 1lh) / 2) 0;
  font-size: 3.75em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company_philosophy__heading_en {
    font-size: 45px;
  }
}

.company_philosophy__heading_ja {
  margin: calc((1em - 1lh) / 2) 0;
  padding: 0;
  border: none;
  font-size: 1em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .company_philosophy__heading_ja {
    font-size: 12px;
  }
}
.company_philosophy__heading_ja::after {
  display: none;
}

.company_philosophy__text_lg {
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .company_philosophy__text_lg {
    font-size: 30px;
    line-height: calc(41 / 30);
  }
}

.company_philosophy__text_md {
  font-size: 1.875em;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: calc(50 / 30);
}
@media screen and (max-width: 767px) {
  .company_philosophy__text_md {
    text-align: center;
    font-size: 22px;
    line-height: calc(34 / 22);
  }
}

.company_philosophy__text_sm {
  margin-top: 1em;
  font-size: 1.25em;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .company_philosophy__text_sm {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* MESSAGE */
.company_message {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .company_message {
    padding-top: 70px;
  }
}

.company_message__inner {
  padding: 101px 0 100px;
  border-radius: 7.5rem 0 0 0;
  background-image: linear-gradient(180deg, #eaf5ff, #fff);
}
@media screen and (max-width: 767px) {
  .company_message__inner {
    padding: 70px 0;
    border-radius: 60px 0 0 0;
  }
}

.company_message__contents {
  max-width: 1060px;
  margin: 0 auto;
}

.company_message__img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 70px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .company_message__img {
    margin-top: 40px;
    border-radius: 20px;
  }
}

.company_message__heading {
  margin: 45px 0 0;
  padding-bottom: 14.5px;
  border-bottom: 2px solid #2b7cd1;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.34375;
}
@media screen and (max-width: 767px) {
  .company_message__heading {
    margin: 20px 0 0;
    padding-bottom: 10px;
    font-size: 22px;
    line-height: calc(30 / 22);
  }
}
.company_message__heading::after {
  display: none;
}

.company_message__text_wrapper {
  margin-top: 43px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.75rem;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .company_message__text_wrapper {
    grid-template-columns: 100%;
    row-gap: 1.75em;
    margin-top: 27px;
    font-size: 16px;
    line-height: 1.375;
  }
}

@media screen and (min-width: 768px) {
  .company_message__text_wrapper p:nth-child(2) {
    margin-right: -0.25em;
  }
}

.company_message__author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 12px;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .company_message__author {
    row-gap: 6px;
    margin-top: 37px;
  }
}

.company_message__author_position {
  font-weight: 600;
  line-height: 1.375;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .company_message__author_position {
    font-size: 15px;
    line-height: calc(20 / 15);
  }
}

.company_message__author_name {
  width: 12.125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .company_message__author_name {
    width: 161px;
  }
}

/* OUTLINE */
.company_outline {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .company_outline {
    padding-top: 100px;
  }
}

.company_outline__table {
  margin-top: 56px;
  border: none;
}
@media screen and (max-width: 767px) {
  .company_outline__table {
    margin-top: 40px;
  }
}

.company_outline__th {
  position: relative;
  width: 16.875rem;
  padding: 22px 46px 22px 26px;
  border: none;
  background: linear-gradient(90deg, #2b7cd1, #2b7cd1) no-repeat left bottom / calc(100% - 1.25rem) 1px;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .company_outline__th {
    width: 174px;
    padding: 28px 2px 28px 5px;
    background-size: calc(100% - 14px) 1px;
    font-size: 14px;
  }
}

.company_outline__td {
  padding: 16px 20px;
  border: none;
  background: linear-gradient(90deg, rgba(43 124 209 / 0.4), rgba(43 124 209 / 0.4)) no-repeat left bottom / 100% 1px;
  font-size: 1rem;
  line-height: 2.125;
}
.company_outline__td p:not(:first-of-type) {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .company_outline__td {
    padding: 11px 10px;
    font-size: 12px;
    line-height: calc(20 / 12);
  }

  .company_outline__td p:not(:first-of-type) {
    margin-top: 14px;
  }
}

.company_outline__list {
  margin: 13px 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .company_outline__list {
    margin: 14px 0;
    line-height: calc(32 / 12);
  }
}

.company_outline__list li {
  margin: 0;
}

/* HISTORY */
.company_history {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .company_history {
    padding-top: 62px;
  }
}

.company_history__inner {
  padding: 100px 0;
  border-radius: 7.5rem 0 7.5rem 0;
  background-image: linear-gradient(180deg, #f5fbff, #e6f3ff);
}
@media screen and (max-width: 767px) {
  .company_history__inner {
    padding: 78px 0 70.5px;
    border-radius: 60px 0 60px 0;
  }
}

.company_history__slider.swiper {
  margin: 74px calc(50% - 50vw) 0;
  padding: 0 calc((100vw - 1060px) / 2) 64px;
}
@media screen and (max-width: 1159px) {
  .company_history__slider.swiper {
    padding: 0 40px 64px;
  }
}
@media screen and (max-width: 767px) {
  .company_history__slider.swiper {
    margin-top: 60px;
    padding: 0 20px 64px;
  }
}

.company_history__slider_wrapper.swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, calc(296 / 1470 * 100vw));
}
@media screen and (max-width: 1469px) {
  .company_history__slider_wrapper.swiper-wrapper {
    grid-template-columns: repeat(6, 296px);
  }
}
@media screen and (max-width: 767px) {
  .company_history__slider_wrapper.swiper-wrapper {
    grid-template-columns: repeat(6, 301px);
  }
}

.company_history__slide.swiper-slide {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .company_history__slide.swiper-slide {
    row-gap: 51px;
  }
}

.company_history__year {
  position: relative;
  padding-bottom: 0.4375em;
  border-bottom: 1px solid rgba(49 49 49 / 0.3);
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .company_history__year {
    padding-bottom: 16px;
    padding-left: 7px;
  }
}

.company_history__year::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 1.4375rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .company_history__year::before {
    width: 16px;
    height: 16px;
    bottom: -8px;
    left: 25px;
  }
}

.company_history__card {
  position: relative;
  width: calc(100% - 1.3125rem);
  margin: 0;
  padding: 1.875rem 1.375rem 2.4375rem;
  background-color: #fff;
  border-radius: 0.5625rem;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
}
@media screen and (max-width: 767px) {
  .company_history__card {
    width: calc(100% - 26px);
    padding: 30px 23px 39px;
    border-radius: 9px;
    font-size: 16px;
  }
}

.company_history__card::before {
  content: "";
  position: absolute;
  top: -3.0625rem;
  left: 0;
  width: calc(33rem / 16);
  height: 3.0625rem;
  background: radial-gradient(circle, #2b7cd1 0.5px, transparent 0.5px) repeat-y right top / 1px 4px;
}
@media screen and (max-width: 767px) {
  .company_history__card::before {
    top: -51px;
    width: 33px;
    height: 51px;
  }
}

.company_history__row {
  display: grid;
  grid-template-columns: 2.8125rem 1fr;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .company_history__row {
    grid-template-columns: 44px 1fr;
  }
}
.company_history__row:not(:first-of-type) {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .company_history__row:not(:first-of-type) {
    margin-top: 35px;
  }
}

.company_history__month {
  font-weight: 600;
  color: #2b7cd1;
}

.company_history__logo {
  display: block;
  width: 9.25rem;
  height: auto;
}

.company_history__logo_old {
  display: block;
  width: 9.25rem;
  height: auto;
  margin-top: 1.83125rem;
}

.company_history__slider_controls {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.company_history__slider_controls_inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .company_history__slider_controls_inner {
    column-gap: 25px;
  }
}

.company_history__slider_controls .swiper-pagination {
  position: static;
  border-radius: 9999px;
  overflow: hidden;
  height: 5px !important;
  background-color: #dbe2e7 !important;
}

.company_history__slider_controls .swiper-pagination-progressbar-fill {
  background-color: #2b7cd1 !important;
}

.company_history__arrow_wrapper {
  display: flex;
  column-gap: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .company_history__arrow_wrapper {
    column-gap: 10px;
  }
}

.company_history__arrow_wrapper .swiper-button-prev,
.company_history__arrow_wrapper .swiper-button-next {
  position: static;
  width: 2.8125rem;
  height: 2.8125rem;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #2774c7;
  background: #fff url("../images/top/slide-arrow.svg") no-repeat center / 8.3px auto;
}
@media screen and (max-width: 767px) {
  .company_history__arrow_wrapper .swiper-button-prev,
  .company_history__arrow_wrapper .swiper-button-next {
    width: 45px;
    height: 45px;
  }
}

.company_history__arrow_wrapper .swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}

/* GROUP */
.company_group {
  margin-top: -40px;
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .company_group {
    padding-top: 110px;
  }
}

.company_group__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem calc(77 / 1060 * 100%);
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .company_group__list {
    grid-template-columns: 100%;
    row-gap: 40px;
    margin: 60px 0 0;
  }
}

.company_group__item {
  margin: 0;
}

.company_group__link {
  display: block;
  text-decoration: none;
  color: #313131;
  transition: color 0.3s;
}

.company_group__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .company_group__img {
    border-radius: 12px;
  }
}

.company_group__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .company_group__body {
    margin-top: 10px;
  }
}

.company_group__name {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .company_group__name {
    font-size: 16px;
    line-height: 1.1875;
  }
}

.company_group__icon_wrapper {
  flex-shrink: 0;
  display: flex;
  width: 24px;
  height: 24px;
  padding: 0 0 1px 1px;
  border-radius: 50%;
  background-color: #313131;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .company_group__icon_wrapper {
    width: 19px;
    height: 19px;
  }
}

.company_group__icon {
  width: 13px;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .company_group__icon {
    width: 10px;
  }
}

@media (any-hover: hover) {
  .company_group__link:hover {
    color: #2b7cd1;
  }

  .company_group__link:hover .company_group__icon_wrapper {
    background-color: #2b7cd1;
  }
}

/* ACCESS */
.company_access {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .company_access {
    padding-top: 70px;
  }
}

.company_access__inner {
  padding: 100px 0 71px;
  border-radius: 7.5rem 0 0 0;
  background-image: linear-gradient(180deg, #e3efff, #fff);
}
@media screen and (max-width: 767px) {
  .company_access__inner {
    padding: 70px 0;
    border-radius: 60px 0 0 0;
  }
}

.company_access__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: calc(78 / 1060 * 100%);
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .company_access__list {
    grid-template-columns: 100%;
    margin: 60px 0 0;
    row-gap: 35px;
  }
}

.company_access__item {
  margin: 0;
}

.company_access__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .company_access__img {
    border-radius: 12px;
  }
}

.company_access__name {
  display: flex;
  column-gap: 0.25rem;
  margin: 20px 0 0;
  padding: 0;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .company_access__name {
    column-gap: 4.6px;
    margin: 10px 0 0;
    font-size: 22px;
  }
}

.company_access__name::after {
  display: none;
}

.company_access__icon_map {
  width: 1rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .company_access__icon_map {
    width: 15.4px;
  }
}

.company_access__address {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .company_access__address {
    margin-top: 8px;
    margin-right: -4px;
    font-size: 16px;
  }
}

.company_access__link {
  display: inline-flex;
  align-items: center;
  column-gap: 0.8125rem;
  height: 1.875rem;
  margin-top: 10px;
  padding: 0 0.9375rem 1px 1.0625rem;
  border: 1px solid #2b7cd1;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-decoration: none;
  color: #2b7cd1;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .company_access__link {
    column-gap: 13px;
    height: 30px;
    margin-top: 8px;
    font-size: 14px;
  }
}

.company_access__icon_tab {
  width: 0.8125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .company_access__icon_tab {
    width: 13px;
  }
}

.company_access__icon_tab_fill {
  fill: #2b7cd1;
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .company_access__link:hover {
    background-color: #2b7cd1;
    color: #fff;
  }

  .company_access__link:hover .company_access__icon_tab_fill {
    fill: #fff;
  }
}

.company_access__route_list {
  margin: 18px 0 0;
  padding: 7px 0 0;
  border-top: 1px solid rgba(43 124 209 / 0.3);
  list-style: none;
}
@media screen and (max-width: 767px) {
  .company_access__route_list {
    margin: 20px 0 0;
  }
}

.company_access__route_item {
  position: relative;
  margin: 0.375rem 0;
  padding-left: 18px;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .company_access__route_item {
    margin: 5px -14px 0 0;
    padding-left: 15px;
    font-size: 14px;
    line-height: calc(19 / 14);
  }
}

.company_access__route_item::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .company_access__route_item::before {
    width: 7px;
    height: 7px;
  }
}

/* SERVICE */
.service_message_lg {
  margin-top: 130px;
  text-align: center;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: calc(60 / 35);
}
@media screen and (max-width: 1023px) {
  .service_message_lg {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .service_message_lg {
    margin-top: 93px;
    margin-right: -3px;
    text-align: left;
    font-size: 21px;
    line-height: calc(38 / 21);
  }
}

.service_message_sm {
  margin-top: 62px;
  text-align: center;
  font-size: 1.125rem;
  line-height: calc(40 / 18);
}
@media screen and (max-width: 1023px) {
  .service_message_sm {
    margin-right: -2px;
    font-size: 14px;
    line-height: calc(30 / 14);
  }
}
@media screen and (max-width: 767px) {
  .service_message_sm {
    margin-top: 46px;
    text-align: left;
  }
}

.service_top_img {
  display: block;
  width: 100%;
  max-width: 829px;
  height: auto;
  margin: 92px auto 0;
}
@media screen and (max-width: 767px) {
  .service_top_img {
    margin-top: 42px;
  }
}

/* SES・ENGINEER */
.service_ses {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .service_ses {
    padding-top: 80px;
  }
}

.service_ses__inner {
  padding: 100px 0;
  border-radius: 7.5rem 0 7.5rem 0;
  background-image: linear-gradient(to left bottom, #fff, #f0f9ff 50%, #e2f1ff);
}
@media screen and (max-width: 767px) {
  .service_ses__inner {
    padding: 70px 0;
    border-radius: 60px 0 60px 0;
    background-image: linear-gradient(195deg, #fff -30%, #f0f9ff 10%, #e2f1ff 70%);
  }
}

.service_ses__top {
  display: grid;
  grid-template-columns: 1fr calc(463 / 1060 * 100%);
  align-items: flex-start;
  column-gap: calc(54 / 1060 * 100%);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service_ses__top {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 42px;
    margin-top: 50px;
  }
}

.service_ses__top_text {
  padding-top: 16px;
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .service_ses__top_text {
    padding-top: 0;
    font-size: 16px;
    line-height: 2.1875;
  }
}

.service_ses__top_img {
  width: 100%;
  height: auto;
}

.service_ses__body {
  display: grid;
  grid-template-columns: 50% 1fr;
  column-gap: 7.755%;
  margin-top: 57px;
  padding: 70px 2.5rem 67px;
  border-radius: 1.875rem;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(9 90 201 / 0.3);
}
@media screen and (max-width: 767px) {
  .service_ses__body {
    grid-template-columns: 100%;
    row-gap: 30px;
    margin-top: 42px;
    padding: 40px 12px;
    border-radius: 20px;
  }
}

.service_ses__heading {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: calc(30 / 22);
  color: #2b7cd1;
}
@media screen and (max-width: 1023px) {
  .service_ses__heading {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .service_ses__heading {
    font-size: 15px;
    line-height: calc(20 / 15);
  }
}
.service_ses__heading::after {
  display: none;
}

.service_ses__flow_img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .service_ses__flow_img {
    margin-top: 10px;
  }
}

.service_ses__detail:nth-child(2) {
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .service_ses__detail:nth-child(2) {
    margin-top: 25px;
  }
}

.service_ses__detail:nth-child(3) {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .service_ses__detail:nth-child(3) {
    margin-top: 20px;
  }
}

.service_ses__detail_title {
  margin: 0;
  padding: 4px 20px;
  background-color: transparent;
  background-image: linear-gradient(90deg, #2b7cd1, rgba(93 159 208 / 0.5) 65%, rgba(255 255 255 / 0.11));
  border-radius: 4px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service_ses__detail_title {
    font-size: 16px;
    line-height: 1;
    padding: 7px 15px;
  }
}

.service_ses__detail_text {
  margin-top: 7px;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .service_ses__detail_text {
    padding: 0 8px 0 15px;
    font-size: 12px;
    line-height: calc(23 / 12);
  }
}

/* IT PROJECT */
.service_it {
  margin-top: -40px;
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .service_it {
    padding-top: 110px;
  }
}

.service_it__section {
  padding: 70px 2.5rem;
  border-radius: 1.875rem;
  box-shadow: 2px 3px 10px rgba(43 124 209 / 0.5);
}
@media screen and (max-width: 767px) {
  .service_it__section {
    padding: 60px 10px;
  }
}

.service_it__section:first-of-type {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service_it__section:first-of-type {
    margin-top: 40px;
  }
}

.service_it__section:last-of-type {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service_it__section:last-of-type {
    margin-top: 38px;
  }
}

.service_it__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 4.082%;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: #2b7cd1;
}
@media screen and (max-width: 1023px) {
  .service_it__heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service_it__heading {
    display: block;
    text-align: center;
    font-size: 21px;
  }
}

.service_it__heading::before,
.service_it__heading::after {
  content: "";
  position: static;
  width: auto;
  height: 1px;
  background-color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .service_it__heading::before,
  .service_it__heading::after {
    display: none;
  }
}

.service_it__text {
  width: fit-content;
  margin: 57px auto 0;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .service_it__text {
    width: 95.5%;
    margin-top: 36px;
    font-size: 16px;
    line-height: 1.875;
  }
}

.service_it__img01 {
  display: block;
  width: 100%;
  height: auto;
  max-width: 901px;
  margin: 67px auto 0;
}
@media screen and (max-width: 767px) {
  .service_it__img01 {
    margin: 56px auto 0;
  }
}

.service_it__img02 {
  display: block;
  width: 100%;
  height: auto;
  max-width: 812px;
  margin: 67px auto 0;
}
@media screen and (max-width: 767px) {
  .service_it__img02 {
    width: 95.8%;
    margin: 46px auto 0;
  }
}

/* WEB CREATIVE */
.service_web {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .service_web {
    padding-top: 70px;
  }
}

.service_web__inner {
  padding: 100px 0;
  border-radius: 7.5rem 0 0 0;
  background: linear-gradient(180deg, #e3efff, #fff);
}
@media screen and (max-width: 767px) {
  .service_web__inner {
    padding: 70px 0;
    border-radius: 60px 0 0 0;
  }
}

.service_web__description {
  margin-top: 63px;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .service_web__description {
    margin-top: 36px;
    font-size: 16px;
  }
}

.service_web__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4em;
  margin: 78px 0 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
}
@media screen and (max-width: 1139px) {
  .service_web__list {
    font-size: calc(10 / 1140 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .service_web__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px calc(27 / 353 * 100%);
    margin: 51px 0 0;
  }
}

.service_web__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 4.2em 0 3em;
  border-radius: 2em;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(9 90 201 / 0.3);
}
@media screen and (max-width: 767px) {
  .service_web__item {
    padding: 35px 0 30px;
    border-radius: 20px;
  }
}

.service_web__heading {
  position: absolute;
  top: -0.9375rem;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.25em;
  height: 2.1875em;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  border: none;
  border-radius: 9999px;
  background-image: linear-gradient(90deg, #438ddb, #75a7da 80%, #94bde5);
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service_web__heading {
    top: -15px;
    width: auto;
    min-width: 125px;
    height: 30px;
    padding: 0 11px;
    font-size: 14px;
    white-space: nowrap;
  }
}

.service_web__heading::after {
  display: none;
}

.service_web__icon {
  width: 12.1em;
  height: auto;
  filter: drop-shadow(2px 3px 5px rgba(9 90 201 / 0.4));
}
@media screen and (max-width: 767px) {
  .service_web__icon {
    width: 84px;
  }
}

.service_web__text {
  margin-top: 1.25em;
  font-size: 1.6em;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .service_web__text {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.75;
  }
}

@media screen and (min-width: 768px) {
  .service_web__text.--01,
  .service_web__text.--03 {
    width: 10em;
  }
  .service_web__text.--02,
  .service_web__text.--04 {
    width: 11em;
  }
}
@media screen and (max-width: 767px) {
  .service_web__text.--01 {
    padding: 0 9px;
  }
  .service_web__text.--02 {
    padding: 0 15px 0 16px;
  }
  .service_web__text.--03 {
    padding: 0 9px 0 10px;
  }
  .service_web__text.--04 {
    padding: 0 15px 0 16px;
  }
}

/* お知らせ一覧 */
.news_index {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .news_index {
    padding: 60px 0 65px;
  }
}

.news_index__select {
  width: 148px;
  margin: 0;
  padding: 10.5px 19px 8.5px;
  border-radius: 4px;
  border: 1px solid #2b7cd1;
  background: url("../images/common/icon-select.svg") no-repeat right 20.8px center / 10.6px auto;
  font-size: 14px;
  line-height: calc(19 / 14);
  cursor: pointer;
}

.news_index__category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .news_index__category_list {
    gap: 7px;
    margin-top: 20px;
  }
}

.news_index__category_link {
  min-width: 112px;
  padding: 12px 24px;
  border-radius: 9999px;
  background-color: rgba(43 124 209 / 0.1);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #2b7cd1 !important;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news_index__category_link {
    min-width: 97px;
    padding: 13px;
    font-size: 14px;
  }
}
.news_index__category_link.is-active {
  background-color: #2b7cd1;
  color: #fff !important;
}
@media (any-hover: hover) {
  .news_index__category_link:not(.is-active):hover {
    background-color: rgba(43 124 209 / 0.2);
  }
}

.news_index__post_list {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 40px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .news_index__post_list {
    row-gap: 30px;
    margin: 40px 0 0;
  }
}

.news_index__post_list li {
  margin: 0;
}

.news_index__post_link {
  display: block;
  padding: 33px 30px 46px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(43 124 209 / 0.3);
  text-decoration: none;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news_index__post_link {
    padding: 16px 20px 59px;
    border-radius: 7px;
  }
}
@media (any-hover: hover) {
  .news_index__post_link:hover {
    background-color: #ebf8ff;
  }
}

.news_index__post_meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.news_index__post_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news_index__post_category {
  min-width: 88px;
  text-align: center;
  padding: 5.5px 17px;
  border: 1px solid rgba(24 83 164 / 0.4);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: rgba(24 83 164 / 0.4) !important;
}
@media screen and (max-width: 767px) {
  .news_index__post_category {
    min-width: 74px;
    padding: 5.5px 14px;
    font-size: 11px;
  }
}

.news_index__post_date {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: rgba(24 83 164 / 0.4) !important;
}
@media screen and (max-width: 767px) {
  .news_index__post_date {
    font-size: 12px;
    line-height: 2;
  }
}

.news_index__post_title {
  margin-top: 26px;
  font-size: 18px;
  line-height: calc(30 / 18);
  color: #313131 !important;
}
@media screen and (max-width: 767px) {
  .news_index__post_title {
    margin-top: 20px;
    font-size: 14px;
    line-height: calc(19 / 14);
  }
}

.news_index__no_post {
  margin-top: 100px;
}

/* お知らせ詳細 */
.news_page {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .news_page {
    padding: 60px 0 70px;
  }
}

.news_post {
  padding: 53px calc(153 / 1060 * 100%) 60px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(43 124 209 / 0.3);
}
@media screen and (max-width: 767px) {
  .news_post {
    padding: 25.5px 25px 40px;
  }
}

.news_post__title {
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1853a4;
}
@media screen and (max-width: 767px) {
  .news_post__title {
    font-size: 20px;
    line-height: 1.45;
  }
}

.news_post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin: 11px 0 53px;
}
@media screen and (max-width: 767px) {
  .news_post__meta {
    margin: 10.5px 0 22px;
  }
}

.news_post__category {
  display: inline-block;
  min-width: 88px;
  padding: 5.5px 12px;
  border: 1px solid rgba(24 83 164 / 0.4);
  border-radius: 9999px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: rgba(24 83 164 / 0.4);
}
@media screen and (max-width: 767px) {
  .news_post__category {
    min-width: 97px;
    font-size: 14px;
    padding: 12px 12px 10px;
  }
}

.news_post__date {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: rgba(24 83 164 / 0.4);
}
@media screen and (max-width: 767px) {
  .news_post__date {
    font-size: 14px;
    line-height: calc(40 / 14);
  }
}

.news_page .content p {
  line-height: 2.3125;
}
@media screen and (max-width: 767px) {
  .news_page .content p {
    line-height: 2;
  }
}

.news_back_button {
  width: 290px;
  margin-top: 80px;
  padding: 0 79px 0 28px;
}
@media screen and (max-width: 767px) {
  .news_back_button {
    width: 240px;
    margin-top: 40px;
    padding: 0 61px 0 20px;
  }
}

.news_back_button .c-button__icon {
  transform: rotate(180deg);
}

/* MEDIA */
/* メディアトップページヘッド */
.media_top_head {
  margin-bottom: -143px;
  padding: 205px 0 207px;
  background: url("../images/media/media-top-head.jpg") no-repeat center / cover;
}
@media screen and (max-width: 767px) {
  .media_top_head {
    margin-bottom: -80px;
    padding: 127px 0 90px;
    background-image: url("../images/media/media-top-head@sp.jpg");
  }
}

.media_top_head__inner {
  display: flex;
  flex-direction: column-reverse;
}

.recommend_media {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.recommend_media__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  width: 100%;
  padding: 0 37px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recommend_media__title {
    row-gap: 0;
    padding: 0;
  }
}

.recommend_media__title_en {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 25px;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: calc(41 / 40);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .recommend_media__title_en {
    column-gap: 10px;
    font-size: 30px;
    line-height: calc(31 / 30);
  }
}

.recommend_media__title_en::before,
.recommend_media__title_en::after {
  content: "";
  height: 1px;
  background-color: #fff;
}

.recommend_media__title_ja {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recommend_media__title_ja {
    font-size: 12px;
  }
}

.recommend_media__slider.swiper {
  margin: 37px calc(50% - 50vw) 0;
  padding-bottom: 54px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .recommend_media__slider.swiper {
    margin-top: 20px;
    margin-bottom: 46px;
    padding-bottom: 27px;
  }
}

.recommend_media__slide.swiper-slide {
  display: grid;
  grid-template-columns: 1fr calc(546 / 874 * 100%);
  column-gap: calc(50 / 874 * 100%);
  width: calc(990 / 1470 * 100%);
  margin-right: calc(107.5 / 1470 * 100%);
  padding: calc(39 / 1470 * 100%) calc(58 / 1470 * 100%);
  border-radius: 30px;
  background-color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
  transition: box-shadow 0.3s;
}
@media screen and (max-width: 1023px) {
  .recommend_media__slide.swiper-slide {
    grid-template-columns: 17.375rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .recommend_media__slide.swiper-slide {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 10px;
    width: calc(310 / 393 * 100%);
    margin-right: calc(41.5 / 393 * 100%);
    padding: 20px 16px 67px;
    border-radius: 20px;
  }
}

@media (any-hover: hover) {
  .recommend_media__slide.swiper-slide:hover {
    box-shadow: 0 4px 24px rgba(0 0 0 / 0.4);
  }
}

.recommend_media__slide_body {
  display: flex;
  flex-direction: column;
  row-gap: 2.1875rem;
  padding: calc(16 / 278 * 100%) 0;
}
@media screen and (max-width: 1023px) {
  .recommend_media__slide_body {
    row-gap: 14px;
  }
}
@media screen and (max-width: 767px) {
  .recommend_media__slide_body {
    row-gap: 6px;
    padding: 0;
  }
}

.recommend_media__slide_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.recommend_media__slide_category {
  min-width: 7rem;
  padding: 9px 12px;
  border-radius: 9999px;
  background-color: rgba(43 124 209 / 0.1);
  text-align: center;
  font-weight: 700;
  line-height: 1.375;
  color: #2b7cd1 !important;
}
@media screen and (max-width: 767px) {
  .recommend_media__slide_category {
    min-width: 83px;
    padding: 7.5px 12px;
    font-size: 12px;
    line-height: calc(17 / 12);
  }
}

.recommend_media__slide_date {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: calc(40 / 18);
  color: rgba(24 83 164 / 0.4) !important;
}
@media screen and (max-width: 767px) {
  .recommend_media__slide_date {
    font-size: 14px;
    line-height: calc(32 / 14);
  }
}

.recommend_media__slide_title {
  margin-bottom: auto;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  color: #313131 !important;
}
@media screen and (max-width: 767px) {
  .recommend_media__slide_title {
    font-size: 16px;
    line-height: 1.75;
  }
}

.recommend_media__slide__tag_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 4px 0.5em;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .recommend_media__slide__tag_list {
    margin-top: 30px;
  }
}

.recommend_media__slide__tag {
  margin: 0;
  font-size: 0.875rem;
  line-height: calc(19 / 14);
  color: #0f3f8e !important;
}
@media screen and (max-width: 767px) {
  .recommend_media__slide__tag {
    font-size: 14px;
  }
}

.recommend_media__slide_img_wrapper {
  background-color: #e2e2e2;
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recommend_media__slide_img_wrapper {
    aspect-ratio: 278 / 157;
    border-radius: 10px;
  }
}

.recommend_media__slide_img_wrapper .wp-post-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend_media__slider .swiper-pagination {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .recommend_media__slider .swiper-pagination {
    column-gap: 14px;
  }
}

.recommend_media__slider .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .recommend_media__slider .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}

.recommend_media__slider .swiper-pagination-bullet-active {
  background-color: #0f3f8e;
}

.recommend_media__slider_buttons_wrapper {
  position: absolute;
  z-index: 1;
  top: calc((100% - 54px) / 2);
  right: 0;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .recommend_media__slider_buttons_wrapper {
    top: calc((100% - 27px) / 2);
  }
}

.recommend_media__slider_buttons {
  display: flex;
  justify-content: space-between;
  width: calc(1060 / 1470 * 100%);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recommend_media__slider_buttons {
    width: 100%;
    padding: 0 calc(8 / 393 * 100%);
  }
}

.recommend_media__slider .swiper-button-prev,
.recommend_media__slider .swiper-button-next {
  position: static;
  width: calc(70 / 1470 * 100vw);
  height: calc(70 / 1470 * 100vw);
  border-radius: 50%;
  margin-top: 0;
  background: #fff url("../images/media/slide-arrow.svg") no-repeat center / 17.54% auto;
  border: 1px solid #2774c7;
  pointer-events: auto;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .recommend_media__slider .swiper-button-prev,
  .recommend_media__slider .swiper-button-next {
    width: calc(40 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
    background-image: url("../images/media/slide-arrow@sp.svg");
    background-size: 14% auto;
  }
}

.recommend_media__slider .swiper-button-prev {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .recommend_media__slider .swiper-button-prev:hover,
  .recommend_media__slider .swiper-button-next:hover {
    background-color: #deebff;
  }
}

/* メディア下層ページヘッド */
.media_head {
  height: 579px;
  margin-bottom: -119px;
  padding-bottom: 139px;
  background-image: url("../images/media/media-head.jpg");
}
@media screen and (max-width: 767px) {
  .media_head {
    height: 356px;
    margin-bottom: -56px;
    padding-bottom: 69px;
    background-image: url("../images/media/media-head@sp.jpg");
  }
}

.media_head__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.media_top_head .c-breadcrumbs,
.media_head .c-breadcrumbs {
  margin-top: 0;
}

/* メディアページコンテンツ */
.media_page {
  position: relative;
  padding: 80px 0 100px;
  border-radius: 7.5rem 0 0 0;
  background-image: linear-gradient(180deg, #f0f7ff, #deebff);
}
@media screen and (max-width: 767px) {
  .media_page {
    border-radius: 60px 0 0 0;
    padding: 40px 0 70px;
  }
}

/* メディアページ2カラムレイアウト */
.media_layout {
  display: grid;
  grid-template-columns: 1fr 349px;
  column-gap: calc(62 / 1280 * 100%);
  align-items: flex-start;
  margin-top: 20px;
}
@media screen and (max-width: 1279px) {
  .media_layout {
    grid-template-columns: 1fr 300px;
  }
}
@media screen and (max-width: 1023px) {
  .media_layout {
    grid-template-columns: 100%;
    row-gap: 70px;
  }
}
@media screen and (max-width: 767px) {
  .media_layout {
    margin-top: 0;
  }
}

/* メディア一覧ページ */
.media_category_nav {
  display: inline-flex;
  margin: 0 0 80px;
  padding: 0;
  border-radius: 9999px;
  outline: 1px solid #dbe2e7;
  outline-offset: -1px;
  background-color: #fff;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .media_category_nav {
    margin: 0 0 43px;
  }
}

.media_category_nav__item {
  flex-shrink: 0;
  margin: 0;
}

.media_category_nav__link {
  display: block;
  min-width: 8.8125rem;
  padding: 24px 2.3125rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: calc(24 / 18);
  color: #1853a4 !important;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .media_category_nav__link {
    min-width: unset;
    padding: 12px;
    font-size: 12px;
    line-height: calc(17 / 12);
  }

  .media_category_nav__item:first-of-type .media_category_nav__link {
    padding-left: 25px;
  }

  .media_category_nav__item:last-of-type .media_category_nav__link {
    padding-right: 25px;
  }
}

@media (any-hover: hover) {
  .media_category_nav__link:not(.is-active):hover {
    background-color: rgba(43 124 209 / 0.1);
  }
}

.media_category_nav__link.is-active {
  position: relative;
  background-color: #2b7cd1;
  font-weight: 700;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .media_category_nav__link.is-active {
    min-width: 71px;
    padding: 12px 25px;
  }
}

.media_index__label {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 4px 0 5px;
  opacity: 0.39;
  font-size: 26px;
  font-weight: 700;
  line-height: calc(27 / 26);
  color: #1853a4;
}

.media_index__label::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 27px;
  background-color: #c4ddff;
}

.media_index__title {
  display: flex;
  column-gap: 10px;
  margin: 0;
  padding: 0 0 5.5px 0;
  border: none;
  border-bottom: 1px solid #1853a4;
  font-size: 26px;
  font-weight: 700;
  line-height: calc(29 / 26);
  color: #2b7cd1;
}

.media_index__title::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  background-color: #0f3f8e;
}

.media_index__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin: 50px 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .media_index__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .media_index__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 0 40px;
    gap: 30px 19px;
  }
}

.media_card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  transition: box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .media_card {
    border-radius: 10px;
  }
}

@media (any-hover: hover) {
  .media_card:hover {
    box-shadow: 6px 6px 12px rgba(0 0 0 / 0.16);
  }
}

.media_card__thumbnail {
  aspect-ratio: 270 / 152;
  background-color: #e5e5e5;
  overflow: hidden;
}

.media_card__thumbnail .wp-post-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media_card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin: 21px 15px 0;
}
@media screen and (max-width: 767px) {
  .media_card__meta {
    margin: 10px 10px 0;
  }
}

.media_card__category {
  display: inline-block;
  min-width: 54px;
  padding: 3px 11px 2px;
  border-radius: 9999px;
  background-color: rgba(43 124 209 / 0.1);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: calc(19 / 14);
  color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .media_card__category {
    min-width: 39px;
    padding: 0 11px;
    font-size: 12px;
    line-height: calc(17 / 12);
  }
}

.media_card__date {
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
  color: rgba(24 83 164 / 0.4);
}
@media screen and (max-width: 767px) {
  .media_card__date {
    line-height: calc(17 / 12);
  }
}

.media_card__post_title {
  margin: 6px 15px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  color: #313131 !important;
}
@media screen and (max-width: 767px) {
  .media_card__post_title {
    margin: 6px 10px 0;
    font-size: 14px;
    line-height: calc(24 / 14);
  }
}

.media_card__post_title::after {
  content: "";
  position: absolute;
  inset: 0;
}

.media_card__tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 26px 15px 28px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .media_card__tag_list {
    margin: 34px 10px 15px;
    gap: 4px 11px;
  }
}

.media_card__tag {
  margin: 0;
  font-size: 12px;
  line-height: calc(17 / 12);
  color: #0f3f8e;
}
@media screen and (max-width: 767px) {
  .media_card__tag {
    font-size: 11px;
    line-height: calc(15 / 11);
  }
}

.media_index__no_post {
  margin: 3rem 0;
}

/* サイドバー */
.media_side_col {
  padding: 42px calc(32 / 349 * 100%) 60px calc(47 / 349 * 100%);
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
}

@media screen and (min-width: 1024px) {
  .media_layout.--archive-top .media_side_col {
    margin-top: 35px;
  }
  .media_layout.--archive .media_side_col {
    margin-top: 78px;
  }
}

@media screen and (max-width: 767px) {
  .media_side_col {
    padding: 40px 37px 40px 47px;
  }
}

/* 人気記事ランキング */
.ranking_title {
  display: flex;
  align-items: flex-end;
  column-gap: 9.8px;
  padding-bottom: 20.7px;
  border-bottom: 1px solid #2b7cd1;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.ranking_icon {
  width: 36.24px;
  height: auto;
}

.ranking_list__wrapper {
  min-height: 390px;
  margin-top: 20px;
}
.ranking_list__wrapper:has(.wpp-ajax) {
  min-height: unset;
}

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

.ranking_list__item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: flex-start;
  column-gap: 10px;
  margin: 0;
  padding: 20px 0;
  background: url("../images/media/dot-line.svg") repeat-x center bottom / auto 2px;
}
.ranking_list__item:first-of-type {
  padding-top: 0;
}
.ranking_list__item:last-of-type {
  padding-bottom: 0;
  background: none;
}

.ranking_list__thumb {
  position: relative;
  border-radius: 12px;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #e2e2e2;
}

.ranking_list__thumb .wpp-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking_list__thumb::after {
  position: absolute;
  top: 5px;
  left: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #1853a4;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  color: #1853a4;
}

.ranking_list__item:nth-child(1) .ranking_list__thumb::after {
  content: "1";
}
.ranking_list__item:nth-child(2) .ranking_list__thumb::after {
  content: "2";
}
.ranking_list__item:nth-child(3) .ranking_list__thumb::after {
  content: "3";
}

.ranking_list__category a {
  display: inline-block;
  min-width: 54px;
  padding: 3px 11px 2px;
  border-radius: 9999px;
  background-color: rgba(43 124 209 / 0.1);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: calc(19 / 14);
  color: #2b7cd1;
}

.ranking_list__post_title {
  margin-top: 6px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.75;
  color: #313131 !important;
}

.ranking_list__post_title::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* タグから探す */
.tag_search_title {
  display: flex;
  align-items: center;
  column-gap: 9.5px;
  margin-top: 57.5px;
  padding-bottom: 18.7px;
  border-bottom: 1px solid #2b7cd1;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.tag_search_icon {
  width: 26.5px;
  height: auto;
}

.tag_search_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  margin: 20.3px 0 0;
  padding: 0;
  list-style: none;
}

.tag_search_item {
  margin: 0;
}

.tag_search_item.is-hidden {
  display: none;
}

.tag_search_link {
  text-decoration: none;
  font-size: 14px;
  line-height: calc(30 / 14);
  color: #313131 !important;
}

@media (any-hover: hover) {
  .tag_search_link:hover {
    text-decoration: underline;
  }
}

.tag_search_hash {
  color: #0f3f8e !important;
}

.tag_search_more {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  margin: 30px auto 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  color: #2b7cd1;
  cursor: pointer;
}

.tag_search_more_icon {
  width: 12.22px;
  height: auto;
}

/* メディア詳細ページ */
.media_post_col {
  padding: 39px calc(62 / 869 * 100%) 60px calc(65 / 869 * 100%);
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
}
@media screen and (max-width: 767px) {
  .media_post_col {
    padding: 25px 20px 40px;
  }
}

.media_post__title {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  line-height: calc(56 / 34);
}
@media screen and (max-width: 767px) {
  .media_post__title {
    font-size: 26px;
    line-height: calc(40 / 26);
  }
}

.media_post__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 28px;
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .media_post__meta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
  }
}

.media_post__meta_top {
  display: flex;
  column-gap: 10px;
}

.media_post__category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media_post__category {
  min-width: 54px;
  padding: 2px 12px 3px;
  border-radius: 9999px;
  background-color: rgba(43 124 209 / 0.1);
  text-align: center;
  font-size: 14px;
  line-height: calc(19 / 14);
  font-weight: 700;
  color: #2b7cd1 !important;
}

.media_post__date {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(24 / 14);
  color: rgba(24 83 164 / 0.4);
}

.media_post__tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .media_post__tag_list {
    margin-top: 10px;
    padding-bottom: 20px;
  }
}

.media_post__tag {
  font-size: 14px;
  line-height: 1;
  color: #0f3f8e !important;
}

.media_post__sns_list {
  flex-shrink: 0;
}

.media_post__thumbnail_wrapper {
  margin: 25px 0 85px;
}
@media screen and (max-width: 767px) {
  .media_post__thumbnail_wrapper {
    margin: 16px 0 34px;
  }
}

.media_post__thumbnail_wrapper .wp-post-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* 目次 */
#toc_container {
  position: relative;
  margin: 85px 0 78px;
  padding: 43px 52px;
  border: none;
  border-radius: 6px;
  background-color: rgba(219 226 231 / 0.4);
}
@media screen and (max-width: 767px) {
  #toc_container {
    margin: 34px 0 58px;
    padding: 30px 23px 28px;
  }
}

#toc_container::before {
  content: "";
  position: absolute;
  top: -2.5px;
  bottom: -2.5px;
  left: -2.5px;
  width: 5px;
  border-radius: 9999px;
  background-color: #1853a4;
}

#toc_container .toc_title {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #1853a4;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_title {
    font-size: 22px;
  }
}

#toc_container .toc_title::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../images/media/icon-toc.svg") no-repeat center / contain;
}

#toc_container .toc_title::after {
  content: "この記事の内容";
  margin-top: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_title::after {
    font-size: 12px;
  }
}

#toc_container li::before {
  display: none;
}

#toc_container .toc_list > li {
  margin-top: 26px;
}

#toc_container .toc_list > li > a {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(32 / 18);
  text-decoration: underline;
  color: #2b7cd1 !important;
}

.toc_number.toc_depth_1 {
  position: absolute;
  left: 0;
}

.toc_number.toc_depth_1::after {
  content: ".";
}

#toc_container .toc_list > li > ul li {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_list > li > ul li:not(:first-of-type) {
    margin-top: 13px;
  }
}

#toc_container .toc_list > li > ul a {
  position: relative;
  display: inline-block;
  padding-left: 1.25em;
  display: flex;
  font-size: 16px;
  line-height: 1.375;
  text-decoration: underline;
  color: #313131 !important;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_list > li > ul a {
    padding-left: 1.35em;
    font-size: 14px;
    line-height: calc(19 / 14);
  }
}

.toc_number.toc_depth_2 {
  position: absolute;
  left: 0;
  font-size: 0;
}

.toc_number.toc_depth_2::after {
  content: "ー";
  font-size: 16px;
  line-height: 1.375;
}

#toc_container a:hover {
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  #toc_container a:hover {
    opacity: 0.7;
  }
}

/* 記事リンク */
.media_post_link {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  column-gap: calc(30 / 700 * 100%);
  margin: 45px 0;
  padding: 32px 20px;
  border: 1px solid #dbe2e7;
  border-radius: 10px;
  color: #313131 !important;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .media_post_link {
    margin: 15px 0;
    padding: 20px 19px 28px;
  }
}
@media screen and (max-width: 559px) {
  .media_post_link {
    grid-template-columns: 100%;
    row-gap: 15px;
  }
}

@media (any-hover: hover) {
  .media_post_link:hover {
    background-color: #ebf8ff;
  }
}

.media_post_link__thumb {
  aspect-ratio: 170 / 96;
  border-radius: 2px;
  overflow: hidden;
  background-color: #e5e5e5;
}
@media screen and (max-width: 767px) {
  .media_post_link__thumb {
    border-radius: 4px;
  }
}

.media_post_link__thumb .wp-post-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

.media_post_link__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .media_post_link__title {
    font-size: 14px;
  }
}

/* 採用ページリンク */
.media_post_banner {
  display: block;
  margin-top: 80px;
}

.media_post_banner__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.4);
}
@media screen and (max-width: 767px) {
  .media_post_banner__img {
    border-radius: 12px;
  }
}

/* 記事監修 */
.media_author_title {
  position: relative;
  padding: 0 0 0 21px;
  border: none;
  margin-top: 70px;
  margin-bottom: 33px;
  font-size: 26px;
  font-weight: 600;
  line-height: calc(45 / 26);
  color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .media_author_title {
    margin-bottom: 20px;
    padding: 0 0 0 10px;
    font-size: 22px;
    line-height: calc(37.5 / 22);
  }
}

.media_author_title::before {
  content: "";
  position: absolute;
  top: -2.5px;
  bottom: -2.5px;
  left: -2.5px;
  width: 5px;
  border-radius: 9999px;
  background-color: #1853a4;
}

.media_author {
  display: grid;
  grid-template-columns: 118px 1fr;
  column-gap: 30px;
  align-items: center;
  margin-top: 7.5px;
  padding: 26px 30px;
  border-radius: 10px;
  background-color: #e9f2fb;
}
@media screen and (max-width: 767px) {
  .media_author {
    grid-template-columns: 102.5px 1fr;
    column-gap: 10.5px;
    padding: 18.7px 10px;
    border-radius: 4px;
  }
}

.media_author_img {
  height: auto;
}

.media_author_name {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .media_author_name {
    font-size: 16px;
  }
}

/* シェアボタン */
.media_share {
  margin: 25px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
}
@media screen and (max-width: 767px) {
  .media_share {
    margin: 30px 0 54px;
  }
}

.media_share__title {
  font-size: 12px;
  line-height: calc(17 / 12);
}

/* 前の記事 次の記事 */
.media_navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(43 124 209 / 0.5);
  border-bottom: 1px solid rgba(43 124 209 / 0.5);
  list-style: none;
}
@media screen and (max-width: 767px) {
  .media_navigation {
    margin: 0 -9px;
    padding: 10px 0 13px;
  }
}

.media_navigation__item {
  margin: 0;
}

.media_navigation__item:first-of-type {
  border-right: 1px solid rgba(43 124 209 / 0.5);
}

.media_navigation__link {
  display: flex;
  text-decoration: none;
  align-items: center;
  height: 100%;
  padding: 6px 0;
}
@media screen and (max-width: 767px) {
  .media_navigation__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 10px;
  }
}

.media_navigation__link.--prev {
  padding-right: calc(24 / 371 * 100%);
}
.media_navigation__link.--next {
  padding-left: calc(24 / 371 * 100%);
}

.media_navigation__link.--next {
  flex-direction: row-reverse;
}

.media_navigation__icon {
  flex-shrink: 0;
  width: 31px;
  height: auto;
}

.media_navigation__link.--prev .media_navigation__icon {
  transform: rotate(180deg);
}

.media_navigation__label {
  flex-shrink: 0;
  margin: 0 calc(10 / 347 * 100%);
  font-size: 14px;
  font-weight: 600;
  color: #2b7cd1 !important;
}
@media screen and (max-width: 767px) {
  .media_navigation__label {
    margin: 0;
    font-size: 12px;
  }
}

.media_navigation__title {
  padding: 0 calc(20 / 347 * 100%);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.875;
  color: #313131 !important;
}
@media screen and (max-width: 767px) {
  .media_navigation__title {
    width: 100%;
    padding: 0;
    line-height: calc(20 / 14);
  }
}

.media_back_button {
  width: 290px;
  margin-top: 30px;
  padding: 0 73px 0 34px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .media_back_button {
    width: 240px;
    padding: 0 55px 0 25px;
  }
}

.media_back_button .c-button__icon {
  transform: rotate(180deg);
}

/* 関連記事 */
.related_media {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .related_media {
    padding: 40px 0 70px;
  }
}

.related_media__head {
  width: calc(814.47 / 1280 * 100%);
  padding: 38px 88px 21px 57px;
  background: url("../images/media/related-head.svg") no-repeat top left / 100% 100%;
}
@media screen and (max-width: 1023px) {
  .related_media__head {
    padding: 28px 88px 18px 32px;
  }
}
@media screen and (max-width: 767px) {
  .related_media__head {
    width: 258.9px;
    padding: 13.9px 33px 4.9px 20.8px;
  }
}

.related_media__title {
  position: relative;
  display: flex;
  column-gap: 10.5px;
  padding-bottom: 21px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: #0f3f8e;
}
@media screen and (max-width: 767px) {
  .related_media__title {
    font-size: 18px;
    padding-bottom: 12.1px;
  }
}

.related_media__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 9999px;
  background-color: rgba(15 63 142 / 0.5);
}

.related_media__icon {
  width: 19px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .related_media__icon {
    width: 16px;
  }
}

.related_media__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4.6875%;
  margin: -18px 0 0;
  padding: 51px calc(55 / 1280 * 100%) 57.5px;
  border-radius: 20px;
  background-image: linear-gradient(180deg, #c9e4ff, #f7f7f7);
  list-style: none;
}
@media screen and (max-width: 767px) {
  .related_media__list {
    grid-template-columns: 100%;
    row-gap: 30px;
    margin: -6px 0 0;
    padding: 40px 16px;
    border-radius: 10px;
  }
}

.related_media__item {
  margin: 0;
}

.related_media__link {
  text-decoration: none;
}

.related_media__thumbnail {
  border-radius: 4px;
  aspect-ratio: 350 / 197;
  overflow: hidden;
  background-color: #d9d9d9;
}
@media screen and (max-width: 767px) {
  .related_media__thumbnail {
    border-radius: 10px;
  }
}

.related_media__thumbnail .wp-post-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related_media__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .related_media__meta {
    margin-top: 10px;
  }
}

.related_media__category {
  min-width: 54px;
  padding: 2px 12px 3px;
  border-radius: 9999px;
  background-color: #1853a4;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(19 / 14);
  color: #fff;
}

.media_post__date {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
  color: rgba(15 63 142 / 0.4);
}

.related_media__post_title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.875;
  color: #0f3f8e;
}
@media screen and (max-width: 767px) {
  .related_media__post_title {
    margin-top: 6px;
  }
}

.related_media__tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.related_media__tag {
  margin: 0;
  font-size: 12px;
  line-height: calc(17 / 12);
  color: #0f3f8e;
}

/* CONTACT */
.contact_page {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .contact_page {
    padding: 60px 0 70px;
  }
}

.contact_page__indicator {
  position: relative;
  z-index: 0;
  display: inline-flex;
  justify-content: center;
  column-gap: 164px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .contact_page__indicator {
    column-gap: 45px;
  }
}

.contact_page__indicator::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.5px);
  right: 0;
  left: 0;
  height: 1px;
  background-color: #dbe2e7;
}

.contact_page__indicator_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 6px;
  width: 100px;
  height: 100px;
  margin: 0;
  border: 3px solid #dbe2e7;
  border-radius: 50%;
  background-color: #fff;
  color: #dbe2e7;
}
@media screen and (max-width: 767px) {
  .contact_page__indicator_item {
    row-gap: 5px;
    width: 70px;
    height: 70px;
    padding-bottom: 2px;
  }
}

.contact_page__indicator_item.is-active {
  background-color: #2b7cd1;
  border-color: #2b7cd1;
  color: #fff;
}

.contact_page__indicator_number {
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact_page__indicator_number {
    font-size: 10px;
    line-height: 1.1;
  }
}

.contact_page__indicator_text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact_page__indicator_text {
    font-size: 12px;
  }
}

.contact_page__description {
  margin-top: 52px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: calc(37 / 18);
  color: #1853a4;
}
@media screen and (max-width: 767px) {
  .contact_page__description {
    margin-top: 36px;
    font-size: 14px;
    line-height: calc(24 / 14);
  }
}

.contact_page .wpcf7-form {
  margin-top: 72px;
  padding: 22px calc(60 / 1060 * 100%) 40px;
  border-radius: 30px;
  box-shadow: 2px 3px 10px rgba(43 124 209 / 0.3);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .contact_page .wpcf7-form {
    margin-top: 36px;
    padding: 10px 17px 0 24px;
  }
}

.form_field {
  display: grid;
  grid-template-columns: 13.6875rem 1fr;
  column-gap: calc(124 / 940 * 100%);
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .form_field {
    grid-template-columns: 100%;
    row-gap: 10px;
    margin-top: 30px;
  }
}

.form_label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 1.75rem;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: calc(30 / 18);
}
@media screen and (max-width: 767px) {
  .form_label {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
  }
}

.form_option {
  padding: 0.53125rem 0.5625rem 0.53125rem 0.625rem;
  border-radius: 2px;
  background-color: #b4b7bc;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .form_option {
    padding: 9px 9px 8px 10px;
    font-size: 13px;
  }
}

.form_option::before {
  content: "任意";
}

.form_option.--required {
  background-color: #2b7cd1;
}
.form_option.--required::before {
  content: "必須";
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 4px;
  background-color: #f5f5f5;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"] {
  max-width: 517px;
  padding: 16.5px 22px 15px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"] {
    max-width: 100%;
  }
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
  color: #b8b9ba;
}

.wpcf7-form select {
  max-width: fit-content;
  padding: 18px 52px 16px 22px;
  background: #f5f5f5 url("../images/common/icon-select.svg") no-repeat right 22.7px center / 11.54px auto;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-form select {
    max-width: 100%;
  }
}

.wpcf7-form input[type="file"] {
  min-width: 280px;
  margin: 7px 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form input[type="file"] {
    margin: 0 0 7px;
  }
}

.wpcf7-form input[type="file"]::file-selector-button {
  margin: 0 10px 0 0;
  padding: 5.5px 15px;
  cursor: pointer;
}

.form_note_text {
  font-size: 14px;
  line-height: calc(24 / 14);
  color: #2b7cd1;
}

.wpcf7-form textarea {
  resize: none;
  max-width: 517px;
  height: 248px;
  padding: 10px 22px;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .wpcf7-form textarea {
    padding: 10px 16px;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-form textarea {
    max-width: 100%;
    height: 200px;
  }
}

.wpcf7-acceptance {
  display: flex;
  justify-content: center;
  margin-top: 62px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-acceptance {
    margin-top: 38px;
    text-align: center;
    line-height: calc(23 / 15);
  }
}

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

.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-acceptance .wpcf7-list-item label {
    align-items: flex-start;
  }
}

.form_acceptance {
  width: 18px;
  height: 18px;
  margin: 3px 6px 0 0;
  border-color: #313131;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form_acceptance {
    margin: 4px 10px 0 0;
  }
}

.form_acceptance_link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #2b7cd1 !important;
  transition: opacity 0.3s;
}

.form_recaptcha_text {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  line-height: calc(22 / 14);
}
@media screen and (max-width: 767px) {
  .form_recaptcha_text {
    font-size: 13px;
  }
}
.form_recaptcha_text a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #2b7cd1 !important;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .form_acceptance_link:hover,
  .form_recaptcha_text a:hover {
    opacity: 0.75;
  }
}

.form_button_container {
  position: relative;
  display: flex;
  justify-content: center;
  column-gap: calc(40 / 940 * 100%);
  margin-top: 50px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .form_button_container {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-top: 40px;
  }
}

.wpcf7-form .form_button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 70px;
  border-radius: 9999px;
  border: 2px solid;
  box-shadow: 0 3px 6px rgba(0 0 0 / 0.16);
  background-repeat: no-repeat;
  background-size: 40px auto;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .form_button {
    width: 240px;
    height: 68px;
    font-size: 14px;
    background-size: 32px auto;
  }
}

.wpcf7-form .form_button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.wpcf7-form .form_button.--submit {
  padding: 0 58px 0 0;
  border-color: #2b7cd1;
  background-color: #2b7cd1;
  background-image: url("../images/contact/arrow-white.svg");
  background-position: right 34px center;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .form_button.--submit {
    padding: 0 40px 0 0;
    background-position: right 25px center;
  }
}

.wpcf7-form .form_button.--back {
  padding: 0 0 0 40px;
  border-color: #b4b7bc;
  background-color: #b4b7bc;
  background-image: url("../images/contact/arrow-back-white.svg");
  background-position: left 34px center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .form_button.--back {
    background-position: left 25px center;
  }
}

@media (any-hover: hover) {
  .wpcf7-form .form_button.--submit:not(:disabled):hover {
    background-color: #fff;
    background-image: url("../images/contact/arrow-blue.svg");
    color: #2b7cd1;
  }

  .wpcf7-form .form_button.--back:hover {
    background-color: #fff;
    background-image: url("../images/contact/arrow-back-gray.svg");
    color: #b4b7bc;
  }
}

.form_button_container .wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: 6px;
  margin: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .form_button_container .wpcf7-spinner {
    bottom: 10px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/* 確認画面 */
.shown_confirm {
  display: none;
}

.confirm .shown_confirm {
  display: block;
}

.confirm .shown_form {
  display: none;
}

.confirm_wrapper {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .confirm_wrapper {
    margin: 10px -17px 0 -24px;
  }
}

.confirm_row {
  display: grid;
  grid-template-columns: calc(398 / 940 * 100%) 1fr;
  border-bottom: 1px solid #dbe2e7;
}
@media screen and (max-width: 767px) {
  .confirm_row {
    grid-template-columns: 100%;
  }
}

.confirm_label {
  padding: 37px 18px 37px 40px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .confirm_label {
    padding: 30px 24px 0;
    font-size: 18px;
    line-height: 1;
  }
}

.confirm_value {
  padding: 38px 0;
}
@media screen and (max-width: 767px) {
  .confirm_value {
    padding: 24px;
    font-size: 16px;
    line-height: 1.75;
  }
}

/* 送信完了ページ */
.thanks_description {
  margin-top: 60px;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  color: #1853a4;
}
@media screen and (max-width: 767px) {
  .thanks_description {
    margin-top: 40px;
    font-size: 20px;
  }
}

.thanks_contents {
  margin-top: 60px;
  padding: 72px 28px 80px;
  border-radius: 30px;
  box-shadow: 2px 3px 10px rgba(43 124 209 / 0.3);
}
@media screen and (max-width: 767px) {
  .thanks_contents {
    margin-top: 40px;
    padding: 32px 29px 40px 20px;
  }
}

.thanks_message {
  text-align: center;
  line-height: 2.0625;
}
@media screen and (max-width: 767px) {
  .thanks_message {
    font-size: 16px;
    text-align: left;
  }
}

.thanks_message_blue {
  font-weight: 400;
  color: #2b7cd1;
}

.thanks_button {
  width: 290px;
  margin: 52px 0 0;
  padding: 0 54px 0 36px;
}
@media screen and (max-width: 767px) {
  .thanks_button {
    width: 240px;
    margin: 32px 0 0;
    padding: 0 39px 0 25px;
  }
}

.thanks_button .c-button__icon {
  transform: rotate(180deg);
}

/* PRIVACY POLICY */
.privacy_policy {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .privacy_policy {
    padding: 60px 0 70px;
  }
}

.privacy_policy__description {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 1.125rem;
  line-height: calc(30 / 18);
}
@media screen and (max-width: 767px) {
  .privacy_policy__description {
    font-size: 16px;
    line-height: 1.875;
  }
}

.privacy_policy__contents {
  margin-top: 80px;
  padding: 60px 60px 80px;
  border-radius: 1.875rem;
  box-shadow: 2px 3px 10px rgba(43 124 209 / 0.3);
}
@media screen and (max-width: 767px) {
  .privacy_policy__contents {
    margin-top: 40px;
    padding: 40px 15px;
    border-radius: 30px;
  }
}

.privacy_policy__section:not(:first-of-type) {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .privacy_policy__section:not(:first-of-type) {
    margin-top: 36px;
  }
}

.privacy_policy__heading {
  display: flex;
  margin: 0 0 13px;
  padding: 0 0 10px;
  border-top: none;
  border-bottom: 1px solid #c4ddff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: calc(30 / 22);
  color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .privacy_policy__heading {
    margin: 0 0 12px;
    padding: 0 0 7px;
    font-size: 18px;
    line-height: calc(30 / 18);
  }
}

.privacy_policy__text {
  margin-right: -4px;
  line-height: calc(30 / 16);
}
@media screen and (max-width: 767px) {
  .privacy_policy__text {
    margin-right: 0;
  }
}

.privacy_policy__text:not(:first-of-type) {
  margin-top: calc(30em / 16);
}

.privacy_policy__text strong {
  font-weight: 600;
}

.privacy_policy__h3 {
  margin: 43px 0 20px;
  padding: 0;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .privacy_policy__h3 {
    margin: 32px 0 10px;
    font-size: 16px;
  }
}

.privacy_policy__h3::after {
  display: none;
}

.privacy_policy__h4 {
  display: flex;
  margin: 17px 0;
  padding: 0;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .privacy_policy__h4 {
    margin: 10px 0 16px;
  }
}

.privacy_policy__h5 {
  margin: 24px 0 16px;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .privacy_policy__h5 {
    margin: 24px 0 5px;
  }
}

@media screen and (max-width: 767px) {
  .privacy_policy__info_text {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    line-height: calc(20 / 12);
    white-space: nowrap;
  }
}

.privacy_policy__bottom {
  margin-top: 56px;
  font-weight: 600;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .privacy_policy__bottom {
    margin-top: 36px;
    line-height: calc(24 / 14);
  }
}

/* 404ページ */
.page404 {
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page404 {
    padding: 60px 0;
  }
}

.page404__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  color: #2b7cd1;
}
@media screen and (max-width: 767px) {
  .page404__title {
    row-gap: 0;
  }
}

.page404__title_en {
  font-size: 6.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page404__title_en {
    font-size: 60px;
  }
}

.page404__title_ja {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 1.875rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page404__title_ja {
    font-size: 20px;
    line-height: 1.6;
  }
}

.page404__text {
  margin: 63px 0;
  line-height: 2.0625;
}
@media screen and (max-width: 767px) {
  .page404__text {
    margin: 33px 0;
    font-size: 16px;
  }
}

.page404__button {
  width: 290px;
  padding: 0 55px 0 25px;
}
@media screen and (max-width: 767px) {
  .page404__button {
    width: 240px;
    padding: 0 39px 0 25px;
  }
}

.page404__button .c-button__icon {
  transform: rotate(180deg);
}

/* 汎用スタイル */
.u-inline-block {
  display: inline-block;
}

.u-font-en {
  font-family: "Josefin Sans", sans-serif !important;
}

.u-text-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

@media (any-hover: hover) {
  .u-hover-fade {
    transition: opacity 0.3s;
  }
  .u-hover-fade:hover {
    opacity: 0.75;
    color: inherit;
    text-decoration-color: inherit;
  }
}

/* 採用情報 */

/* Recruit ヘッダー */
.header {
  width: calc(1280 / 1470 * 100%);
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.header_inner {
  max-width: unset;
  margin: 0;
  padding: 15px 25px 15px 40px;
  display: flex;
  align-items: center;
}

.site-header-logo {
  width: auto !important;
  margin: 0;
  padding: 0;
}

.header_scrolled .site-header-logo {
  display: block;
}

.header_list_item.btn {
  position: relative;
  background: #2b7cd1;
  border-radius: 35px;
  padding: 0;
}

.header_list_item.btn a {
  display: block;
  padding: 0.5rem 4rem 0.5rem 1rem;
}

.c-btn_arrow_wrapper.header_contact {
  width: 30px;
  height: 30px;
}

.c-btn_arrow_wrapper.header_contact svg {
  text-align: center;
  vertical-align: middle;
}

.header_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: auto;
}

.header_nav_list {
  display: flex;
  position: relative;
  margin: unset;
}

.header_nav_list_item {
  position: relative;
  font-size: 14px;
  font-weight: bold;
}

.header_nav_list_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.header_sub_list {
  display: none;
}

.header_nav_list_item:hover > a {
  color: #2b7cd1 !important;
}

.header_nav_list_item:hover .header_sub_list,
.header_nav_list_item:focus-within .header_sub_list {
  display: block;
}

.header_nav_list_item:hover .header_sub_list {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 2.5rem;
  margin: 0;
  white-space: nowrap;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.header_sub_list_item:hover a {
  color: #2b7cd1 !important;
}

/* title */

.c-font-r-title {
  position: relative;
  font-size: 60px;
  font-weight: bold;
  line-height: normal;
  border: none;
  display: inline-block;
  text-align: left;
  margin-bottom: 1rem;
}

.c-font-r-title::after {
  display: block;
  content: attr(data-ja);
  font-family: "Montserrat", sans-serif !important;
  font-size: 20px;
  font-weight: bold;
}

.c-title_wrapper.center {
  text-align: center;
}

/* btn */
.c-btn_wrapper {
  position: relative;
  width: 250px;
  text-align: center;
  border-radius: 100px;
}

.c-btn_wrapper a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 1rem;
}

.c-btn_arrow_wrapper {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100px;
}

.c-btn_arrow {
  font-size: 16px;
  font-weight: bold;
}

.c-btn.recruit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.r-c-btn_wrapper {
  position: relative;
  border-radius: 28px;
  width: 232px;
}

.white-btn {
  background: #fff;
  border: 1px solid #1135a8;
  transition: background-color 0.4s ease;
}

.blue-btn {
  background: #1135a8;
  border: 1px solid #fff;
  transition: background-color 0.4s ease;
}

.line-btn {
  border: 1px solid #fff;
  transition: background-color 0.4s ease;
}

.r-c-btn_wrapper.white-btn:hover {
  background: #1135a8;
}

.r-c-btn_wrapper.blue-btn:hover {
  background: #fff;
}

.r-c-btn_wrapper.line-btn:hover {
  background: #fff;
}

.r-c-btn_wrapper.white-btn:hover .c-btn_text.c-font-c_1135A8 {
  color: #fff !important;
}

.r-c-btn_wrapper.blue-btn:hover .c-btn_text.c-font-c_fff {
  color: #1135a8 !important;
}

.r-c-btn_wrapper.line-btn:hover .c-btn_text.c-font-c_fff {
  color: #1135a8 !important;
}

.r-c-btn_wrapper.white-btn:hover svg circle {
  fill: #fff;
}

.r-c-btn_wrapper.white-btn:hover svg text {
  fill: #1135a8;
}

.r-c-btn_wrapper.blue-btn:hover svg circle {
  fill: #1135a8;
}

.r-c-btn_wrapper.blue-btn:hover svg text {
  fill: #fff;
}

.r-c-btn_wrapper.line-btn:hover svg circle {
  fill: #1135a8;
}

.r-c-btn_wrapper.line-btn:hover svg text {
  fill: #fff;
}

.c-btn.recruit.view-more {
  padding: 4px 4px 4px 56px;
}

/* recruite-header */
.recruit-header {
  background: #1135a8;
  color: #fff;
}

.recruit-header_inner {
  padding: 270px 0 184px;
}

.recruit-header-title {
  padding: 0 0 0 32px;
  margin: 0;
  border: none;
  font-size: 52px;
}

.recruit-header_contents_bg {
  position: relative;
}

.recruit-header_contents_bg.ourdata::after {
  content: "";
  background-image: url(../images/ourdata-kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 708px;
  height: 135px;
  position: absolute;
  bottom: 0;
  right: -4px;
}

.recruit-header_contents_bg.training::after {
  content: "";
  background-image: url(../images/training-kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 680px;
  height: 130px;
  position: absolute;
  bottom: 0;
  right: -10px;
}

.recruit-header_contents_bg.careerpath::after {
  content: "";
  background-image: url(../images/careerpath-kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 940px;
  height: 125px;
  position: absolute;
  bottom: 0;
  right: -10px;
}

.recruit-header_contents_bg.environment::after {
  content: "";
  background-image: url(../images/environment-kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 990px;
  height: 125px;
  position: absolute;
  bottom: 0;
  right: -4px;
}

.recruit-header_contents_bg.recruit::after {
  content: "";
  background-image: url(../images/recruitment-kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 990px;
  height: 125px;
  position: absolute;
  bottom: 0;
  right: -4px;
}

/* recruite-header_nav */
.recruite-site-header {
  width: 90%;
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  z-index: 10;
}

.recruit-site-header-container.header_inner {
  padding: 0.5rem 2rem;
}

.r-header_list_item.btn {
  position: relative;
  background: #ec5033;
  border-radius: 35px;
  padding: 0;
  transition: all 0.3s ease;
}

.r-header_list_item.btn:hover {
  opacity: 0.6;
}

.r-header-c-btn_arrow_wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}

.r-header-c-btn_arrow_wrapper p {
  font-size: 16px;
  font-family: "Archivo", sans-serif !important;
}

.r-header-c-btn_arrow {
  border: 1px solid #fff;
  border-radius: 30px;
  width: 44px;
  height: 44px;
  text-align: center;
  align-content: center;
}

.r-header-c-btn_arrow p {
  font-size: 20px;
  padding-bottom: 5px;
}

/* recruit-top */
.recruit-top_sub-inner {
  padding: 80px 0 120px;
}

/* r-top-introduction */
.recruit-top_debut-introduction_inner {
  padding: 800px 0 400px;
}

.recruit-top_training-introduction_inner {
  padding: 400px 0 800px;
}

.recruit-top-debut-introduction_bg {
  background-image: linear-gradient(45deg, #2894a8cc, #01165acc), url(../images/r-top-introduction_img01.jpg);
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
}

.recruit-top-training-introduction_bg {
  background-image: linear-gradient(45deg, #2894a8cc, #01165acc), url(../images/r-top-introduction_img02.jpg);
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
}

.p-recruit-top_debut-introduction_wrapper {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}

.p-recruit-top_training-introduction_wrapper {
  width: 50%;
}

.c-title_wrapper.debut-introduction img {
  margin-bottom: 6em;
}

.c-font-r-debut-introduction-title {
  font-size: 60px;
  font-weight: bold;
}

.c-font-r-debut-introduction_200 {
  font-size: 260px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  letter-spacing: -1rem;
}

.c-font-c_4D8FA8 {
  background: #fff;
  color: #4d8fa8;
}

.c-font-r-training-introduction-title1 {
  font-size: 100px;
  font-weight: bold;
}

.c-font-r-training-introduction-title2 {
  font-size: 80px;
  font-weight: bold;
}

.p-recruit-top_introduction_text {
  font-size: 26px;
}

#recruit-training-introduction {
  position: relative;
  z-index: 2;
}

/* r-top-routine */
.recruit-top_routine-inner {
  padding: 100px 0 209px;
}

.p-recruit-top_routine_item {
  position: relative;
}

.p-recruit-top_routine_inner-item {
  position: relative;
}

.p-recruit-top_routine_inner-item::before {
  content: "ROUTINE";
  color: #e9eef4;
  font-family: "Montserrat", sans-serif !important;
  font-size: 186px;
  letter-spacing: -38px;
  font-weight: bold;
  transform: rotate(90deg);
  position: absolute;
  top: 150px;
  left: -245px;
  z-index: 1;
}

.p-recruit-top_routine_item_image {
  position: absolute;
  height: 100%;
  width: auto;
  right: 0;
}

.p-recruit-top_routine_item_image img {
  width: 640px;
  height: 584px;
}

.p-recruit-top_routine_item_text {
  width: 58%;
  position: relative;
}

.c-btn.recruit.recruit-routine {
  padding: 4px 4px 4px 28px;
}

.p-recruit-top_routine_item_text .r-c-btn_wrapper {
  position: absolute;
  right: 5rem;
  bottom: -8rem;
}

/* r-top-member */
#recruit-member {
  position: relative;
  z-index: 2;
}

.recruit-top-member_bg {
  position: relative;
  background: #1135a8;
}

.recruit-top-member_bg::after {
  content: "";
  background-image: url(../images/r-top_member.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 800px;
  height: 155px;
  position: absolute;
  bottom: 0;
  right: -6px;
}

.c-font-r-title.member::before {
  position: absolute;
  display: block;
  content: "";
  width: 128px;
  height: 1px;
  background: #fff;
  left: 104px;
  bottom: 43px;
}

.p-recruit-top_member_content {
  margin-bottom: 2em;
}

.p-r-top-member-card {
  overflow: hidden;
  width: 100%;
  transition: transform 0.3s ease;
  position: relative;
}

.p-r-top-member-card:hover {
  transform: translateY(-4px);
}

.p-r-top-member-card_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.p-r-top-member-card_content {
  padding: 16px 8px;
}

.p-r-top-member-card_tag {
  position: absolute;
  background: #fff;
  color: #1135a8;
  border: 1px solid;
  font-size: 12px !important;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 20px;
  top: 16px;
  left: 8px;
}

.p-r-top-member-card_title {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.member-swiper .swiper-slide {
  width: 430px !important;
  flex-shrink: 0;
  box-sizing: border-box;
}

.member-swiper {
  padding: 16px 0 !important;
  overflow: visible !important;
}

.swiper-button-prev.custom-prev,
.swiper-button-next.custom-next {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-button-prev.custom-prev:hover,
.swiper-button-next.custom-next:hover {
  opacity: 0.6;
}

.swiper-button-prev.custom-prev:hover svg circle {
  fill: #fff;
}

.swiper-button-prev.custom-prev:hover svg path {
  stroke: #1135a8;
}

.swiper-button-next.custom-next:hover svg circle {
  fill: #fff;
}

.swiper-button-next.custom-next:hover svg path {
  stroke: #1135a8;
}

.swiper-button-prev.custom-prev {
  right: 70px;
  top: -56px;
}

.swiper-button-next.custom-next {
  right: -10px;
  top: -56px;
}

.swiper-button-prev {
  left: auto !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: none !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: none !important;
}

.swiper-button-prev.custom-prev svg,
.swiper-button-next.custom-next svg {
  width: 100%;
  height: 100%;
}

/* r-top-ourdata */

.c-font-r-title.ourdata::before {
  position: absolute;
  display: block;
  content: "";
  width: 174px;
  height: 1px;
  background: #1135a8;
  left: 120px;
  bottom: 43px;
}

.p-recruit-top_ourdata_item {
  display: flex;
  justify-content: space-between;
}

.p-recruit-top_ourdata_item_work {
  position: relative;
}

.p-recruit-top_ourdata_item_stuff {
  position: relative;
}

.p-recruit-top_ourdata_item_work_image {
  width: 512px;
  height: 400px;
  display: block;
  overflow: hidden;
  border-top-left-radius: 16px;
  clip-path: polygon(0 0, calc(100% - 110px) 0, 100% 110px, 100% 100%, 0 100%);
}

.p-recruit-top_ourdata_item_stuff_image {
  width: 512px;
  height: 400px;
  display: block;
  overflow: hidden;
  border-top-left-radius: 16px;
  clip-path: polygon(0 0, calc(100% - 110px) 0, 100% 110px, 100% 100%, 0 100%);
}

.p-recruit-top_ourdata_item_work_image img {
  transition: transform 0.4s ease;
}

.p-recruit-top_ourdata_item_stuff_image img {
  transition: transform 0.4s ease;
}

.p-recruit-top_ourdata_item_work:hover .p-recruit-top_ourdata_item_work_image img {
  transform: scale(1.1);
}

.p-recruit-top_ourdata_item_stuff:hover .p-recruit-top_ourdata_item_stuff_image img {
  transform: scale(1.1);
}

.p-recruit-top_ourdata_item_work:hover .p-recruit-top_ourdata_subtitle,
.p-recruit-top_ourdata_item_work:hover .p-recruit-top_ourdata_item_work_text {
  background: #e9eef4;
}

.p-recruit-top_ourdata_item_stuff:hover .p-recruit-top_ourdata_subtitle,
.p-recruit-top_ourdata_item_stuff:hover .p-recruit-top_ourdata_item_work_text {
  background: #e9eef4;
}

.p-recruit-top_ourdata_item_work:hover .c-font-c_fff,
.p-recruit-top_ourdata_item_stuff:hover .c-font-c_fff {
  color: #1135a8 !important;
}

.p-recruit-top_ourdata_item_work:hover g,
.p-recruit-top_ourdata_item_stuff:hover g {
  stroke: #1135a8;
}

.p-recruit-top_ourdata_item_work:hover text,
.p-recruit-top_ourdata_item_stuff:hover text {
  fill: #1135a8;
}

.p-recruit-top_ourdata_subtitle {
  background: #1135a8;
  border-radius: 20px 20px 0 0;
  padding: 0.5em 1em 0;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  bottom: 100px;
}

.p-recruit-top_ourdata_item_work_text {
  background: #1135a8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 512px;
  padding: 2em;
  border-radius: 0 0 15px 15px;
}

.p-recruit-top_ourdata_text {
  font-size: 12px;
}

.p-recruit-top_ourdata_item_work::before {
  content: "Comfort to Work";
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  color: #1135a8;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 36px;
  right: -20px;
  z-index: 2;
}

.p-recruit-top_ourdata_item_stuff::before {
  content: "People at Work";
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  color: #1135a8;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 36px;
  right: -20px;
  z-index: 2;
}

/* r-top-environment */
.recruit-top-environment_bg {
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-top-environment_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit-top-environment_bg .recruit-top_sub-inner {
  padding: 64px 0 211px;
}

.c-font-r-title.environment::before {
  position: absolute;
  display: block;
  content: "";
  width: 244px;
  height: 1px;
  background: #fff;
  left: 170px;
  bottom: 43px;
}

.p-recruit-top_environment_item {
  position: relative;
}

.p-recruit-top_environment_item .r-c-btn_wrapper {
  position: absolute;
  bottom: -8rem;
}

.c-btn.recruit.recruit-environment {
  padding: 4px 4px 4px 40px;
}

/* r-top-training */
.recruit-top-training_bg {
  background: #e9eef4;
}

.c-font-r-title.training::before {
  position: absolute;
  display: block;
  content: "";
  width: 124px;
  height: 1px;
  background: #1135a8;
  left: 112px;
  bottom: 43px;
}

.p-recruit-top_training_item {
  padding: 40px 0 64px;
}

.p-recruit-top_training_slider {
  list-style-type: none;
  display: flex;
}

.p-recruit-top_training_slider-text {
  background: #fff;
  border-radius: 35px 35px 0 0;
  padding: 1.5rem 1.2rem 0.5rem;
  position: relative;
}

.p-recruit-top_curriculum_slider-item {
  width: 350px;
  border: 2px solid #1135a8;
  border-radius: 35px;
  position: relative;
}

.p-recruit-top_training_slider-title {
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
}

.p-recruit-top_curriculum_slider-item img {
  width: 380px;
  height: 417px;
  border-radius: 0 0 33px 33px;
  display: block;
}

.p-recruit-top_curriculum_slider-item::before {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 53px;
  background: #1135a8;
  right: 0;
  top: 34px;
  z-index: 2;
}

.p-recruit-top_curriculum_slider-item::after {
  position: absolute;
  display: block;
  content: "Curriculum";
  font-size: 9px;
  letter-spacing: -0.03em;
  font-weight: bold;
  color: #1135a8;
  right: -8px;
  top: 53px;
  transform: rotate(90deg);
}

.p-recruit-top_training_slider-text.it::before {
  position: absolute;
  display: block;
  content: "01";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.java::before {
  position: absolute;
  display: block;
  content: "02";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.sql::before {
  position: absolute;
  display: block;
  content: "03";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.team::before {
  position: absolute;
  display: block;
  content: "04";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.ai::before {
  position: absolute;
  display: block;
  content: "05";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.ps::before {
  position: absolute;
  display: block;
  content: "06";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.figma::before {
  position: absolute;
  display: block;
  content: "07";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-text.pr::before {
  position: absolute;
  display: block;
  content: "08";
  font-family: "Montserrat", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  color: #1135a8;
  right: 30px;
  top: 25px;
}

.p-recruit-top_training_slider-item {
  flex-shrink: 0;
  width: 380px;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide-active {
  transform: scale(1.15);
  opacity: 1;
  z-index: 2;
}

.recruit-top-training_bg .r-c-btn_wrapper {
  margin: 0 auto;
}

/* r-top-careerpath */
.recruit-top-careerpath_bg {
  background: linear-gradient(180deg, #052486, #1570ea);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.c-font-r-title.careerpath::before {
  position: absolute;
  display: block;
  content: "";
  width: 194px;
  height: 1px;
  background: #fff;
  left: 158px;
  bottom: 43px;
}

.recruit-top-careerpath_bg .r-c-btn_wrapper {
  margin: 0 0 0 auto;
  z-index: 1;
}

.c-btn.recruit.recruit-careerpath {
  padding: 4px 4px 4px 24px;
}

.p-recruit-top-careerpath_slide {
  display: flex;
  position: absolute;
  right: 420px;
  top: 0;
  z-index: 0;
}

.p-recruit-top-careerpath_item_image {
  list-style: none;
  margin: 0.5em 0;
}

.p-recruit-top-careerpath_item_image img {
  border-radius: 20px;
}

.p-recruit-top-careerpath_item {
  display: flex;
  padding: 1.1em;
  flex-direction: column;
  animation-duration: 50s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.p-recruit-top-careerpath_item.left {
  width: 44%;
  max-width: 44%;
  animation-name: scroll-up;
}

.p-recruit-top-careerpath_item.right {
  width: 44%;
  max-width: 44%;
  animation-name: scroll-down;
}

@keyframes scroll-up {
  0% {
    transform: rotate(15deg) translateY(0%);
  }

  100% {
    transform: rotate(15deg) translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: rotate(15deg) translateY(-50%);
  }

  100% {
    transform: rotate(15deg) translateY(0%);
  }
}

/* r-top-recruitment */
#recruitment .recruit-top_sub-inner {
  padding: 80px 0 260px;
}

.p-recruit-top_recruitment_item {
  display: flex;
  justify-content: space-between;
}

.c-font-r-title.recruitment::before {
  position: absolute;
  display: block;
  content: "";
  width: 80px;
  height: 1px;
  background: #1135a8;
  left: 163px;
  bottom: 43px;
}

.p-recruit-top_recruitment_item_image img {
  width: 530px;
  height: auto;
  border-radius: 20px;
}

.p-recruit-top_recruitment_item_text {
  position: relative;
}

.p-recruit-top_recruitment_item_text .r-c-btn_wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* 人とカルチャー */
.sidebar-contents {
  display: flex;
  justify-content: space-between;
}

.p-sub_culture_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  margin-bottom: 6vw;
}

.p-sub_culture_image_wrapper {
  width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
}

.p-sub_culture_category-tag {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 12px;
  margin: 1em 0;
}

.p-sub_culture_category {
  width: 95px;
  text-align: center;
  padding: 0.2em;
  border-radius: 20px;
}

.cat-routine {
  background-color: #1135a9;
}

.cat-member {
  background-color: #28c1c1;
}

.cat-report {
  background-color: #fd5535;
}

.p-sub_culture_image_wrapper img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.p-sub_culture_list_item:hover .p-sub_culture_image_wrapper img {
  transform: scale(1.1);
}

/* taxonomyページ */
.c-sub_culture_category_title {
  border-bottom: 1px solid #707070;
  font-size: 26px;
  font-weight: normal;
}

.c-sub_culture_category_title::after {
  border-bottom: none;
}

/* singleページ */
.p-single-culture_bg {
  background: #f4f7fd;
}

.p-sub_culture_single_category {
  width: 110px;
  text-align: center;
  padding: 0.5em;
  border-radius: 10px;
}

.p-sub_culture_category-tag_single {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.r-l-unker-link_list_culture {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  width: 760px;
  margin: 0 auto 4rem;
  background: #e9eef4;
  border-radius: 40px;
}

.r-l-unker-link_list_culture_item {
  background: #e9eef4;
  width: 190px;
  padding: 1em;
  border-radius: 40px;
  font-size: 20px;
  text-align: center;
  align-items: center;
  margin: 0;
  text-decoration: none;
  transition: background-color 0.4s ease;
}

.r-l-unker-link_list_culture_item.r_culture01:hover {
  background: #091550;
}

.r-l-unker-link_list_culture_item:hover .c-font-c_091550 {
  color: #fff !important;
}

.r-l-unker-link_list_culture_item.r_culture02:hover {
  background: #1135a9;
}

.r-l-unker-link_list_culture_item.r_culture03:hover {
  background: #28c1c1;
}

.r-l-unker-link_list_culture_item.r_culture04:hover {
  background: #fd5535;
}

.r-l-unker-link_list_culture_item a {
  text-decoration: none;
}

.p-sub_single-culture_contents {
  width: 70%;
}

.p-sub_culture_thumb {
  width: 68%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 80px 0;
}

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

.p-sub_culture_date {
  font-size: 14px;
}

.p-single-culture_post_title {
  border-bottom: none;
  font-size: 30px;
  border-bottom: 1px solid #707070;
}

.p-single-culture_post_title::after {
  border-bottom: none;
}

.c-btn_culture-single {
  margin: 4em auto 0;
}

/* サイドバー */
.p-sub_culture-archive_side_contents_item:first-child {
  margin-bottom: 4em;
}

.p-sub_culture-archive_side_image_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.p-sub_culture-archive_side_image {
  width: 150px;
  height: 150px;
  overflow: hidden;
}

.p-sub_culture-archive_side_image img {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.p-sub_culture-archive_side_image:hover img {
  transform: scale(1.1);
}

.p-sub_culture-archive_side_title {
  background: #1135a8;
  margin: 0;
  border-radius: 20px 20px 0 0;
  padding: 0.8em 1.5em;
  font-size: 18px;
  font-weight: normal;
}

.p-sub_culture-archive_side_contents_list {
  background: #f4f7fd;
  padding: 2em;
  border-radius: 0 0 20px 20px;
}

.p-sub_culture-archive_side_contents_list_title {
  font-size: 20px;
  color: #091550;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #6a6a6a;
}

.p-sub_culture-archive_side_contents_list_item {
  margin: 0;
  margin-bottom: 1em;
  padding-left: 0;
}

.p-sub_culture-archive_side_contents_list_item li {
  margin: 0;
  list-style: none;
  line-height: 1.5;
  text-decoration: none;
}

.p-sub_culture-archive_side_contents_list_item a {
  text-decoration: none;
}

.p-sub_culture-archive_side_contents_list.single {
  background: #fff;
}

/* 数字で見る */
.r-p-sub_ourdata_bg {
  background: #f4f7fd;
}

.r-p-sub_ourdata_bg .recruit-top_sub-inner {
  padding: 80px 0 300px;
}

.c-font-r-title.comfort-data::before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background: #3e3e3e;
  left: 188px;
  bottom: 43px;
}

.c-font-r-title.people-data::before {
  position: absolute;
  display: block;
  content: "";
  width: 180px;
  height: 1px;
  background: #3e3e3e;
  left: 172px;
  bottom: 43px;
}

.p-sub_ourdata_contents {
  margin-bottom: 120px;
}

.p-sub_ourdata_contents_list {
  margin-bottom: 1.5em;
}

.p-sub_ourdata_contents_list_item {
  display: flex;
  justify-content: space-between;
}

.p-sub_ourdata_contents_list_item_box {
  position: relative;
  background: #fff;
  width: 49%;
  height: 264px;
  border-radius: 30px;
  padding: 1.7em 2.5em;
}

.p-sub_ourdata_contents_list_item_text {
  font-size: 30px;
  text-box-trim: trim-both;
  margin-bottom: 0.6em;
}

.p-sub_ourdata_contents_list_item_number {
  font-family: "Montserrat", sans-serif !important;
  font-size: 120px;
  font-weight: bold;
}

.p-sub_ourdata_contents_list_item_number.center {
  text-align: center;
  position: relative;
  z-index: 2;
}

.ourdata_unit {
  font-size: 40px;
}

.p-sub_ourdata_contents_list_item_box.comfort_holiday {
  width: 100%;
}

.p-sub_ourdata_contents_list_item_box.debut {
  width: 63%;
}

.p-sub_ourdata_contents_list_item_box.no-experience {
  width: 35%;
}

.p-sub_ourdata_contents_list.people-data {
  display: flex;
  justify-content: space-between;
}

.p-sub_ourdata_people-data_contents_list_item {
  width: 49%;
}

.p-sub_ourdata_contents_list_item_box.top_graph {
  width: 100%;
  height: 280px;
  margin-bottom: 1.5em;
}

.p-sub_ourdata_contents_list_item_box.bottom_graph {
  width: 100%;
  height: 280px;
  margin-top: 1.5em;
}

.p-sub_ourdata_contents_list_item_box.graph {
  width: 100%;
  height: 352px;
}

.p-sub_ourdata_contents_list_item_salary-number_box {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5em;
}

.p-sub_ourdata_contents_list_item_box.salary {
  width: 63%;
}

.p-sub_ourdata_contents_list_item_box.age {
  width: 35%;
}

.p-sub_ourdata_contents_list_item_number.salary {
  font-size: 100px;
}

.p-sub_ourdata_contents_list_item_box.overtime::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 20%;
  right: 2.5em;
}

.p-sub_ourdata_contents_list_item_box.annual-holidays::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 150px;
  height: 135px;
  position: absolute;
  bottom: 20%;
  right: 2.5em;
}

.p-sub_ourdata_contents_list_item_box.remote::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img03.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 166px;
  height: 160px;
  position: absolute;
  bottom: 20%;
  right: 2.5em;
}

.p-sub_ourdata_contents_list_item_box.comfort_holiday::before {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img04.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 173px;
  height: 145px;
  position: absolute;
  bottom: 16%;
  left: 7.5em;
}

.p-sub_ourdata_contents_list_item_box.comfort_holiday::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img05.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 206px;
  height: 187px;
  position: absolute;
  bottom: 16%;
  right: 7.5em;
}

.p-sub_ourdata_contents_list_item_box.debut::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img06.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 144px;
  height: 172px;
  position: absolute;
  bottom: 20%;
  right: 2.5em;
}

.p-sub_ourdata_contents_list_item_box.top_graph::before {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img07.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 54px;
  height: 215px;
  position: absolute;
  bottom: 10%;
  left: 0;
}

.p-sub_ourdata_contents_list_item_box.top_graph::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img08.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 54px;
  height: 215px;
  position: absolute;
  bottom: 10%;
  right: 0;
}

.p-sub_ourdata_contents_list_item_box.bottom_graph::before {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img09.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 146px;
  height: 172px;
  position: absolute;
  bottom: 10%;
  left: 0;
}

.p-sub_ourdata_contents_list_item_box.bottom_graph::after {
  content: "";
  background-image: url(/wp-content/themes/lightning/_g3/assets/images/r-ourdata_img10.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 143px;
  height: 187px;
  position: absolute;
  bottom: 10%;
  right: 0;
}

.p-sub_ourdata_contents_list_item_number.region::before {
  content: "関東";
  position: absolute;
  font-size: 30px;
  top: -12%;
  left: 40px;
}

.p-sub_ourdata_contents_list_item_number.region::after {
  content: "関西";
  position: absolute;
  font-size: 30px;
  top: -12%;
  right: 40px;
}

.p-sub_ourdata_contents_list_item_number.first::before {
  content: "入社時";
  position: absolute;
  font-family: "Montserrat", sans-serif !important;
  font-size: 25px;
  top: 30%;
  left: 40px;
}

.p-sub_ourdata_contents_list_item_number.now::before {
  content: "1年4ヶ月後";
  position: absolute;
  font-family: "Montserrat", sans-serif !important;
  font-size: 25px;
  top: 30%;
  right: 130px;
}

/* training */
.r-l-unker-link_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  list-style: none;
  padding: 0;
}

.r-l-unker-link_list a {
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.r-l-unker-link_list a::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 45%;
  right: -1rem;
  border-bottom: 2px solid #091550;
  border-right: 2px solid #091550;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
}

.r-l-unker-link_list_item {
  background: #e9eef4;
  padding: 0.6em 2.5em 0.6em 0.6em;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.r-l-unker-link_list_item:hover {
  background: #091550;
}

.r-l-unker-link_list_item:hover a {
  color: #fff !important;
}

.r-l-unker-link_list_item:hover a::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.c-font-r-title.engineer-curriculum::before {
  position: absolute;
  display: block;
  content: "";
  width: 380px;
  height: 1px;
  background: #091550;
  left: 268px;
  bottom: 43px;
}

.c-font-r-title.design-curriculum::before {
  position: absolute;
  display: block;
  content: "";
  width: 350px;
  height: 1px;
  background: #500909;
  left: 240px;
  bottom: 43px;
}

.p-sub_title_text {
  font-size: 16px;
}

.c-font-r-sub-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-sub_engineer-curriculum_contents_teacher {
  display: flex;
  justify-content: space-between;
  gap: 4em;
  margin-bottom: 80px;
}

.p-sub_design-curriculum_contents_teacher_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4em;
  margin-bottom: 80px;
}

.p-sub_design-curriculum_contents_teacher_list img {
  border-radius: 50%;
}

.p-sub_engineer-curriculum_contents_teacher_list {
  flex: 1;
  text-align: center;
}

.p-sub_engineer-curriculum_contents_teacher_list img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  padding-bottom: 1em;
}

.p-sub_curriculum_contents_teacher_list_item {
  font-size: 20px;
  padding-bottom: 1em;
}

.p-sub_curriculum_contents_teacher_list_item_text {
  font-size: 16px;
  display: inline-block;
  text-align: left;
}

.p-sub_engineer-curriculum_contents_flow {
  background: #e9eef4;
  border-radius: 60px;
  padding: 4em;
  margin-bottom: 80px;
}

.p-sub_design-curriculum_contents_flow {
  background: #ffe2d1;
  border-radius: 60px;
  padding: 4em;
  margin-bottom: 80px;
}

.p-sub_curriculum_contents_flow_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #fff;
}

.p-sub_curriculum_contents_flow_list:last-child {
  border-bottom: none;
}

.p-sub_curriculum_contents_flow_list_item {
  width: 30%;
}

.p-sub_curriculum_contents_flow_list_item:last-child {
  width: 44%;
}

.p-sub_curriculum_contents_flow_list_item.engineer-icon {
  background: #091550;
  width: 150px;
  height: 150px;
  border-radius: 80px;
  position: relative;
}

.p-sub_curriculum_contents_flow_list_item.design-icon {
  background: #500909;
  width: 150px;
  height: 150px;
  border-radius: 80px;
  position: relative;
}

.p-sub_curriculum_contents_flow_list_item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.p-sub_curriculum_contents_flow_list_item_text.c-font-c_2293C6 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 18px;
}

.p-sub_curriculum_contents_flow_list_item_text.c-font-c_F4762D {
  font-family: "Montserrat", sans-serif !important;
  font-size: 18px;
}

.p-sub_curriculum_contents_flow_list_item_text {
  font-size: 30px;
  font-weight: bold;
}

.p-sub_curriculum_contents_flow_list_item_text.eg-title {
  font-size: 20px;
}

.p-sub_curriculum_contents_flow_numbered-list {
  font-size: 24px;
  font-weight: bold;
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.5em;
}

.p-sub_curriculum_contents_flow_numbered-list li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 1.4em;
}

.p-sub_curriculum_contents_flow_numbered-list.engineer li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #f9fbfc;
  color: #2293c6;
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  left: -30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-sub_curriculum_contents_flow_numbered-list li:first-child::after {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 175px;
  background: #f9fbfc;
  left: -10px;
  top: 50px;
}

.p-sub_curriculum_contents_flow_numbered-list.three li:first-child::after {
  height: 108px;
}

.p-sub_curriculum_contents_flow_numbered-list.five li:first-child::after {
  height: 250px;
}

.p-sub_curriculum_contents_flow_numbered-list.design li:first-child::after {
  background: #fff8f4;
}

.p-sub_curriculum_contents_flow_numbered-list.one li:first-child::after {
  height: 0;
}

.p-sub_engineer-curriculum_contents_other {
  display: flex;
  justify-content: space-between;
  padding: 1em 4em;
  border-top: 1px solid #091550;
  border-bottom: 1px solid #091550;
}

.p-sub_design-curriculum_contents_other {
  padding: 1em 4em;
  border-top: 1px solid #500909;
  border-bottom: 1px solid #500909;
}

.p-sub_design-curriculum_contents_other ul {
  display: flex;
  justify-content: space-between;
}

.p-sub_curriculum_contents_flow_numbered-list.design li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #fff8f4;
  color: #f4762d;
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  left: -30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#banner .recruit-top_sub-inner {
  padding: 80px 0 300px;
}

.banner_image_wrapper {
  transition: all 0.3s ease;
}

.banner_image_wrapper:hover {
  transform: scale(1.1);
}

/* carrer path */
#grow-design .recruit-top_sub-inner {
  padding: 80px 0 300px;
}

.r-l-unker-link_list_item.grow-engineer a {
  padding: 0.5rem 5rem;
}

.r-l-unker-link_list_item.grow-design a {
  padding: 0.5rem 5.3rem;
}

.c-font-r-sub-title.center {
  text-align: center;
}

.c-font-r-title.start-career::before {
  position: absolute;
  display: block;
  content: "";
  width: 516px;
  height: 1px;
  background: #091550;
  left: 194px;
  bottom: 43px;
}

.c-font-r-title.grow-engineer::before {
  position: absolute;
  display: block;
  content: "";
  width: 596px;
  height: 1px;
  background: #091550;
  left: 226px;
  bottom: 43px;
}

.c-font-r-title.grow-design::before {
  position: absolute;
  display: block;
  content: "";
  width: 590px;
  height: 1px;
  background: #500909;
  left: 230px;
  bottom: 43px;
}

.p-sub_carrer_contents {
  padding: 80px 0 120px;
}

.p-sub_carrer_contents.no-top {
  padding-top: 0;
}

.p-sub_carrer_contents_steps_image {
  position: relative;
}

.p-sub_carrer_contents_steps_item_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.p-sub_carrer_contents_steps_item_title.pg {
  top: 59px;
  left: 60px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_title.se {
  top: 71px;
  left: 300px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_title.pmo {
  top: 71px;
  right: 370px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_title.pm {
  top: 71px;
  right: 124px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_text {
  position: absolute;
  top: 158px;
  font-size: 14px;
}

.p-sub_carrer_contents_steps_item_text.pg {
  left: 47px;
}

.p-sub_carrer_contents_steps_item_text.se {
  left: 306px;
}

.p-sub_carrer_contents_steps_item_text.pmo {
  right: 265px;
}

.p-sub_carrer_contents_steps_item_text.pm {
  right: 34px;
}

.p-sub_carrer_contents_steps_item_text ul {
  margin: 0 0 1rem !important;
}

.no-dot {
  font-weight: bold;
}

.p-sub_carrer_contents_case {
  position: relative;
}

.p-sub_carrer_contents_case:first-of-type {
  margin-bottom: 80px !important;
}

.p-sub_carrer_contents_case_item_img {
  width: 480px;
  height: 280px;
  position: absolute;
  right: 0;
  top: 64px;
  z-index: 1;
}

.p-sub_carrer_contents_case_box {
  width: 800px;
  padding: 4em 1.5em 1.5em;
  background-color: #e9eef4;
  border-radius: 20px;
  position: relative;
}

.p-sub_carrer_contents_case_item_img img {
  border-radius: 18px;
}

.p-sub_carrer_contents_case_number {
  font-family: "Montserrat", sans-serif !important;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  position: absolute;
  left: 40px;
  top: -14px;
}

.p-sub_carrer_contents_case_item_text_wapper {
  width: 72%;
  padding-left: 1em;
}

.p-sub_carrer_contents_case_item_text {
  font-size: 18px;
  margin-bottom: 2em;
  line-height: 1.5;
}

.p-sub_carrer_contents_case_item_text.name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-sub_carrer_contents_case_item_timeline {
  background: #ffffffc0;
  border-radius: 16px;
  padding: 1em;
  width: 72%;
}

.p-sub_carrer_contents_case_item_timeline_list {
  display: flex;
}

.timeline_list_year {
  width: 88px;
  font-size: 16px;
  font-weight: bold;
  padding-right: 20px;
  text-align: right;
  position: relative;
  flex-shrink: 0;
  line-height: 32px;
}

.timeline_list_desc {
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  padding-left: 40px;
  margin-bottom: 1em;
}

.timeline_list_desc span {
  font-size: 14px;
  font-weight: normal;
}

.p-sub_carrer_contents_case_item_img.case2 {
  left: 0;
}

.p-sub_carrer_contents_case_box.case2 {
  margin: 0 0 0 auto;
}

.p-sub_carrer_contents_case_item_text_wapper.case2 {
  margin: 0 0 0 auto;
}

.p-sub_carrer_contents_case_item_timeline.case2 {
  margin: 0 0 0 auto;
}

.p-sub_carrer_contents_steps_item_title.ad {
  top: 71px;
  left: 70px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_title.ds {
  top: 71px;
  left: 465px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_title.ld {
  top: 71px;
  right: 96px;
  position: absolute;
}

.p-sub_carrer_contents_steps_item_text.ad {
  left: 92px;
}

.p-sub_carrer_contents_steps_item_text.ds {
  left: 418px;
}

.p-sub_carrer_contents_steps_item_text.ld {
  right: 17px;
}

.p-sub_carrer_contents_case_box.design {
  width: 800px;
  padding: 4em 1.5em 1.5em;
  background-color: #ffe2d1;
}

.timeline_list_year.engineer01::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #a2b9d9;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.engineer02::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #2293c6;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.engineer03::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #1135a8;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.engineer04::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #062176;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.engineer01.case1::after {
  content: "";
  width: 2px;
  height: 183px;
  border-radius: 10px;
  background: linear-gradient(100deg, #a2b9d9, #2293c6, #1135a8, #062176);
  position: absolute;
  left: 97px;
  top: 25px;
}

.timeline_list_year.engineer01.case2::after {
  content: "";
  width: 2px;
  height: 313px;
  border-radius: 10px;
  background: linear-gradient(100deg, #a2b9d9, #2293c6, #1135a8, #062176);
  position: absolute;
  left: 97px;
  top: 25px;
}

.timeline_list_year.design01::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #fca60d;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.design02::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #f4762d;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.design03::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #f55626;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.design04::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #d32d01;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
}

.timeline_list_year.design01.case1::after {
  content: "";
  width: 2px;
  height: 313px;
  border-radius: 10px;
  background: linear-gradient(100deg, #fca60d, #f47405, #f55626, #d32d00);
  position: absolute;
  left: 96px;
  top: 25px;
}

.timeline_list_year.design01.case2::after {
  content: "";
  width: 2px;
  height: 285px;
  border-radius: 10px;
  background: linear-gradient(100deg, #fca60d, #f47405, #f55626, #d32d00);
  position: absolute;
  left: 97px;
  top: 25px;
}

/* environment */
#faq .recruit-top_sub-inner {
  padding: 80px 0 300px;
}

.r-l-unker-link_list_item.benefits {
  padding: 0.6em 2.5em 0.6em 4.6em;
}

.r-l-unker-link_list_item.benefits a {
  padding: 0.5rem 4rem 0.5rem 0.5rem;
}

.r-l-unker-link_list_item.faq {
  padding: 0.6em 2.5em 0.6em 3em;
}

.r-l-unker-link_list_item.faq a {
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
}

.c-font-r-title.benefits::before {
  position: absolute;
  display: block;
  content: "";
  width: 126px;
  height: 1px;
  background: #091550;
  left: 112px;
  bottom: 43px;
}

.c-font-r-title.our-appeal::before {
  position: absolute;
  display: block;
  content: "";
  width: 448px;
  height: 1px;
  background: #091550;
  left: 148px;
  bottom: 43px;
}

.c-font-r-title.faq::before {
  position: absolute;
  display: block;
  content: "";
  width: 302px;
  height: 1px;
  background: #091550;
  left: 54px;
  bottom: 43px;
}

.p-sub_benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
}

.p-sub_benefits_list_item.rotate {
  transform: rotate(45deg);
}

.p-sub_benefits_list.rotate {
  padding: 2em 3rem;
}

.p-sub_benefits_list {
  border: 4px solid #e9eef4;
  padding: 4em 3rem;
  width: 325px;
  height: 360px;
  text-align: center;
}

.p-sub_benefits_list_text {
  font-size: 24px;
  padding: 1rem 0;
}

.p-sub_benefits_list_sub-text {
  text-align: left;
}

.p-sub_our-appeal_list {
  border: 2px solid #1135a8;
  border-radius: 35px;
  margin-top: 4em;
  display: flex;
  position: relative;
}

.p-sub_our-appeal_list::before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 63px;
  background: #1135a8;
  right: 0;
  top: 43px;
}

.p-sub_our-appeal_list::after {
  position: absolute;
  display: block;
  content: "Highlights";
  font-size: 12px;
  font-weight: bold;
  color: #1135a8;
  right: 0px;
  top: 67px;
  transform: rotate(90deg);
}

.p-sub_our-appeal_list_text.number01::before {
  position: absolute;
  display: block;
  content: "01";
  font-family: "Montserrat", sans-serif !important;
  font-size: 88px;
  font-weight: bold;
  color: #1135a8;
  right: 56px;
  top: 22px;
}

.p-sub_our-appeal_list_text.number02::before {
  position: absolute;
  display: block;
  content: "02";
  font-family: "Montserrat", sans-serif !important;
  font-size: 88px;
  font-weight: bold;
  color: #1135a8;
  right: 56px;
  top: 22px;
}

.p-sub_our-appeal_list_text.number03::before {
  position: absolute;
  display: block;
  content: "03";
  font-family: "Montserrat", sans-serif !important;
  font-size: 88px;
  font-weight: bold;
  color: #1135a8;
  right: 56px;
  top: 22px;
}

.p-sub_our-appeal_list img {
  border-radius: 32px 0 0 32px;
}

.p-sub_our-appeal_list_text {
  padding: 10em 5em 6em 2em;
}

.p-sub_our-appeal_list_sub-title-text {
  font-size: 40px;
  font-weight: bold;
  padding: 0 0 1rem;
}

.sub-title-sub-text {
  font-size: 24px;
}

/* faq */
.p-QnA_bg {
  padding: 4vw 0;
  background: #e4d7ca;
}

.p-sub_QnA_table {
  width: 100%;
}

.p-sub_QnA_table_body_text_inner_q {
  background: #e9eef4;
  box-shadow: 2px 2px 4px rgb(0 0 0 / 11%);
  margin-bottom: 1rem;
  border-radius: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 24px;
}

.p-sub_QnA_table_body_icon_q {
  width: 75px;
  height: 75px;
  text-align: center;
  background: #022766;
  border-radius: 40px;
  font-size: 32px;
  font-weight: bold;
  line-height: 2.3;
}

.p-sub_QnA_table_body_text_q {
  font-size: 20px;
  padding-left: 2vw;
}

.p-sub_QnA_table_body_text_a_bg {
  border: 6px solid #e9eef4;
  box-shadow: inset 2px 2px 4px 0px rgb(0 0 0 / 11%), 2px 2px 4px rgb(0 0 0 / 11%);
  border-radius: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 24px 24px 24px 18px;
}

.p-sub_QnA_table_body_text_a {
  width: 91%;
  font-size: 20px;
  padding-left: 2vw;
}

.p-sub_QnA_table_body_text {
  border: none;
}

.p-sub_QnA_click {
  position: relative;
}

.p-sub_QnA_toggle {
  display: none;
}

.p-sub_QnA_click::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
  content: "＋";
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.p-sub_QnA_click.active::after {
  content: "ー";
  font-size: 34px;
}

.p-sub_faq_table {
  border: none;
}

/* recruitment */
/* recruitment-募集要項 */
.p-sub_recruitment_title {
  font-size: 40px;
  font-weight: bold;
  border-bottom: 2px solid;
  margin-bottom: 1.5em;
}

.p-sub_recruitment_list_item {
  border: 8px solid #e9eef4;
  border-radius: 55px;
  padding: 1em 2em 1em 5.5em;
  margin-bottom: 1.5em;
  position: relative;
}

.p-sub_recruitment_list_item::before {
  content: "・";
  font-size: 50px;
  font-weight: bold;
  color: #fd5535;
  position: absolute;
  top: 4px;
  left: 20px;
}

.p-sub_recruitment_list_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-sub_recruitment-button {
  width: 80px;
  height: 40px;
  border: 2px solid #1135a8;
  border-radius: 20px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.p-sub_recruitment-circle {
  width: 30px;
  height: 30px;
  background-color: #1135a8;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow {
  color: #fff;
  line-height: 1.5;
  font-size: 13px;
  font-weight: bold;
  transition: color 0.3s;
}

.p-sub_recruitment_list_item:hover .p-sub_recruitment-button {
  background-color: #1135a8;
}

.p-sub_recruitment_list_item:hover .p-sub_recruitment-circle {
  background-color: #fff;
  transform: translateX(38px);
  /* 横にスライド */
}

.p-sub_recruitment_list_item:hover .arrow {
  color: #1135a8;
}

.p-sub_recruitment_sub-title {
  font-size: 30px;
}

.c-font-r-title.appeal::before {
  position: absolute;
  display: block;
  content: "";
  width: 165px;
  height: 1px;
  background: #091550;
  left: 130px;
  bottom: 43px;
}

/* recruitment-採用フロー */
.p-sub_appeal_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-sub_appeal_contents_item {
  background: #1135a8;
  border-radius: 40px;
  width: 223px;
  height: 223px;
  padding: 3em 1em 0em 3em;
  font-size: 14px;
  position: relative;
}

.p-sub_appeal_contents_item_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1rem;
}

.p-sub_appeal_contents_item::before {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: 70px;
  border-radius: 0 100% 100% 0% / 50%;
  background: #fff;
  left: -2px;
  bottom: 80px;
}

.p-sub_appeal_contents_item.number01::after {
  position: absolute;
  display: block;
  content: "01";
  font-family: "Montserrat", sans-serif !important;
  font-size: 30px;
  font-weight: bold;
  color: #1135a8;
  left: -18px;
  bottom: 98px;
}

.p-sub_appeal_contents_item.number02::after {
  position: absolute;
  display: block;
  content: "02";
  font-family: "Montserrat", sans-serif !important;
  font-size: 30px;
  font-weight: bold;
  color: #1135a8;
  left: -22px;
  bottom: 98px;
}

.p-sub_appeal_contents_item.number03::after {
  position: absolute;
  display: block;
  content: "03";
  font-family: "Montserrat", sans-serif !important;
  font-size: 30px;
  font-weight: bold;
  color: #1135a8;
  left: -22px;
  bottom: 98px;
}

.p-sub_appeal_contents_item.number04::after {
  position: absolute;
  display: block;
  content: "04";
  font-family: "Montserrat", sans-serif !important;
  font-size: 30px;
  font-weight: bold;
  color: #1135a8;
  left: -24px;
  bottom: 98px;
}

.p-sub_appeal_contents_item_text {
  position: relative;
}

.p-sub_appeal_contents_item_text.arrow::before {
  position: absolute;
  display: block;
  content: "";
  background: #1135a9;
  width: 24px;
  height: 4px;
  transform: rotate(45deg);
  top: 58px;
  right: -40px;
}

.p-sub_appeal_contents_item_text.arrow::after {
  position: absolute;
  display: block;
  content: "";
  background: #1135a9;
  width: 24px;
  height: 4px;
  transform: rotate(-45deg);
  top: 72px;
  right: -40px;
}

/* recruitment-singleページ */
.p-single-recruitment_post_title {
  border-bottom: 2px solid #1135a9;
  font-size: 40px;
  font-weight: normal;
}

.p-single-recruitment_post_title::after {
  border-bottom: none;
}

.p-single-recruitment_post_title {
  border-bottom: 2px solid #1135a9;
}

.p-single-recruitment_border {
  border-bottom: 2px solid #1135a9;
}

/* recruit-footer */
.wp-singular.page-template-default {
  position: relative;
}

.r-footer_bg {
  background: #1135a8;
}

.r-footer-top-links {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 3rem;
  border-bottom: 1px solid #fff;
}

.footer-link-box {
  background: #28c1c1;
  width: 600px;
  height: 135px;
  padding: 0 2rem 0 4rem;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-link-box.entry {
  background: #fd5536;
}

.footer-link-box:hover {
  opacity: 0.6;
}

.c-font-r-title.recruit {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Archivo", sans-serif !important;
}

.c-font-r-title.entry {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Archivo", sans-serif !important;
}

.footer-link-box_desc {
  width: 32%;
}

.footer-top_btn {
  border: 1px solid;
  border-radius: 32px;
  width: 64px;
  height: 64px;
  font-size: 20px;
  text-align: center;
  align-content: center;
}

.c-font-r-title.recruit::after {
  font-size: 16px;
  text-align: center;
}

.c-font-r-title.entry::after {
  font-size: 16px;
  text-align: center;
}

.c-font-r-title.recruit::before {
  position: absolute;
  display: block;
  content: "";
  width: 66px;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 10px;
}

.c-font-r-title.entry::before {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 10px;
}

.r-footer-pc_flex {
  display: flex;
  justify-content: space-between;
  padding: 3em 0;
}

.r-footer-logo-social {
  padding-bottom: 208px;
}

.r-footer-logo_recruit {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  transition: all 0.3s ease;
}

.r-footer-logo_recruit:hover {
  opacity: 0.6;
}

.r-footer-logo_recruit p {
  font-size: 30px;
  font-family: "Archivo", sans-serif !important;
}

.r-footer-logo {
  width: 200px;
  height: auto;
}

.r-footer-logo_recruit::after {
  content: "";
  width: 1px;
  height: 60px;
  background: #fff;
  position: absolute;
  right: 152px;
  top: 0;
}

.r-footer_social-icons {
  display: flex;
  gap: 1em;
}

.r-footer_social-icons_item {
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  padding: 12px;
  transition: all 0.3s ease;
}

.r-footer_social-icons_item:hover {
  opacity: 0.6;
}

.r-footer_social-icons img {
  height: 36px;
  width: auto;
}

.r-footer-company-info_name {
  font-size: 16px;
  margin-bottom: 1rem;
}

.r-footer-company-info_address {
  font-size: 14px;
}

.r-footer-nav-group {
  width: 320px;
  padding: 1.6rem 1rem;
  border-bottom: 1px solid #fff;
}

.r-footer-nav-group.left {
  padding: 2rem 1rem;
}

.r-footer-nav-group:last-child {
  border-bottom: none;
}

.r-footer-nav-group a {
  color: #fff;
  text-decoration: none;
}

.r-footer-nav-group li {
  font-size: 14px;
}

.r-footer-nav-title {
  font-size: 20px;
  transition: all 0.3s ease;
}

.r-footer-nav-group_title .r-footer-nav-title:hover {
  opacity: 0.6;
}

.r-footer-nav-group ul {
  list-style: none;
  padding: 0 0 0 0.5rem;
  margin: 0;
}

.r-footer-nav-group li {
  position: relative;
  padding-left: 1.2em;
  transition: all 0.3s ease;
}

.r-footer-nav-group li:hover {
  opacity: 0.6;
}

.r-footer-nav-group li::before {
  content: "＞";
  position: absolute;
  left: 0;
  top: 4px;
  color: #fff;
  font-size: 10px;
}

.r-footer-nav-columns {
  display: flex;
  gap: 4rem;
}

.r-footer-nav-group_title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  align-items: center;
  margin-bottom: 0.5rem;
}

.r-footer_wrapper {
  position: relative;
  overflow: hidden;
}

.r-footer_bg {
  background: #1135a8;
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.r-footer_content {
  position: relative;
  z-index: 1;
}

.r-footer-bottom {
  background: #000;
}

.r-footer-bottom p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 0.5rem;
}

.recruit-footer {
  /* position: absolute; */
  bottom: -736px;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 1151px) {
  .p-sub_pc_on {
    display: none !important;
  }

  table .p-sub_pc_on {
    display: none;
  }

  .p-sub_sp_on {
    display: block;
    z-index: 1;
  }

  table .p-sub_sp_on {
    display: table-cell;
  }
}

@media screen and (max-width: 950px) {
  /* 共通 */
  .l-inner {
    width: 90%;
  }

  /* recruite */
  /* footer */
  .r-footer-top-links {
    display: grid;
    gap: 2em;
  }

  .r-footer_social-icons {
    justify-content: center;
  }

  .r-footer-nav-columns {
    display: block;
  }

  .r-footer-nav-group {
    width: 100%;
  }

  .r-footer-nav-group:last-child {
    border-bottom: 1px solid #fff;
  }
}
