@charset "UTF-8";
/*
  Theme Name: X-SHIP テーマ@2026
*/

:root {
  /* colors */
  --main-color: #0051B9;
  --text-color: #1C1C1C;
  --text-color-sub: #B6B6B6;
  --link-color: #428BC5;

  /* fonts */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-en: 'Roboto', sans-serif;
}

/* ============================================================================================
カスタマイズ
============================================================================================ */
/* ------------------------------------------------------------
general
------------------------------------------------------------ */
body {
  font-family: var(--font-base);
  background-color: #F7F7F7;
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
}

html body.single-post {
  background-color: #F7F7F7 !important;
}

.original {
  width: 100%;
}

.l-container {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 48px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .l-container {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 959px) {
  .l-container {
    padding-inline: 4vw;
  }
}

a {
  color: var(--text-color);
}

/* リキャプチャアイコンを非表示 */
.grecaptcha-badge {
  display: none !important;
}

/* ------------------------------------------------------------
ヘッダー
------------------------------------------------------------ */
.l-header {
  width: 100%;
  box-shadow: none !important;
  height: 98px;
  background-color: #fff;
  padding-inline: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: fixed;
  top: 0;
  z-index: 10000;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 959px) {
  .l-header {
    height: 60px;
    padding-left: 4vw;
    padding-right: 0;
    justify-content: space-between;
  }
}

.l-header__logo {
  width: 229px;
}
@media screen and (max-width: 959px) {
  .l-header__logo {
    width: 183px;
  }
}

.l-header__nav {
  flex: 1;
  width: calc(100% - 229px - 30px);
  height: 100%;
}
@media screen and (max-width: 959px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav .c-gnav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.l-header__menuBtn {
  display: none;
}
@media screen and (max-width: 959px) {
  .l-header__menuBtn {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  .l-header__menuBtn div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .l-header__menuBtn div:nth-child(1) {
    top: calc(50% - 7.5px);
  }
  .l-header__menuBtn div:nth-child(2) {
    top: 50%;
  }
  .l-header__menuBtn div:nth-child(3) {
    top: calc(50% + 7.5px);
  }
  .l-header__menuBtn.is-active div:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__menuBtn.is-active div:nth-child(2) {
    opacity: 0;
  }
  .l-header__menuBtn.is-active div:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.c-drawer {
  display: none;
}
@media screen and (max-width: 959px) {
  .c-drawer {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #fff;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .c-drawer.is-active {
    opacity: 1;
    visibility: visible;
  }
  .c-drawer__inner {
    position: relative;
    padding: 27px 4vw 100px;
    overflow: auto;
    height: 100%;
  }
  .c-drawer__inner .c-gnav {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .c-drawer__inner .c-gnav > li {

  }
  .c-drawer__inner .c-gnav > li > a {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    display: block;
    padding-right: 20px;
  }
  .c-drawer__inner .c-gnav > li > a span {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-en);
    color: #428BC5;
    display: block;
    line-height: 1.4;
    margin-top: 2px;
  }
  .c-drawer__inner .c-gnav > li > a::after {
    content: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-top: 12px solid #D9D9D9;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    transition: border-top-color 0.3s ease, transform 0.3s ease;
    transform-origin: top center;
  }
  .c-drawer__inner .c-gnav > li.menu-item-has-children > a::after {
    content: "";
  }
  .c-drawer__inner .c-gnav > li.is-active > a::after {
    border-top-color: var(--main-color);
    transform: rotate(180deg) translateY(-50%);
  }
  .c-drawer__inner .c-gnav > li > .sub-menu {
    display: flex;
    flex-direction: column;
    background-color: var(--main-color);
    padding: 24px;
    gap: 22px;
    margin-top: 15px;
    display: none;
  }
  .c-drawer__inner .c-gnav > li.is-active > .sub-menu {
    display: flex;
  }
  .c-drawer__inner .c-gnav > li > .sub-menu > li > a {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
    padding-left: 16px;
    display: block;
  }
  .c-drawer__inner .c-gnav > li > .sub-menu > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #FFF;
  }
  .c-drawer__inner .c-gnav > li > .sub-menu > li > a:hover {
    text-decoration: underline;
  }

  .c-drawer__inner .c-subMenu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .c-drawer__inner .c-subMenu > li > a {
    font-size: 15px;
    font-weight: 400;
    color: #5A5858;
    display: block;
  }
  .c-drawer__inner .c-subMenu > li > a:hover {
    text-decoration: underline;
  }
}

.l-header .c-gnav > li {
  height: 100%;
}

.l-header .c-gnav > li > a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.l-header .c-gnav > li > a {
  padding-inline: 30px;
}
.l-header .c-gnav > li > a > span {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-en);
  color: #428BC5;
  display: block;
  line-height: 1.4;
  margin-top: 3px;
}
.l-header .c-gnav > li.menu-item-has-children > a {
  position: relative;
  padding-right: 18px;
}
.l-header .c-gnav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.l-header .c-gnav > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 36.5%;
  right: 0;
  border-top: 12px solid var(--text-color-sub);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transition: border-top-color 0.3s ease, transform 0.3s ease;
}
.l-header .c-gnav > li.menu-item-has-children > a:hover::after,
.l-header .c-gnav > li.menu-item-has-children.is-active > a::after {
  border-top-color: var(--main-color);
  transform: rotate(180deg);
}
.l-header .c-gnav > li.menu-item-has-children.is-active > a::before,
.l-header .c-gnav > li:hover > a::before {
  background-color: var(--main-color);
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background-color: var(--main-color);
  padding: 28px 36px 28px 290px;
  width: 100%;
  max-width: 700px;
  min-width: 700px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header .c-gnav > li.menu-item-has-children.is-active > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu .sub-menu-title {
  position: absolute;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  flex-direction: column-reverse;
  width: 230px;
  height: 100%;
  justify-content: center;
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu .sub-menu-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 50px);
  background-color: rgba(255, 255, 255, 0.4);
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu .sub-menu-title span {
  display: block;
  opacity: 0.4;
  font-size: 12px;
  line-height: 1.5;
  font-family: var(--font-en);
  font-weight: 700;
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu > li > a {
  position: relative;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  padding-left: 20px;
  padding-block: 0;
  min-width: 100px;
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu > li > a:hover {
  text-decoration: underline;
}
.l-header .c-gnav > li.menu-item-has-children > .sub-menu > li > a::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

body > .l-container {
  padding-top: 60px;
}

@media screen and (min-width: 960px) {
  .home .l-header {
    background-color: transparent;
  }
  .scrolled .l-header {
    background-color: #FFF !important;
  }
  body > .l-container {
    padding-top: 96px;
  }
  .home .l-container {
    padding-top: 0;
  }
}

@media screen and (max-width: 959px) {
  .l-header__inner {
    flex-direction: row-reverse;
  }

  .l-header__customBtn {
    display: none;
  }

  .l-header .l-header__menuBtn {
    background-color: var(--main-color);
  }

  .l-header [class*=" icon-"]:before, [class^=icon-]:before {
    color: #FFF;
  }

  [data-spmenu="opened"] .l-header__menuBtn {
    background-color: #fff;
    border: 1px solid var(--main-color);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='20' width='24' height='1' transform='rotate(-45 3 20)' fill='%230051B9'/%3E%3Crect x='4' y='3' width='24' height='1' transform='rotate(45 4 3)' fill='%230051B9'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-position: center center;
    background-repeat: no-repeat;
  }

  [data-spmenu="opened"] .icon-menu-thin:before {
    content: none;
  }

  .p-spMenu__closeBtn {
    display: none;
  }


  .p-spMenu__overlay {
    opacity: 0 !important;
  }

  .p-spMenu__inner {
    top: 60px;
    width: 100%;
    box-shadow: none !important;
    padding-top: 26px;
  }

  .-left .p-spMenu__inner {
    transform: translateX(-100vw);
  }
  [data-spmenu=opened] .p-spMenu__inner {
    transform: translateX(0);
  }

  .p-spMenu__inner .c-widget__title {
    display: none;
  }

  .c-spnav a {
    border: none !important;
    padding: 0 !important;
  }

  .c-gnav .sub-menu a:before, .c-listMenu a:before {
    display: none;
  }

  .p-spMenu__nav {
    margin-top: 0;
  }

  .c-listMenu {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .c-listMenu > li > a {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
  }

  .c-listMenu > li > a span {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    color: #428BC5;
    display: block;
    margin-top: 4px;
  }

  .c-listMenu > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 12px;
    border-top: 12px solid var(--text-color-sub);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    transition: border-top-color 0.3s ease, transform 0.3s ease;
  }

  .c-listMenu > li > .sub-menu {
    background-color: var(--main-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 16px;
    display: none;
  }
  .c-listMenu > li > .sub-menu.is-active {
    display: flex;
  }

  .c-listMenu > li > .sub-menu > li > a {
    position: relative;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    padding-left: 16px !important;
    display: block;
  }
  .c-listMenu > li > .sub-menu > li > a::after {
    content: "" !important;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #FFF;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
  }
  .c-listMenu > li > a.is-active::after {
    border-top-color: var(--main-color) !important;
    transform: translateY(-50%) rotate(180deg) !important;
  }
}

/* ------------------------------------------------------------
フッター
------------------------------------------------------------ */
.l-footer {
  border-top: 1px solid var(--main-color);
  position: relative;
  z-index: 10;
}

.l-footer .l-container {
  padding-top: 0;
}

.l-footer__inner {
  padding-block: 60px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 45px 138px;
}
@media screen and (max-width: 959px) {
  .l-footer__inner {
    padding-block: 40px 18px;
    gap: 65px;
  }
}

.l-footer__sub {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.l-footer__sub .c-subMenu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-footer__sub a {
  font-size: 15px;
  font-family: var(--font-en);
  color: #5A5858;
  font-weight: 400;
  text-decoration: none;
}
.l-footer__sub a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 959px) {
  .l-footer__sub {
    display: none;
  }
}

.l-footer__copy {
  width: 100%;
  text-align: right;
  font-size: 15px;
  font-family: var(--font-en);
  color: #5A5858;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .l-footer__copy {
    text-align: center;
  }
}

.p-footer-info {
  width: 323px;
}
@media screen and (max-width: 959px) {
  .p-footer-info {
    width: 100%;
    max-width: 323px;
    margin-inline: auto;
  }
}

.p-footer-info__title {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 700;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-footer-info__title {
    margin-top: 21px;
    padding-left: 13px;
  }
}

.p-footer-info__address {
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-footer-info__address {
    font-weight: 500;
    padding-left: 13px;
  }
}

.l-footer__nav {
  flex: 1;
  width: 100%;
  justify-content: flex-start;
}
.l-footer__nav .c-gnav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 58px;
}
.l-footer__nav .menu-item-has-children {
  width: 100%;
}
.l-footer__nav a {
  border: none !important;
  padding: 0;
  font-size: 15px;
}
.l-footer__nav a:hover {
  text-decoration: underline;
}
.l-footer__nav .c-gnav > li > a {
  font-weight: 700;
}
.l-footer__nav .c-gnav > li > a span {
  display: none;
}
.l-footer__nav .c-gnav > li > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .l-footer__nav {
    display: none;
  }
}

/* ------------------------------------------------------------
パンくずリスト
------------------------------------------------------------ */
.c-breadcrumb {
  padding-block: 20px;
}
@media screen and (max-width: 959px) {
  .c-breadcrumb {
    display: none;
  }
}

.c-breadcrumb #breadcrumbs a,
.c-breadcrumb #breadcrumbs > span {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}

.c-breadcrumb #breadcrumbs a:hover {
  text-decoration: underline;
}

.c-breadcrumb #breadcrumbs > span > span:first-child a {
  font-family: var(--font-en);
  color: var(--main-color);
  font-size: 14px;
  font-weight: 500;
}

.c-breadcrumb #breadcrumbs > span > span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--text-color-sub);
  border-right: 1px solid var(--text-color-sub);
  transform: rotate(45deg) translateY(-3px);
  margin-inline: 8px;
}

/* ============================================================================================
Component
============================================================================================ */
/* ------------------------------------------------------------
.c-container
------------------------------------------------------------ */
.c-container {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
}

.c-container--1000 {
  max-width: 1000px;
}

/* ------------------------------------------------------------
.c-full
------------------------------------------------------------ */
.c-full {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

/* ------------------------------------------------------------
.c-heading
------------------------------------------------------------ */
.c-heading {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 40px;
  }
}

.c-heading::before {
  content: attr(data-en);
  font-family: var(--font-en);
  display: block;
  color: var(--main-color);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .c-heading::before {
    font-size: 16px;
  }
}

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

.c-heading--sub {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .c-heading--sub {
    font-size: 24px;
  }
}

/* ------------------------------------------------------------
.c-heading-borderL
------------------------------------------------------------ */
.c-heading-borderL {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .c-heading-borderL {
    font-size: 24px;
  }
}

.c-heading-borderL::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180.49deg, #1B9AFF 9.34%, #001892 97.84%);
}

/* ------------------------------------------------------------
.c-button-more
------------------------------------------------------------ */
.c-button-more {
  position: relative;
  display: inline-block;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  padding-block: 18px;
  padding-inline: 115px 72px;
  transition: all 0.3s ease;
}

.c-button-more::before {
  content: attr(data-en);
  position: absolute;
  top: calc(50% + 3px);
  left: 32px;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px dashed var(--main-color);
  padding-bottom: 3px;
  line-height: 1;
  transition: border-color 0.3s ease;
}

.c-button-more::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  width: 28px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%230051B9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.c-button-more:hover {
  color: #fff;
  background-color: var(--main-color);
}

.c-button-more:hover::before {
  border-color: #fff;
}

.c-button-more:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%23FFFFFF'/%3E%3C/svg%3E");
}

.c-button-more.c-button-more--white-border:hover::before {
  color: var(--main-color) !important;
}

/* ------------------------------------------------------------
.c-news-item
------------------------------------------------------------ */
.c-news-item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  width: 100%;
}

.c-news-item__link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.c-news-item__link:hover {
  opacity: 0.7;
}

.c-news-item__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
}

.c-news-item__date {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
}

.c-news-item__category {
  display: inline-block;
  min-width: 90px;
  text-align: center;
  padding: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-news-item__category:hover {
  color: #fff;
  background-color: var(--main-color);
}

.c-news-item__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-news-item__title:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
.c-page-header
------------------------------------------------------------ */
.c-page-header {
  position: relative;
  width: 100%;
  padding-block: 48px 75px;
}
@media screen and (max-width: 959px) {
  .c-page-header {
    padding-block: 34px;
  }
}

.c-page-header__bg {
  position: absolute;
  top: -62.4px;
  right: -48px;
  max-width: 47.9vw;
  width: 100%;
  aspect-ratio: 690 / 634;
}
@media screen and (max-width: 767px) {
  .c-page-header__bg {
    top: -60px;
    right: auto;
    left: 32vw;
    min-width: 118vw;
    max-width: none;
  }
}

.c-page-header__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-page-header.design-is-simple {
  padding-bottom: 18px;
}
@media screen and (max-width: 959px) {
  .c-page-header.design-is-simple {
    padding-bottom: 66px;
  }
}

.c-page-header.design-is-simple .c-page-header__bg {
  display: none;
}

/* ------------------------------------------------------------
.c-page-content
------------------------------------------------------------ */
.c-page-content {
  position: relative;
  z-index: 30;
}

/* ------------------------------------------------------------
.c-pagination-original
------------------------------------------------------------ */
.c-pagination-original {
  margin-top: 40px;
}

.c-pagination-original ul {
  display: flex;
  justify-content: center;
  background-color: transparent !important;
  box-shadow: none;
  flex-wrap: wrap;
}

.c-pagination-original ul .page-numbers {
  display: block;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  background-color: transparent;
  box-shadow: none;
  color: #B6B6B6;
  transition: all 0.3s ease;
  margin: 2px;
}

.c-pagination-original ul .page-numbers.current,
.c-pagination-original ul .page-numbers:hover {
  background-color: var(--main-color);
  color: #fff;
}

.c-pagination-original ul .page-numbers.prev {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='4' viewBox='0 0 15 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.36414H13L9.81132 0.364136' stroke='%230051B9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotateY(180deg);
}
.c-pagination-original ul .page-numbers.prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='4' viewBox='0 0 15 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.36414H13L9.81132 0.364136' stroke='%23FFFFFF'/%3E%3C/svg%3E");
}

.c-pagination-original ul .page-numbers.next {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='4' viewBox='0 0 15 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.36414H13L9.81132 0.364136' stroke='%230051B9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.c-pagination-original ul .page-numbers.next:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='4' viewBox='0 0 15 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.36414H13L9.81132 0.364136' stroke='%23FFFFFF'/%3E%3C/svg%3E");
}
/* ============================================================================================
Page
============================================================================================ */
/* ------------------------------------------------------------
.p-policy
------------------------------------------------------------ */
.p-policy {
  padding-block: 0 80px;
}

.p-policy p {
  font-size: 15px;
  line-height: 1.7;
}

.p-policy p + p {
  margin-top: 4px;
}

.p-policy p.is-ml-15 {
  margin-left: -15px;
}

.p-policy p a {
  color: var(--link-color);
  text-decoration: underline;
}
.p-policy p a:hover {
  text-decoration: none;
}

.p-policy__lead {
  max-width: 840px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-policy__lead {
    margin-bottom: 34px;
  }
}

.p-policy__lead p + p {
  margin-top: 12px;
}

.p-policy__cards {
  display: grid;
  gap: 40px;
}

.p-policy-card {
  background-color: #fff;
  border: none;
  padding: 60px 20px;
}
@media screen and (max-width: 767px) {
  .p-policy-card {
    padding: 60px 28px;
  }
}

.p-policy-card__inner {
  max-width: 830px;
  width: 100%;
  margin-inline: auto;
}

.p-policy-card__title {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-policy-card__title {
    font-size: 32px;
    margin-top: -20px;
  }
}

.p-policy-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  /* transform: translateX(-50%); */
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--main-color);
}

.p-policy-list > li {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-policy-list > li {
    padding: 16px 0;
  }
}

.p-policy-list > li:first-child {
  padding-top: 0;
}

.p-policy-list > li:last-child {
  padding-bottom: 0;
}

.p-policy-list__title {
  font-size: 24px;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #D9D9D9;
}

.p-policy-ol {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.p-policy-ol li {
  position: relative;
  counter-increment: list;
  padding-left: 21px;
}
.p-policy-ol li::before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.p-policy-ol--parentheses li {
  counter-increment: list2;
  padding-left: 32px;
}
.p-policy-ol--parentheses li::before {
  content: "(" counter(list2) ")";
}

.p-policy-ol--space12 {
  gap: 12px;
}

.p-policy-ol--space20 {
  gap: 20px;
}

.p-policy-ol--mt12 {
  margin-top: 12px;
}

.p-policy-ul {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.p-policy-ul li {
  position: relative;
  padding-left: 21px;
}
.p-policy-ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-policy-ul--mt4 {
  margin-top: 4px;
}

.p-policy-ul--ml-21 {
  margin-left: -21px;
}

.p-policy-card__meta {
  margin-top: 30px;
  text-align: right;
  color: var(--text-color-sub);
}

/* ============================================================================================
TOPページ
============================================================================================ */
/* ------------------------------------------------------------
.p-home-about
------------------------------------------------------------ */
.p-home-about {
  padding-block: 100px;
}

.p-home-about__inner {
  display: flex;
  gap: 34px;
  width: calc(100% + 23px);
}

.p-home-about__content {
  max-width: 479px;
  width: 100%;
}

.p-home-about__content .c-heading--sub {
  margin-block: 24px 20px;
}

.p-home-about__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.p-home-about__image {
  max-width: 610px;
  width: 100%;
}

.p-home-about__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-home-about {
    padding-block: 60px;
  }

  .p-home-about__inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .p-home-about__content {
    display: contents;
  }

  .p-home-about__content .c-heading {
    width: 100%;
    text-align: left;
  }

  .p-home-about__content .c-heading--sub {
    width: 100%;
    text-align: left;
    margin-bottom: 24px;
  }

  .p-home-about__text {
    margin: 0;
  }

  .p-home-about__image {
    order: 2;
    margin-block: 24px 40px;
  }

  .p-home-about__content .c-button-more {
    order: 3;
  }
}

/* ------------------------------------------------------------
.p-home-service
------------------------------------------------------------ */
.p-home-service {
  padding-block: 100px 200px;
}

.p-home-service .c-heading {
  margin-bottom: 56px;
}

.p-home-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p-home-service__card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}

.p-home-service__card-content {
  padding: 32px 32px 24px;
}

.p-home-service__card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1;
}

.p-home-service__card-label::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #F5A623;
}

.p-home-service__card-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 12px;
}

.p-home-service__card-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 8px;
}

.p-home-service__card-text {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 16px;
}

.p-home-service__card-link {
  position: relative;
  display: block;
  aspect-ratio: 520 / 275;
  overflow: hidden;
}

.p-home-service__card-link:hover img {
  transform: scale(1.05);
}

.p-home-service__card-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-home-service__card-button {
  position: absolute;
  right: 60px;
  bottom: 18px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  border-bottom: 1px dashed #FFF;
  padding-bottom: 3px;
  line-height: 1;
  transition: border-color 0.3s ease;
}

.p-home-service__card-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -38px;
  transform: translateY(-50%);
  width: 28px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%23FFFFFF'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-home-service {
    padding-block: 60px 80px;
  }

  .p-home-service .c-heading {
    margin-bottom: 32px;
  }

  .p-home-service__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-home-service__card-content {
    padding: 24px 20px 20px;
  }

  .p-home-service__card-title {
    font-size: 24px;
  }

  .p-home-service__card-subtitle {
    font-size: 16px;
  }

  .p-home-service__card-text {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ------------------------------------------------------------
.p-home-recruit
------------------------------------------------------------ */
.p-home-recruit {
  position: relative;
  padding-block: 100px 120px;
}
.p-home-recruit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
}
@media screen and (max-width: 959px) {
  .p-home-recruit {
    padding-block: 80px;
  }
  .p-home-recruit::after {
    width: 100%;
  }
}

.p-home-recruit__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .p-home-recruit__inner {
    padding-inline: 4vw;
  }
}

.p-home-recruit__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.p-home-recruit__label {
  display: block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: #0051B9;
  line-height: 1;
  margin-bottom: 16px;
}

.p-home-recruit__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
}

.p-home-recruit__text {
  margin-bottom: 64px;
}

.p-home-recruit__text p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-home-recruit__text p .tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .p-home-recruit__text p {
    font-size: calc(15 / 375 * 100vw);
  }
  .p-home-recruit__text p .tab {
    display: block;
  }
}

.p-home-recruit__image {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 600px;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-home-recruit__image {
    width: calc(227 / 375 * 100vw);
    position: absolute;
    bottom: 72px;
    right: calc(-22 / 375 * 100vw);
  }
}

.p-home-recruit__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 959px) {
  .p-home-recruit__button {
    text-align: center;
  }
}

/* c-button-more--white-border */
.c-button-more--white-border {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.c-button-more--white-border::before {
  color: #fff;
  border-color: #fff;
}

.c-button-more--white-border::after {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%23FFFFFF'/%3E%3C/svg%3E");
}

.c-button-more--white-border:hover {
  color: var(--main-color);
  background-color: #fff;
}

.c-button-more--white-border:hover::before {
  border-color: var(--main-color);
}

.c-button-more--white-border:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%230051B9'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------
.p-home-interview
------------------------------------------------------------ */
.p-home-interview {
  padding-block: 100px 150px;
}
@media screen and (max-width: 767px) {
  .p-home-interview {
    padding-block: 80px 150px;
  }
}

.p-home-interview .c-heading {
  margin-bottom: 48px;
}

.p-home-interview__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.p-home-interview__card {
  display: block;
}

.p-home-interview__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-home-interview__card-link:hover .p-home-interview__card-image img {
  transform: scale(1.05);
}

.p-home-interview__card-image {
  aspect-ratio: 350 / 206;
  overflow: hidden;
  background-color: #D9D9D9;
}

.p-home-interview__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-home-interview__card-content {
  padding-top: 16px;
}

.p-home-interview__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.p-home-interview__card-meta {
  font-size: 14px;
  color: var(--text-color-sub);
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .p-home-interview {
    padding-block: 60px;
  }

  .p-home-interview .c-heading {
    margin-bottom: 32px;
  }

  .p-home-interview__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-home-interview__card-title {
    font-size: 15px;
  }
}

/* ------------------------------------------------------------
.p-home-news
------------------------------------------------------------ */
.p-home-news {
  position: relative;
  padding-block: 78px;
}
@media screen and (max-width: 767px) {
  .p-home-news {
    padding-block: 40px;
  }
}

.p-home-news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 134px;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
}
@media screen and (max-width: 767px) {
  .p-home-news::after {
    height: 250px;
  }
}

.p-home-news__box {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-left: 50px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .p-home-news__box {
    margin-left: 4vw;
    padding: 24px 24px 55px;
  }
}

.p-home-news__inner {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-home-news__inner {
    flex-direction: column;
    gap: 0;
  }
}

.p-home-news__sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 385px;
}
@media screen and (max-width: 767px) {
  .p-home-news__sidebar {
    display: contents;
  }
}

.p-home-news__sidebar .c-heading {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-home-news__sidebar .c-heading {
    margin-bottom: 24px;
    order: 1;
  }
}

.p-home-news .p-page-news-categories {
  max-width: 200px;
  width: 100%;
}
.p-home-news .p-page-news-categories__list {
  flex-direction: column;
}
.p-home-news .p-page-news-categories__item {
  width: 100%;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-home-news .p-page-news-categories {
    order: 2;
  }
}

.p-home-news__button {
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .p-home-news__button {
    order: 4;
    margin-top: 24px;
  }
}

.p-home-news__list {
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home-news__list {
    margin-top: 24px;
    order: 3;
  }
}

.p-home-news__list > * {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
}
@media screen and (max-width: 767px) {
}

/* ------------------------------------------------------------
.p-page-service
------------------------------------------------------------ */
.p-page-service {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-service {
    padding-top: 28px;
  }
}

/* p-page-service-card */
.p-page-service-card {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  margin-block: 45px 56px;
}
@media screen and (max-width: 767px) {
  .p-page-service-card {
    padding: 40px 15px;
    margin-block: 28px 40px;
  }
}

.p-page-service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 2px;
  height: 50px;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
}

.p-page-service-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-page-service-card__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.p-page-service-card__image {
  max-width: 785px;
  width: 100%;
  margin-inline: auto;
}
.p-page-service-card__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-page-service-card__image {
    max-width: 302px;
  }
}

.p-page-service-card__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--main-color);
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-page-service-card__text {
    font-size: 20px;
    margin-top: 10px;
  }
}

/* p-page-service-content */
.p-page-service-content {
  border: 1px solid var(--main-color);
  padding: 27px 27px 32px;
}
@media screen and (max-width: 767px) {
  .p-page-service-content {
    padding: 30px 27px;
  }
}

.p-page-service-content__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 23px;
}

.p-page-service-content__text.is-gray {
  color: var(--text-color-sub);
  margin-bottom: 0;
}

/* p-page-service-message */
.p-page-service-message {
  position: relative;
  margin-top: 82px;
  padding-block: 100px;
  color: #fff;
  overflow: hidden;
  background-image: url(images/service/bg_message_pc.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-page-service-message {
    margin-top: 40px;
    padding-block: 60px;
    background-image: url(images/service/bg_message_sp.webp);
  }
}

.p-page-service-message__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-page-service-message__header {
  position: relative;
  padding-block: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__header {
    padding-block: 15px;
    margin-bottom: 12px;
  }
}

.p-page-service-message__header::before,
.p-page-service-message__header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

.p-page-service-message__header::before {
  top: 0;
}

.p-page-service-message__header::after {
  bottom: 0;
}

.p-page-service-message__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__label {
    font-size: 10px;
    margin-bottom: 3px;
  }
}

.p-page-service-message__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__title {
    font-weight: 800;
    font-size: 20px;
  }
}

.p-page-service-message__text {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__text {
    margin-bottom: 15px;
    text-align: left;
    font-size: 15px;
  }
}

.p-page-service-message__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.p-page-service-message__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 24px;
  border: 2px solid #fff;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__button {
    font-size: 15px;
    padding: 18px 22px;
    width: 100%;
  }
}

.p-page-service-message__button::after {
  content: "";
  display: block;
  width: 28px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%23FFFFFF'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 22px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-page-service-message__button::after {
    width: 21px;
    height: 5px;
  }
}

.p-page-service-message__button:hover {
  background-color: #fff;
  color: var(--main-color);
}
.p-page-service-message__button:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%230051B9'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------
.p-page-company
------------------------------------------------------------ */
.p-page-company {
  padding-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .p-page-company {
    padding-bottom: 49px;
  }
}

.p-page-company__inner {
  display: grid;
  align-items: start;
  gap: 14px;
  margin-top: 60px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-page-company__inner {
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.p-page-company__media {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-page-company__media {
    order: -1;
  }
}

.p-page-company__image {
  width: 100%;
  max-width: 416px;
  margin-top: -75px;
  margin-right: -50px;
}
@media screen and (max-width: 767px) {
  .p-page-company__image {
    max-width: 290px;
    margin-top: 0;
    margin-right: 0;
  }
}

.p-page-company__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-page-company__list {
  margin: 0;
  border-top: 1px solid #DADADA;
}

.p-page-company__row {
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #DADADA;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .p-page-company__row {
    grid-template-columns: 100px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-page-company__row {
    grid-template-columns: 120px 1fr;
  }
}

.p-page-company__row dt {
  font-weight: 700;
  color: var(--main-color);
  font-size: 15px;
}

.p-page-company__row dd {
  margin: 0;
  font-size: 15px;
}

/* ------------------------------------------------------------
.p-page-recruit
------------------------------------------------------------ */
.p-page-recruit {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-recruit {
    padding-top: 50px;
  }
}

.p-page-recruit__section + .p-page-recruit__section {
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__section + .p-page-recruit__section {
    margin-top: 120px;
  }
}

.p-page-recruit__inner {
  width: 100%;
  max-width: 830px;
  margin-inline: auto;
}

.p-page-recruit__title {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__title {
    font-size: 32px;
  }
}

.p-page-recruit__title.is-gradient {
  background: linear-gradient(250.52deg, #1B9AFF 9.99%, #001892 101.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-page-recruit__title.is-gradient .is-small {
  font-size: 32px;
  color: var(--text-color) !important;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-fill-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__title.is-gradient .is-small {
    font-size: 26px;
  }
}

.p-page-recruit__text {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 780;
  margin-bottom: 40px;
}

.p-page-recruit__text.is-gradient {
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-page-recruit__price {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__price {
    max-width: 335px;
    width: 100%;
    margin-inline: auto;
    margin-top: 38px;
  }
}

.p-page-recruit__bg {
  position: absolute;
  width: 100%;
  max-width: 579px;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-page-recruit__bg {
    max-width: none;
    min-width: 581px;
    top: 150px;
  }
}

.p-page-recruit__label {
  position: absolute;
  top: -128px;
  right: -250px;
  font-size: 192.34px;
  font-family: var(--font-en);
  line-height: 1.2;
  font-weight: 900;
  background: linear-gradient(250.52deg, #1B9AFF 9.99%, #001892 101.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .p-page-recruit__label {
    top: -66px;
    right: -37px;
    font-size: 100px;
  }
}

/* p-page-recruit-schedule */
.p-page-recruit-schedule {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-schedule {
    margin-top: 32px;
  }
}

.p-page-recruit-schedule__card {
  width: calc(100% - 80px);
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-schedule__card {
    width: calc(100% - 33px);
    padding: 40px 28px;
  }
}

.p-page-recruit-schedule__label {
  position: absolute;
  top: 0;
  right: -80px;
  width: 58.48px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-schedule__label {
    width: 27.58px;
    right: -33px;
  }
}

.p-page-recruit-schedule__label svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-page-recruit-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.p-page-recruit-schedule__item {
  display: grid;
  grid-template-columns: 82px 1fr;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-schedule__item {
    grid-template-columns: 1fr;
  }
}

.p-page-recruit-schedule__time {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.7;
  margin: 0;
}

.p-page-recruit-schedule__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
}

.p-page-recruit-schedule__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5A5858;
}

/* p-page-recruit-company */
.p-page-recruit-company {
  position: relative;
  padding-top: 298px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-company {
    padding-top: 76px;
  }
}

.p-page-recruit-company__bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 47.9vw;
  width: 100%;
  aspect-ratio: 690 / 634;
}
.p-page-recruit-company__bg svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-company__bg {
    display: none;
  }
}

.p-page-recruit-company__logos {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-company__logos {
    flex-direction: column;
    align-items: center;
  }
}

.p-page-recruit-company__logo {
  display: block;
  max-width: 290px;
  width: 100%;
  transition: opacity 0.3s ease;
}
.p-page-recruit-company__logo:hover {
  opacity: 0.6;
}

/* p-page-recruit-message */
.p-page-recruit-message {
  position: relative;
  margin-top: 116px;
}

.p-page-recruit-message__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__inner {
    flex-direction: column;
    align-items: flex-end;
  }
}

.p-page-recruit-message__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__content {
    width: 100%;
  }
}

.p-page-recruit-message__content .p-page-recruit__title {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__content .p-page-recruit__title {
    white-space: normal;
  }
}

.p-page-recruit-message__image {
  max-width: 600px;
  width: 100%;
  margin-right: -185px;
}
@media screen and (max-width: 1319px) {
  .p-page-recruit-message__image {
    margin-right: -100px;
  }
}
@media screen and (max-width: 1159px) {
  .p-page-recruit-message__image {
    margin-right: -50px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-recruit-message__image {
    margin-right: 0;
    max-width: 323px;
    transform: translate(39px, 0);
  }
}

/* ------------------------------------------------------------
.p-page-mission
------------------------------------------------------------ */
.p-page-mission {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-page-mission {
    padding-top: 12px;
    padding-bottom: 80px;
  }
}

.p-page-mission-hero__visual {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__visual {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.p-page-mission-hero__visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1000 / 409;
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__visual img {
    aspect-ratio: 375 / 247;
  }
}

.p-page-mission-hero__text {
  position: absolute;
  left: 85px;
  top: 76px;
  color: #fff;
  max-width: 540px;
  width: 100%;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__text {
    max-width: 230px;
    top: 24px;
    left: 17px;
  }
}

.p-page-mission-hero__catch {
  width: 100%;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__catch {
    font-size: 22px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.p-page-mission-hero__catch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.p-page-mission-hero__name {
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__name {
    font-size: 12px;
  }
}

.p-page-mission-hero__name span {
  display: inline-block;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__name span {
    font-size: 18px;
  }
}

.p-page-mission-hero__box {
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  padding: 45px 52px 76px;
  margin: -32px auto 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-page-mission-hero__box {
    padding: 42px 40px 78px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 374px) {
  .p-page-mission-hero__box {
    margin-top: -15px;
  }
}

.p-page-mission-hero__box strong {
  font-size: 18px;
}

.p-page-mission-hero__box::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.p-page-mission-balance {
  margin-top: 56px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-mission-balance {
    text-align: left;
    margin-top: 47px;
  }
}

.p-page-mission-balance__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

.p-page-mission-balance__figure {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 24px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-page-mission-balance__figure {
    margin-top: 18px;
  }
}

.p-page-mission-balance__figure img {
  max-width: 720px;
  width: 100%;
  display: block;
  margin-inline: auto;
}

.p-page-mission-happiness {
  margin-top: 148px;
}
@media screen and (max-width: 767px) {
  .p-page-mission-happiness {
    margin-top: 112px;
  }
}

.p-page-mission-happiness .c-heading-borderL {
  min-height: 80px;
  height: 80px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-page-mission-happiness .c-heading-borderL {
    min-height: auto;
    height: auto;
  }
}

.p-page-mission-happiness__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media screen and (max-width: 959px) {
  .p-page-mission-happiness__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.p-page-mission-happiness__inner + .p-page-mission-happiness__inner {
  margin-top: 148px;
}
@media screen and (max-width: 767px) {
  .p-page-mission-happiness__inner + .p-page-mission-happiness__inner {
    margin-top: 170px;
  }
}

.p-page-mission-happiness__content {
  min-width: 512px;
}
@media screen and (max-width: 767px) {
  .p-page-mission-happiness__content {
    min-width: 100%;
  }
}

.p-page-mission-happiness__text {
  margin-top: 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.p-page-mission-happiness__text p + p {
  margin-top: 24px;
}

.p-page-mission-happiness__image {
  min-width: 557px;
}
@media screen and (max-width: 1265px) {
  .p-page-mission-happiness__image {
    min-width: calc(100% - 554px);
  }
}
@media screen and (max-width: 959px) {
  .p-page-mission-happiness__image {
    min-width: 100%;
  }
}

.p-page-mission-happiness__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.p-page-mission-business {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-page-mission-business {
    margin-top: 70px;
  }
}

.p-page-mission-business__text {
  margin-top: 20px;
  max-width: 760px;
}

.p-page-mission-business__text p + p {
  margin-top: 24px;
}

.p-page-mission-business__quote {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-mission-business__quote {
    font-size: 24px;
    line-height: 1.5;
  }
}

/* ------------------------------------------------------------
.p-page-event
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .p-page-event {
    padding-top: 32px;
  }
}

.p-page-event-group {
  margin-top: 38px;
  background-color: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-page-event-group {
    padding: 58px 25px;
  }
}

.p-page-event-intro__lead {
  max-width: 512px;
  width: 100%;
  margin-top: 24px;
  line-height: 1.7;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-page-event-intro__lead {
    max-width: 400px;
  }
}

.p-page-event-intro__figure1 {
  max-width: 745px;
  width: 100%;
  margin-inline: auto;
}

.p-page-event-intro__figure2 {
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
}

.p-page-event-intro__note {
  display: inline-block;
  margin-top: 16px;
  color: var(--main-color);
  margin-block: 32px 52px;
  text-decoration: underline;
  font-size: 12px;
  line-height: 2;
  font-weight: 700;
}
.p-page-event-intro__note:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-page-event-intro__note {
    margin-block: 35px 25px;
  }
}

.p-page-event__heading {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color);
  padding-block: 20px;
}
@media screen and (max-width: 767px) {
  .p-page-event__heading {
    font-size: 24px;
  }
}

.p-page-event__heading span {
  width: 100%;
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--main-color);
  margin-bottom: 4px;
}

.p-page-event__heading::before,
.p-page-event__heading::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
}

.p-page-event__heading::before {
  top: 0;
}

.p-page-event__heading::after {
  bottom: 0;
}

.p-page-event__heading.is-white {
  color: #fff;
}

.p-page-event__heading.is-white span {
  color: #fff;
}

.p-page-event__heading.is-white::after,
.p-page-event__heading.is-white::before {
  background: #fff;
}

.p-page-event-movie {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-event-movie {
    margin-top: 150px;
  }
}

.p-page-event-movie__list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 960px;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-page-event-movie__list {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
}

.p-page-event-movie__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 460 / 259;
}

.p-page-event-movie__item iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.p-page-event-movie__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-page-event-movie__play {
    width: 48px;
    height: 48px;
  }
}

.p-page-event-movie__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.p-page-event-detail {
  position: relative;
  margin-top: 100px;
  padding-block: 100px;
  color: #fff;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
}
@media screen and (max-width: 767px) {
  .p-page-event-detail {
    margin-top: 64px;
    padding-block: 60px;
  }
}

.p-page-event-detail .c-full__bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 47.9vw;
  width: 100%;
  aspect-ratio: 690 / 634;
}
.p-page-event-detail .c-full__bg svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail .c-full__bg {
    max-width: 80vw;
  }
}

.p-page-event-detail .c-container {
  position: relative;
  z-index: 1;
}

.p-page-event-detail__buttons {
  margin-top: 55px;
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__buttons {
    margin-top: 17px;
    margin-bottom: 26px;
    gap: 14px;
    max-width: 246px;
    width: 100%;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
  }
}

.p-page-event-detail__button {
  position: relative;
  width: calc(100% / 3 - 20px * 2 / 3);
  padding: 21px 24px;
  border: 1px solid #ffffff;
  border: 1px solid #ffffff;
  color: #fff;
  border-radius: 3px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.p-page-event-detail__button:hover {
  background-color: #fff;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__button {
    font-size: 14px;
    padding: 16px 18px;
    width: 100%;
  }
}

.p-page-event-detail__button::after {
  content: "";
  display: block;
  width: 28px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%23FFFFFF'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}
.p-page-event-detail__button:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%230051B9'/%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__button::after {
    width: 21px;
    height: 5px;
  }
}

.p-page-event-detail__cards {
  margin-top: 60px;
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__cards {
    margin-top: 40px;
    gap: 60px;
  }
}

.p-page-event-detail__card {
  background-color: #fff;
  color: var(--text-color);
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__card {
    padding: 40px 22px;
  }
}

.p-page-event-detail__card-inner {
  max-width: 746px;
  width: 100%;
  margin-inline: auto;
}

.p-page-event-detail__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__title {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
  }
}

.p-page-event-detail__title.is-borderB {
  position: relative;
  padding-bottom: 24px;
}
.p-page-event-detail__title.is-borderB::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #B6B6B6;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__title.is-borderB {
    padding-bottom: 15px;
  }
  .p-page-event-detail__title.is-borderB::after {
    width: 23px;
  }
}

.p-page-event-detail__title .is-main {
  color: var(--main-color);
}

.p-page-event-detail__title .is-sky {
  color: #428BC5;
}

@media screen and (max-width: 767px) {
  .p-page-event-detail__title.is-sp-center {
    text-align: center;
  }
}

.p-page-event-detail__subtitle {
  font-size: 18px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__subtitle {
    font-size: 14px;
    margin-bottom: 9px;
  }
}

.p-page-event-detail__subtitle.is-sky {
  color: #428BC5;
}

.p-page-event-detail__feature-list {
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__feature-list {
    margin-top: 15px;
    margin-bottom: 15px;
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

.p-page-event-detail__feature {
  background-color: var(--main-color);
  color: #fff;
  padding: 24px 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__feature {
    padding: 15px 58px;
    font-size: 11.74px;
  }
}

.p-page-event-detail__text {
  margin-block: 12px;
  line-height: 1.7;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__text {
    font-size: 12px;
    margin-block: 9px;
  }
}

.p-page-event-button {
  display: block;
  margin-inline: auto;
  margin-top: 32px;
  border-radius: 999px;
  max-width: 334px;
  height: 72px;
  text-decoration: none;
  color: #fff;
  background-color: #FF8A00;
  border: 1px solid #FF8A00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  gap: 4px;
  transition: all 0.3s ease;
}
.p-page-event-button:hover {
  background-color: #fff;
  color: #FF8A00;
}
.p-page-event-button.is-gray {
  background-color: #5A5858;
  border-color: #5A5858;
}
.p-page-event-button.is-gray:hover {
  background-color: #fff;
  color: #5A5858;
}
@media screen and (max-width: 767px) {
  .p-page-event-button {
    position: relative;
    max-width: 213.1px;
    height: 47.79px;
    font-size: 12.52px;
  }
}

.p-page-event-button span {
  min-width: 58px;
  height: 28px;
  border-radius: 99px;
  line-height: 28px;
  padding: 0 15px;
  text-align: center;
  color: #FF6B00;
  background-color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.p-page-event-button:hover span {
  color: #fff;
  background-color: #FF6B00;
}
.p-page-event-button.is-gray span {
  color: #5A5858;
  border-color: #5A5858;
}
.p-page-event-button.is-gray:hover span {
  color: #fff;
  background-color: #5A5858;
}
@media screen and (max-width: 767px) {
  .p-page-event-button span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 64.18px;
    width: auto;
    height: 20.26px;
    font-size: 10px;
    border: 1px solid #FF6B00;
    line-height: 20.26px;
    padding: 0 10px;
  }
}

.p-page-event-button.is-mt55-36 {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .p-page-event-button.is-mt55-36 {
    margin-top: 36px;
  }
}

.p-page-event-detail__divider {
  border-top: 1px solid #B6B6B6;
  margin-block: 60px;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__divider {
    margin-block: 46px;
  }
  .p-page-event-detail__divider.is-sp-small {
    margin-block: 18px;
  }
}

.p-page-event-detail__label {
  display: block;
  width: 129px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  background-color: var(--main-color);
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
  border-radius: 99px;
  margin-inline: auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__label {
    width: 101.35px;
    height: 21.52px;
    line-height: 21.52px;
    font-size: 10px;
    margin-bottom: 18px;
  }
}

.p-page-event-detail__label.is-sky {
  background-color: #428BC5;
}

.p-page-event-detail__label.is-gray {
  background-color: var(--text-color-sub);
}

.p-page-event-days {
  margin-block: 32px;
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-page-event-days {
    max-width: 270px;
    width: 100%;
    margin-inline: auto;
    margin-block: 25px;
    gap: 10px;
  }
}

.p-page-event-days__item {
  display: flex;
  gap: 9px;
  align-items: center;
  background-color: #E3F3FF;
  border-radius: 4px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .p-page-event-days__item {
    gap: 12px;
    padding: 18px 18px;
  }
}

.p-page-event-days__label {
  min-width: 50px;
  height: 50px;
  background-color: #0051B9;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  gap: 2px;
}

.p-page-event-days__label span {
  font-size: 10px;
  font-family: var(--font-en);
  line-height: 1;
}

.p-page-event-days__label strong {
  font-size: 18px;
  font-family: var(--font-en);
  line-height: 1;
}

.p-page-event-days__list {
  margin: 0;
}

.p-page-event-days__list li {
  position: relative;
  font-size: 10px;
  line-height: 1.7;
  padding-left: 12px;
  color: #5A5858;
}
.p-page-event-days__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .p-page-event-detail__image {
    max-width: 270px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-page-event-detail__image.is-mt32-25 {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-page-event-detail__image.is-mt32-25 {
    margin-top: 25px;
  }
}

.p-page-event-instagram {
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
  justify-content: center;
  display: flex;
  gap: 24px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-page-event-instagram {
    max-width: 279px;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
    margin-top: 25px;
  }
}

.p-page-event-instagram.is-mt32-25 {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-page-event-instagram.is-mt32-25 {
    margin-top: 25px;
  }
}

.p-page-event-instagram__item {
  width: 100%;
  max-width: 290px;
}

/* ------------------------------------------------------------
.p-page-news
------------------------------------------------------------ */
.p-page-news {
  margin-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-page-news {
    margin-top: 0;
    padding-bottom: 85px;
  }
}

.p-page-news__box {
  width: 100%;
  padding: 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-page-news__box {
    padding: 80px 28px;
  }
}

.p-page-news-categories {
  position: relative;
}

.p-page-news-categories__display {
  position: relative;
  height: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  background-color: #428BC5;
  color: #FFF;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  transition: all 0.3s ease;
}

.p-page-news-categories__display::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: block;
  border-top: 7px solid #FFF;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.p-page-news-categories__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-page-news-categories__list {
    z-index: 10;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    flex-direction: column;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
    display: none;
  }
  .p-page-news-categories__list.is-active {
    display: flex;
  }
}

.p-page-news-categories__item {
  display: block;
  width: calc(100% / 3);
  text-align: center;
  background-color: #FFF;
  color: #FFF;
  color: var(--text-color);
  line-height: 2;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.p-page-news-categories__item:hover,
.p-page-news-categories__item.is-active {
  background-color: #428BC5;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-page-news-categories__item {
    width: 100%;
  }
}

.p-page-news-list {
  margin-top: 60px;
  display: grid;
  gap: 15px;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-page-news-list {
    margin-top: 40px;
  }
}

/* ------------------------------------------------------------
.p-page-post
------------------------------------------------------------ */
.p-page-post {
  position: relative;
  margin-top: 62px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-page-post {
    margin-top: 35px;
    padding-bottom: 80px;
  }
}

.p-page-post__box {
  width: 100%;
  padding: 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-page-post__box {
    padding: 40px 28px;
  }
}

.p-page-post .post_content > *:first-child,
.p-page-post .post_content > .p-toc + * {
  margin-top: 0 !important;
}

.p-page-post .post_content .veu_relatedPosts.veu_contentAddSection {
  display: none;
}

.p-page-post .post_content {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-page-post .post_content {
    padding-top: 40px;
  }
}

.p-page-post .post_content h2 {
  width: 100%;
  margin-left: 0;
  background: linear-gradient(248.84deg, #00D1FF -15.86%, #009EFF 49.36%, #2A6EF5 102.03%);
  margin-top: 60px;
  margin-bottom: 32px;
  padding: 10px 15px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
.p-page-post .post_content h2::before {
  content: none;
}

.p-page-post .post_content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  margin-top: 40px;
  border-left: var(--main-color) 6px solid;
  padding-left: 15px;
}

.p-page-post .post_content h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  margin-top: 40px;
  padding-left: 18px;
}
.p-page-post .post_content h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
}

@media screen and (max-width: 767px) {
  .p-page-post .post_content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .p-page-post .post_content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    padding-left: 12px;
  }

  .p-page-post .post_content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    padding-left: 12px;
  }
  .p-page-post .post_content h4::before {
    width: 8px;
    height: 8px;
  }
}

.p-page-post .post_content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-page-post .post_content p {
    margin: 20px 0;
  }
}

.p-page-post .post_content p a {
  color: #1B9AFF;
  text-decoration: underline;
}
.p-page-post .post_content p a:hover {
  text-decoration: none;
}

.p-page-post .post_content .wp-block-columns {
  gap: 20px;
}

/* 余白 */
.p-page-post .post_content ul,
.p-page-post .post_content ol,
.p-page-post .post_content blockquote,
.p-page-post .post_content .wp-block-cover,
.p-page-post .post_content .wp-block-group,
.p-page-post .post_content .wp-block-columns,
.p-page-post .post_content .wp-block-image,
.p-page-post .post_content .wp-block-video,
.p-page-post .post_content .wp-block-embed,
.p-page-post .post_content .wp-block-gallery,
.p-page-post .post_content .wp-block-table {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-page-post .post_content ul,
  .p-page-post .post_content ol,
  .p-page-post .post_content blockquote,
  .p-page-post .post_content .wp-block-cover,
  .p-page-post .post_content .wp-block-group,
  .p-page-post .post_content .wp-block-columns,
  .p-page-post .post_content .wp-block-image,
  .p-page-post .post_content .wp-block-video,
  .p-page-post .post_content .wp-block-embed,
  .p-page-post .post_content .wp-block-gallery,
  .p-page-post .post_content .wp-block-table {
    margin: 20px 0;
  }
}

.p-page-post .post_content ul,
.p-page-post .post_content ol {
  padding-left: 20px;
}

.p-page-post .post_content ul ul,
.p-page-post .post_content ul ol,
.p-page-post .post_content ol ul,
.p-page-post .post_content ol ol {
  margin-top: 0;
}

.p-page-post .post_content ul li {
  list-style: disc;
}

.p-page-post .post_content ol li {
  list-style: decimal;
}

.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
  display: block;
}

.p-page-post__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.p-page-post__date {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
}

.p-page-post__category {
  display: inline-block;
  min-width: 90px;
  text-align: center;
  padding: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-page-post__category:hover {
  color: #fff;
  background-color: var(--main-color);
}

.p-page-post__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-page-post__title {
    font-size: 24px;
    line-height: 1.4;
  }
}

.p-page-post__thumbnail {
  margin-bottom: 24px;
}
.p-page-post__thumbnail-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-page-post__read {
  background-color: #E3F3FF;
  padding: 40px;
  border-radius: 12px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-page-post__read {
    padding: 24px;
  }
}

.p-page-post__related {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-page-post__related {
    margin-top: 80px;
  }
}

.p-page-post__related-list {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
}
.p-page-post__related-list .c-news-item {
  width: calc(100% / 2 - 20px);
}
@media screen and (max-width: 767px) {
  .p-page-post__related-list {
    padding-top: 30px;
  }
  .p-page-post__related-list .c-news-item {
    width: 100%;
  }
}

.p-page-post__related-empty {
  text-align: center;
}

.p-page-post__related-more {
  text-align: center;
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .p-page-post__related-more {
    margin-top: 34px;
  }
}

/* ------------------------------------------------------------
p-page-team
------------------------------------------------------------ */
.p-page-team {
  padding-top: 32px;
  padding-bottom: 140px;
}

.p-page-team__list {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.p-page-team__card {
  padding: 60px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-page-team__card {
    padding: 28px;
    flex-direction: column;
    gap: 40px;
  }
}

.p-page-team__card-image {
  width: 270px;
  background-color: #5A5858;
  aspect-ratio: 270 / 270;
}
.p-page-team__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-page-team__card-image {
    max-width: 270px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-page-team__card-content {
  flex: 1;
  width: 100%;
}

.p-page-team__card-position {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-page-team__card-name {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-page-team__card-name::after {
  content: attr(data-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--main-color);
  font-family: var(--font-en);
}
.p-page-team__card-name::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(180.49deg, #1B9AFF 9.34%, #001892 97.84%);
}

.p-page-team__card-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

.p-page-team__card-text a {
  color: var(--main-color);
  text-decoration: underline;
}
.p-page-team__card-text a:hover {
  text-decoration: none;
}

.p-page-team-card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 300px;
  width: 100%;
  gap: 8px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-page-team-card-link {
    max-width: none;
  }
}

.p-page-team-card-link a {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px dashed #B6B6B6;
  font-size: 15px;
  font-weight: 400;
  color: var(--main-color);
  padding-bottom: 4px;
  padding-inline: 18px;
}
.p-page-team-card-link a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
}
.p-page-team-card-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 4px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='7' viewBox='0 0 28 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.88171H26.5L20 0.381714' stroke='%230051B9'/%3E%3C/svg%3E");
}

.p-page-team-card-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  margin-top: 32px;
}

.p-page-team-card-sns a {
  width: 40px;
  height: 40px;
  display: inline-block;
  transition: all 0.3s ease;
}
.p-page-team-card-sns a:hover {
  opacity: 0.7;
}

/* ============================================================================================
Utility
============================================================================================ */
.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

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

/* ============================================================================================
固有ページ
============================================================================================ */
body:has(.post_content) {
  background-color: #FFF !important;
}

:root {
  --inherents-headerH: 60px;
  --inherents-fix_headerH: 0px;
  --inherents-offset_y: 60px;
  --inherents-scrollbar_width: 0px;
}
