@charset "UTF-8";

/*!
foundation > base
------------------------------
*/
html {
  font-size: 62.5%;
}

@media (max-width: 1024px) {
  html {
    font-size: 0.97vw;
  }
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

body {
  font-size: 1.6rem;
  color: #042890;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

@media (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

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

@media (max-width: 767px) {
  img {
    max-width: none;
    width: 100%;
  }
}

.fade-up-bounce {
  animation: fadeUpBounce 1.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
  opacity: 0;
}

@keyframes fadeUpBounce {
  0% {
    transform: translateY(14rem);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
  20%,100% {
    opacity: 1;
  }
}

::placeholder {
  color: #A6A6A6;;
}

/*!
utility > utility
------------------------------
*/
.u-d-block {
  display: block !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-inline-block-pc {
  display: inline-block !important;
}

@media (max-width: 767px) {
  .u-d-inline-block-pc {
    display: block !important;
  }
}

.u-d-block-pc {
  display: block !important;
}

@media (max-width: 767px) {
  .u-d-block-pc {
    display: inline !important;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-sp-only {
  display: none;
}

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

.u-bg-top-circle {
  border-top-left-radius: 85% 35%;
  border-top-right-radius: 85% 35%;
}

@media (max-width: 767px) {
  .u-bg-top-circle {
    border-top-left-radius: 95% 18%;
    border-top-right-radius: 95% 18%;
  }
}

/*!
component > form > text
------------------------------
*/
.c-input-text {
  border: 0.1rem solid #042890;
  padding: 1rem 1.8rem;
  width: 100%;
}

@media (max-width: 767px) {
  .c-input-text {
    padding: 0 1rem;
  }
}

.c-input-text--w-half {
  width: 50%;
}

/*!
component > form > textarea
------------------------------
*/
.c-textarea {
  border: 0.1rem solid #042890;
  padding: 1rem 1.8rem;
  width: 100%;
  height: 100%;
}

/*!
component > button
------------------------------
*/
.c-button {
  font-size: 2.4rem;
  color: #ffffff;
  background-color: #042890;
  border-radius: 9999px;
  display: inline-block;
  padding: 0.9rem 1.8rem;
  max-width: 59rem;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .c-button {
    font-size: 1.8rem;
    padding: 0.9rem 1.4rem;
    max-width: 29.5rem;
  }
}

.c-button:hover,
.c-button:focus {
  opacity: 0.7;
}

/*!
component > bottom-nav
------------------------------
*/
.c-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  .c-bottom-nav {
    display: block;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255 / 0.7);
    z-index: 1;
    padding: 1rem;
  }

  .c-bottom-nav__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .c-bottom-nav__button {
    box-shadow: 0 0 0.5rem rgb(0 0 0 / 0.1);
    display: block;
    color: #333;
    padding: 0.7rem 0.3rem 0.7rem 3.6rem;
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 1rem;
  }

  .c-bottom-nav__button::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1rem;
  }

  .c-bottom-nav__button--contact::before {
    background-image: url(/img/icon_contact.png);
  }

  .c-bottom-nav__button--email::before {
    background-image: url(/img/icon_email.png);
  }

  .c-bottom-nav__button--tel::before {
    background-image: url(/img/icon_tel.png);
  }
}

/*!
component > title
------------------------------
*/
/*! level2 */
.c-title-level2 {
  position: relative;
}

.c-title-level2__main {
  font-size: 6rem;
  font-weight: 900;
  color: #042890;
  line-height: 1;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .c-title-level2__main {
    font-size: 2.1rem;
  }
}

.recruit-idea .c-title-level2__main {
  line-height: 1.5;
  font-size: min(4.054vw, 6rem);
}

@media (max-width: 767px) {
  .recruit-idea .c-title-level2__main {
    font-size: 2.1rem;
  }
}

.c-title-level2__main--center {
  text-align: center;
}

.c-title-level2__sub {
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .c-title-level2__sub {
    font-size: 1.2rem;
  }
}

.c-title-level2__sub--center {
  text-align: center;
}

.c-title-level2__sub--service {
  position: absolute;
  top: -6rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 96.41%;
  text-align: center;
}

@media (max-width: 767px) {
  .c-title-level2__sub--service {
    top: -2rem;
    width: calc(100% - 2rem);
  }
}

.c-title-level2__sub--flow {
  position: absolute;
  top: -9rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 96.41%;
  text-align: center;
}

@media (max-width: 767px) {
  .c-title-level2__sub--flow {
    top: -3rem;
    width: 100%;
  }
}

.c-title-level2__sub--message {
  position: absolute;
  top: -14rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 96.41%;
  text-align: center;
}

@media (max-width: 767px) {
  .c-title-level2__sub--message {
    top: -5rem;
    width: 86%;
  }
}

.c-title-level2__sub--recruit {
  position: absolute;
  top: -14rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 96.41%;
  text-align: center;
}

@media (max-width: 767px) {
  .c-title-level2__sub--recruit {
    top: -5rem;
    width: 70%;
  }
}

/*!
component > lead
------------------------------
*/
.c-lead {
  font-size: 3rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-lead {
    font-size: 1.2rem;
  }
}

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

/*!
component > drawer-nav
------------------------------
*/
.c-drawer-nav-wrap {
  position: fixed;
  right: 6rem;
  bottom: 3.5rem;
  z-index: 1;
  color: #333;
}

@media (max-width: 767px) {
  .c-drawer-nav-wrap {
    display: none;
  }
}

.c-drawer-nav {
  display: none;
}

.c-drawer-item:not(:first-of-type) {
  margin-top: 1rem;
}

.c-drawer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  background-color: #ffffff;
  border-radius: 9999px;
  transition: transform 0.3s;
  padding: 1.2rem 2.6rem;
  border: 0.2rem solid #333;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  transition: all 0.3s;
}

.c-drawer-link:hover,
.c-drawer-link:focus {
  background-color: #ffff00;
}

.c-hamburger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 18rem;
  background-color: #ffffff;
  border-radius: 9999px;
  transition: transform 0.3s;
  padding: 1.2rem 2.6rem;
  border: 0.2rem solid #333;
  margin-top: 1rem;
  transition: all 0.3s;
}

.c-hamburger:hover {
  background-color: #ffff00;
}

.c-hamburger__text {
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

.c-hamburger__line {
  position: relative;
  width: 3rem;
  height: 0.4rem;
  background-color: #333;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 3rem;
  height: 0.4rem;
  background-color: #333;
  transition: transform 0.3s;
}

.c-hamburger__line::before {
  top: -1rem;
}

.c-hamburger__line::after {
  bottom: -1rem;
}


/*閉じる*/
/*aria-expandedの状態でスタイルを適用*/
.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background-color: transparent;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/*!
component > client
------------------------------
*/
.c-client {
  margin-top: 11.5rem;
}

@media (max-width: 767px) {
  .c-client {
    margin-top: 5.8rem;
  }
}

.c-client__lead {
  margin-top: 2.8rem;
}

@media (max-width: 767px) {
  .c-client__lead {
    margin-top: 1.4rem;
  }
}

.c-client__logo {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .c-client__logo {
    margin-top: 1.7rem;
  }
}

/*!
component > calendar
------------------------------
*/
.c-calendar {
  background-color: #f4f4f4;
  padding-top: 11.5rem;
  margin-top: 11.5rem;
  border-top-left-radius: 85% 35%;
  border-top-right-radius: 85% 35%;
}

@media (max-width: 767px) {
  .c-calendar {
    padding-top: 6rem;
    margin-top: 4rem;
    border-top-left-radius: 95% 18%;
    border-top-right-radius: 95% 18%;
  }
}

.c-calendar-wrap {
  display: grid;
  grid-template-columns: repeat(3, 38rem);
  gap: 3rem;
  margin-top: 6.2rem;
  overflow-x: auto;
  padding-bottom: 6rem;
}

@media (max-width: 767px) {
  .c-calendar-wrap {
    grid-template-columns: repeat(3, 25.35rem);
    gap: 1.75rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 3rem;
  }
}

.c-calendar-wrap::-webkit-scrollbar {
  height: 0.9rem;
}

.c-calendar-wrap::-webkit-scrollbar-thumb {
  background-color: #042890;
  border-radius: 9999px;
}

.c-calendar-wrap::-webkit-scrollbar-track {
  background-color: #90acbf;
  border-radius: 9999px;
}

.c-calendar-item {
  background-color: #fff;
  padding: 2.4rem 1rem;
}

@media (max-width: 767px) {
  .c-calendar-item {
    padding: 1.6rem 0.65rem 2rem;
  }
}

.c-calendar__table {
  width: 100%;
  border-collapse: collapse;
}

.c-calendar__table caption {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.6rem;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .c-calendar__table caption {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.c-calendar__table th,
.c-calendar__table td {
  text-align: center;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #333;
  font-weight: bold;
  padding: 1.25rem
}

@media (max-width: 767px) {
  .c-calendar__table th,
  .c-calendar__table td {
    padding: 0.85rem;
    font-size: 1.2rem;
  }
}

.c-calendar__table td {
  border-top: 0.1rem solid #d2d2d2;
}

.c-calendar__table .sun {
  color: #ff0000;
}

.c-calendar__table .mute {
  opacity: 0;
}

.c-calendar__table .off {
  background-color: #fadcdb;
  color: #ff0000;
}

.c-calendar__note {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .c-calendar__note {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}

.c-calendar__note::before {
  content: '';
  display: inline-block;
  width: 5.142rem;
  height: 4.35rem;
  background-color: #ffdbdb;
  margin-right: 2rem;
}

@media (max-width: 767px) {
  .c-calendar__note::before {
    width: 3.434rem;
    height: 2.95rem;
    margin-right: 1rem;
  }
}

/*!
component > organization-diagram
------------------------------
*/
.c-organization-diagram {
  margin-top: 11.3rem;
}

@media (max-width: 767px) {
  .c-organization-diagram {
    margin-top: 5.9rem;
  }
}

.genealogy {
  display: table;
  position: relative;
  margin: 29.5rem auto 0;
}

@media (max-width: 767px) {
  .genealogy {
    margin: 9rem auto 0;
  }
}

.genealogy:has(.genealogy) > dl > dd {
  width: 0;
  height: 0;
  border: 0;
}

.genealogy__ceo-chairman {
  top: -23.2rem !important;
}

@media (max-width: 767px) {
  .genealogy__ceo-chairman {
    top: -6rem !important;
  }
}

.genealogy__ceo-president {
  top: -14.3rem !important;
}

@media (max-width: 767px) {
  .genealogy__ceo-president {
    top: -1.6rem !important;
  }
}

.genealogy__ceo-president::before,
.genealogy__ceo-president::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.2rem;
  height: 3rem;
  background-color: #042890;
  content: "";
}

@media (max-width: 767px) {
  .genealogy__ceo-president::before,
  .genealogy__ceo-president::after {
    width: 0.1rem;
    height: 1.5rem;
  }
}

.genealogy__ceo-president::before {
  top: -3rem;
}

@media (max-width: 767px) {
  .genealogy__ceo-president::before {
    top: -1.5rem;
  }
}

.genealogy__ceo-president::after {
  bottom: -3rem;
}

@media (max-width: 767px) {
  .genealogy__ceo-president::after {
    bottom: -1.5rem;
  }
}

.genealogy__ceo-chairman,
.genealogy__ceo-president,
.genealogy__executive-managing-director {
  width: 38rem !important;
}

@media (max-width: 767px) {
  .genealogy__ceo-chairman,
  .genealogy__ceo-president,
  .genealogy__executive-managing-director {
    width: 19rem !important;
  }
}

.genealogy > dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 6.2rem 0 0 0;
}

@media (max-width: 767px) {
  .genealogy > dl {
    gap: 0.5rem;
  }
}

.genealogy > dl::after {
  position: absolute;
  top: 2.4rem;
  left: 11.8%;
  right: 11.8%;
  height: 4rem;
  background: linear-gradient(to right, #042890 0%, #042890 100%) top center /
      0.2rem 100% no-repeat,
    linear-gradient(to right, #042890 0%, #042890 100%) bottom left / 100%
      0.2rem no-repeat;
  content: "";
}

@media (max-width: 767px) {
  .genealogy > dl::after {
    top: 2.7rem;
    height: 2rem;
    background: linear-gradient(to right, #042890 0%, #042890 100%) top center /
        0.1rem 100% no-repeat,
      linear-gradient(to right, #042890 0%, #042890 100%) bottom left / 100%
        0.1rem no-repeat;
  }
}

.genealogy > dl > dt,
.genealogy > dl > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: min(23vw, 28.5rem);
  height: 6rem;
  border: 0.1rem solid currentColor;
  box-sizing: border-box;
  text-align: center;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 2rem;
}

@media (max-width: 767px) {
  .genealogy > dl > dt,
  .genealogy > dl > dd {
    gap: 0.6rem;
    width: 8.5rem;
    font-size: 1.2rem;
    height: 3rem;
    border-radius: 1rem;
  }
}

.genealogy > dl > dt {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .genealogy > dl > dt {
    top: -0.3rem;
  }
}

.genealogy > dl > dd {
  position: relative;
  padding: 0px;
  margin: 3.3rem 0 0px;
}

@media (max-width: 767px) {
  .genealogy > dl > dd {
    margin: 0;
  }
}

.genealogy > dl > dd::before {
  position: absolute;
  top: -3.4rem;
  left: 0px;
  width: 100%;
  height: 4rem;
  background: linear-gradient(to right, #042890 0%, #042890 100%) top center /
    0.2rem calc(100% - 0.3em) no-repeat;
  overflow: hidden;
  content: "";
}

@media (max-width: 767px) {
  .genealogy > dl > dd::before {
    top: -1.6rem;
    height: 2rem;
    background: linear-gradient(to right, #042890 0%, #042890 100%) top center /
      0.1rem calc(100% - 0.3em) no-repeat;
  }
}

.genealogy .genealogy {
  position: absolute;
  top: -11.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0px;
}

@media (max-width: 767px) {
  .genealogy .genealogy {
    top: -3.2rem;
  }
}

.c-organization-diagram__button {
  margin-top: 9.6rem;
  text-align: center;
}

@media (max-width: 767px) {
  .c-organization-diagram__button {
    margin-top: 10rem;
  }
}

/*!
component > page-mv
------------------------------
*/
.c-page-mv {
  height: 50rem;
  padding: 24.2rem 6rem 0;
  background-image: url(../img/bg_page_mv.jpg);
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .c-page-mv {
    height: 26.5rem;
    padding: 14.6rem 1rem 0;
    background-image: url(../img/bg_page_mv_sp.jpg);
  }
}

.c-page-mv--service {
  padding: 23rem 6rem 0;
  background-image: url(../img/bg_service_mv.jpg);
}

@media (max-width: 767px) {
  .c-page-mv--service {
    padding: 14.6rem 1rem 0;
    background-image: url(../img/bg_service_mv_sp.jpg);
  }
}

.c-page-mv__title {
  line-height: 1;
  position: relative;
}

.c-page-mv__title-main {
  font-size: 7.2rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .c-page-mv__title-main {
    font-size: 3.55rem;
  }
}

.c-page-mv__title-sub {
  position: absolute;
  display: inline-block;
  top: -15.9rem;
  left: 0;
  max-width: 114.6rem;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .c-page-mv__title-sub {
    top: -5.2rem;
    width: 35.3rem;
  }
}

.c-page-mv--service .c-page-mv__title-sub {
  top: -15rem;
}

@media (max-width: 767px) {
  .c-page-mv--service .c-page-mv__title-sub {
    top: -5rem;
    width: 28.7rem;
  }
}

c-page-mv__title-sub--contact {
  max-width: 94.9rem;
}

@media (max-width: 767px) {
  .c-page-mv__title-sub--contact {
    width: 29.25rem;
  }
}

/*!
component > breadcrumb
------------------------------
*/
.c-breadcrumb {
  background-color: #90acbf;
  color: #fff;
  padding: 1.6rem 6rem;
}

@media (max-width: 767px) {
  .c-breadcrumb {
    padding: 0.4rem 1rem;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
}

.c-breadcrumb__item {
  text-transform: uppercase;
}

.c-breadcrumb__item:not(:first-of-type)::before {
  content: '>';
  display: inline-block;
  padding: 0 0.6rem;
}

@media (max-width: 767px) {
  .c-breadcrumb__item:not(:first-of-type)::before {
    padding: 0 0.4rem;
  }
}

.c-breadcrumb__link:hover {
  text-decoration: underline;
}

/*!
component > subnav
------------------------------
*/
.c-subnav {
  padding: 6.6rem 0 5rem;
  background-color: #f4f4f4;
}

@media (max-width: 767px) {
  .c-subnav {
    padding: 5rem 0 6rem;
  }
}

.c-subnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.c-subnav__item {
  border-left: 1px solid;
}

.c-subnav__item:last-of-type {
  border-right: 1px solid;
}

.c-subnav__link {
  display: block;
  line-height: 1;
  font-size: 2.4rem;
  padding: 0 2.6rem;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .c-subnav__link {
    font-size: 1.58rem;
    padding: 0 1.73rem;
  }
}

.c-subnav__link[aria-current] {
  font-weight: bold;
}

.c-subnav__link[aria-current]::before,
.c-subnav__link:hover::before,
.c-subnav__link:focus::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -1.4rem;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #042890;
}

@media (max-width: 767px) {
  .c-subnav__link[aria-current]::before,
  .c-subnav__link:hover::before,
  .c-subnav__link:focus::before {
    bottom: -1rem;
    height: 0.25rem;
  }
}

/*!
layout > container
------------------------------
*/
.l-container {
  margin: 0 auto;
  width: calc(100% - 4rem);
  max-width: 120rem;
}

@media (max-width: 767px) {
  .l-container {
    width: calc(100% - 2rem);
  }
}

/*!
layout > header
------------------------------
*/
.header {
  background-color: rgb(255 255 255 / 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 8rem;
}

@media (max-width: 767px) {
  .header {
    height: 6.5rem;
    padding: 0rem 1rem;
  }
}

.header.UpMove {
  animation: UpAnime 0.5s forwards;
  box-shadow: 0.3rem 0.35rem 0.35rem 0.01rem rgb(0 0 0 / 0.21);
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10rem);
  }
}

.header.DownMove {
  animation: DownAnime 0.5s forwards;
  box-shadow: 0.3rem 0.35rem 0.35rem 0.01rem rgb(0 0 0 / 0.21);
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 0.4rem 1.5rem 0.4rem 6rem;
}

@media (max-width: 767px) {
  .header__inner {
    padding: 0rem 1rem;
  }
}

.header__logo {
  max-width: 20rem;
}

@media (max-width: 767px) {
  .header__logo {
    max-width: 11.5rem;
  }
}

.header__link {
  transition: all 0.3s;
}

.header__link:hover,
.header__link:focus {
  opacity: 0.7;
}

.header__company-info {
  line-height: 1;
  color: #333;
}

@media (max-width: 767px) {
  .header__company-info {
    display: none;
  }
}

.header__company-tel {
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: -0.1em;
}

.header__company-tel::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url("../img/icon_tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header__company-mail {
  font-size: 1.4rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-right: -0.1em;
  transition: all 0.3s;
}

.header__company-mail:hover,
.header__company-mail:focus {
  color: #009cff;
}

.header__company-mail::before {
  content: "";
  width: 1.9em;
  height: 1.9em;
  display: inline-block;
  background-image: url("../img/icon_email.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header__hamburger {
  display: none;
}

@media (max-width: 767px) {
  .header__hamburger {
    position: absolute;
    top: 0;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: inherit;
    cursor: pointer;
    transition: all 0.3s;
    border: 0;
  }

  .header__hamburger:hover,
  .header__hamburger:focus-visible {
    opacity: 0.7;
  }

  .header__hamburger-line {
    position: relative;
    width: 3rem;
    height: 0.5rem;
    background-color: #042890;
  }

  .header__hamburger-line::before,
  .header__hamburger-line::after {
    position: absolute;
    content: "";
    display: block;
    width: 3rem;
    height: 0.5rem;
    background-color: #042890;
    transition: transform 0.3s;
  }

  .header__hamburger-line::before {
    top: -1rem;
  }

  .header__hamburger-line::after {
    bottom: -1rem;
  }

  /*閉じる*/
  /*aria-expandedの状態でスタイルを適用*/
  .header__hamburger[aria-expanded="true"] .header__hamburger-line {
    background-color: transparent;
  }

  .header__hamburger[aria-expanded="true"] .header__hamburger-line::before {
    top: 0;
    transform: rotate(45deg);
  }

  .header__hamburger[aria-expanded="true"] .header__hamburger-line::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}

.header__drawer {
  display: none;
}

@media (max-width: 767px) {
  .header__drawer {
    position: fixed;
    z-index: 1000;
    top: 6.5rem;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: calc(100dvh - 6.5rem);
    background-color: #fff;
    color: #333;
  }

  .header__drawer-item {
    border-top: 0.1rem solid #c2c2c2;
  }

  .header__drawer-item:last-child {
    border-bottom: 0.1rem solid #c2c2c2;
  }

  .header__drawer-link {
    font-size: 1.2rem;
    padding: 1.62rem 2.5rem 1.62rem 2rem;
    position: relative;
  }

  .header__drawer-link {
    display: block;
  }

  .header__drawer-link::after {
    content: "";
    position: absolute;
    right: 1.8rem;
    top: 50%;
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    border-bottom: 0.2rem solid #042890;
    border-right: 0.2rem solid #042890;
    transform: translateY(-50%) rotate(-45deg);
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  padding-top: 6rem;
  background-color: #f4f4f4;
}

@media (max-width: 767px) {
  .footer {
    padding-top: 7.5rem;
  }
}

.footer__inner {
  display: grid;
  grid-template-columns: 20rem 1fr auto;
  align-items: center;
  padding: 0 6rem 6.2rem;
  gap: 3rem 7rem;
}

@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1rem 4rem;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .footer__logo {
    max-width: 15rem;
    justify-self: center;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  color: #333;
}

@media (max-width: 767px) {
  .footer__nav-list {
    gap: 3.5rem;
    justify-content: center;
  }
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  text-decoration: underline;
  text-underline-offset: 0.7rem;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 767px) {
  .footer__sns {
    justify-content: center;
    gap: 2.6rem;
  }
}

.footer__sns-item {
  width: 4rem;
}

@media (max-width: 767px) {
  .footer__sns-item {
    width: 4.5rem;
  }
}

.footer__sns-link {
  display: block;
  transition: all 0.3s;
}

.footer__sns-link:hover,
.footer__sns-link:focus {
  opacity: 0.7;
}

.footer__copyright {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #90acbf;
  font-size: 1.6rem;
  padding: 4.5rem;
}

@media (max-width: 767px) {
  .footer__copyright {
    font-size: 1.2rem;
    padding: 2rem;
  }
}

/*!
page > top > top-mv
------------------------------
*/
.top-mv {
  height: 70rem;
  background-image: url(../img/bg_top_mv.jpg);
  background-size: cover;
  background-position: right center;
  padding: 18rem 0 15.6rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .top-mv {
    height: 40rem;
    background-image: url(../img/bg_top_mv_sp.jpg);
    padding: 15.5rem 0 11rem;
  }
}

.top-mv__content {
  background-color: rgb(255 255 255 / 0.6);
  padding: 7rem 3rem 7rem 6rem;
  max-width: 84rem;
}

@media (max-width: 767px) {
  .top-mv__content {
    padding: 2rem 1rem;
    max-width: 20rem;
  }
}

.top-mv__name {
  display: flex;
}

.top-mv__name-text {
  text-transform: uppercase;
  font-family: "";
  font-size: 15rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: #002ca9;
  line-height: 1;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .top-mv__name-text {
    font-size: 3.8rem;
  }
}

.top-mv__copy {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .top-mv__copy {
    font-size: 2rem;
    margin-top: 0.3rem;
  }
}

/*!
page > top > top-intro
------------------------------
*/
.top-intro {
  background-color: #042890;
  color: #fff;
  position: relative;
  padding: 5.7rem 6rem 32.8rem;
}

@media (max-width: 767px) {
  .top-intro {
    padding: 4.4rem 0 8.1rem 1rem;
  }
}

.top-intro::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: -4.3rem;
  right: 0;
  width: min(100%, 116.5rem);
  height: 46.7rem;
  background-image: url(../img/text_top_intro_kilamek.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .top-intro::before {
    top: -1rem;
    right: 0;
    width: 29.5rem;
    height: 11.7rem;
  }
}

.top-intro__menu {
  position: absolute;
  z-index: 1;
  top: -6.5rem;
  left: 0;
  display: flex;
  max-width: 100rem;
  width: 100%;
}

@media (max-width: 767px) {
  .top-intro__menu {
    display: none;
  }
}

.top-intro__menu-item {
  width: calc(100% / 5);
}

.top-intro__menu-item:not(:first-of-type) {
  margin-left: -1rem;
}

.top-intro__menu-link {
  height: 6.6rem;
  border: 0.2rem solid #90acbf;
  background-color: rgb(144 172 191 / 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  line-height: 1;
  border-radius: 15% 40% 0% 0% / 40% 100% 0% 0%;
  transition: all 0.3s;
}

.top-intro__menu-link:hover,
.top-intro__menu-link:focus {
  border-color: #042890;
  color: #042890;
  background-color: rgb(255 255 0 / 0.9);
  margin-top: -1rem;
  height: 7.6rem;
}

.top-intro__menu-link:active {
  background-color: rgb(4 40 144 / 0.9);
  color: #fff;
}

.top-intro__menu-main {
  font-size: 1.8rem;
  font-weight: bold;
}

.top-intro__menu-sub {
  font-size: 1.4rem;
}

.top-intro__description {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}

@media (max-width: 767px) {
  .top-intro__description {
    font-size: 1.2rem;
  }
}

.top-intro__picture {
  display: flex;
  position: absolute;
  max-width: 105.5rem;
  bottom: -8rem;
}

@media (max-width: 767px) {
  .top-intro__picture {
    max-width: 26.3rem;
    bottom: -2rem;
  }
}

.top-intro__picture-item {
  border-radius: 9999px;
  overflow: hidden;
  opacity: 0;
}

/*!
page > top > top-proposal
------------------------------
*/
.top-proposal {
  margin-top: 15rem;
  padding: 0 6rem;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .top-proposal {
    margin-top: 4.2rem;
    padding: 0 1rem;
  }
}

.top-proposal__text {
  max-width: 110.8rem;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 4.7rem;
}

@media (max-width: 767px) {
  .top-proposal__text {
    max-width: none;
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}

/*!
page > top > top-performance
------------------------------
*/
.top-performance {
  margin-top: 8rem;
}

@media (max-width: 767px) {
  .top-performance {
    margin-top: 2rem;
  }
}

.top-performance__swiper {
  border-bottom-left-radius: 50% 22%;
  border-bottom-right-radius: 50% 22%;
  max-height: 80rem;
}

@media (max-width: 767px) {
  .top-performance__swiper {
    max-height: none;
    height: 18.7rem;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}

.swiper-img img {
  max-width: none;
  width: 100%;
}

/*!
page > top > top-service
------------------------------
*/
.top-service {
  margin-top: 18rem;
}

@media (max-width: 767px) {
  .top-service {
    margin-top: 8rem;
  }
}

.top-service__body {
  background-color: #F2F7FF;
  padding: 8rem 0;
  margin-top: 4.2rem;
}

@media (max-width: 767px) {
  .top-service__body {
    padding: 5rem 0;
    margin-top: 2.4rem;
  }
}

.top-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}

@media (max-width: 767px) {
  .top-service__list {
    gap: 5.2rem;
  }
}

.top-service__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .top-service__item {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-service__item-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .top-service__item-content {
    margin-top: 0.6rem;
  }
}

.top-service__item-title {
  border-left: 5px solid #90acbf;
  letter-spacing: 0.09em;
  line-height: 1.3;
  padding: 0 1rem 0.5rem 1rem;
}

@media (max-width: 767px) {
  .top-service__item-title {
    padding-bottom: 0.8rem;
  }
}

.top-service__item-title-main {
  font-size: 3rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .top-service__item-title-main {
    font-size: 2.1rem;
  }
}

.top-service__item-title-sub {
  color: #90acbf;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .top-service__item-title-sub {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}

.top-service__item-text {
  margin-top: 1.5rem;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .top-service__item-text {
    margin-top: 0.7rem;
    font-size: 1.2rem;
  }
}

.top-service__item-link {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .top-service__item-link {
    padding-top: 0;
    margin-top: 1.8rem;
  }
}

.top-service__item-link::before {
  content: '→';
  font-size: 3rem;
  border: 0.2rem solid #173999;
  border-radius: 9999px;
  background-color: #fff;
  box-shadow: 0.172rem 0.246rem 0.3rem 0 rgb(4 40 144 / 0.3);
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  line-height: 1;
  margin-right: 2rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .top-service__item-link::before {
    font-size: 2.4rem;
    box-shadow: 0.086rem 0.123rem 0.15rem 0 rgb(4 40 144 / 0.3);
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
  }
}

.top-service__item-link:has(.top-service__item-link-text:hover)::before {
  background-color: #FFFF00;
}

.top-service__item-link-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}

@media (max-width: 767px) {
  .top-service__item-link-text {
    font-size: 1.2rem;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
  }
}

.top-service__item-link-text:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.top-service__item-swiper {
  width: 100%;
}

.top-service__item-swiper .swiper-img {
  height: 100%;
}

.top-service__item-swiper img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .top-service__item-swiper {
    order: -1;
  }
}

.top-service__button {
  margin-top: 7.7rem;
  text-align: center;
}

@media (max-width: 767px) {
  .top-service__button {
    margin-top: 5.4rem;
  }
}

/*!
page > top > top-interview
------------------------------
*/
.top-interview {
  background-color: #f4f4f4;
  margin-top: 11.9rem;
  padding: 7.8rem 0 0;
}

@media (max-width: 767px) {
  .top-interview {
    margin-top: 6rem;
    padding: 4.5rem 0 0;
  }
}

.top-interview__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .top-interview__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 1rem;
    margin-top: 5.2rem;
  }
}

.top-interview__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.top-interview__item-title {
  line-height: 1;
  margin-top: 1.8rem;
}

@media (max-width: 767px) {
  .top-interview__item-title {
    margin-top: 1.8rem;
  }
}

.top-interview__item-title-division {
  display: block;
  text-align: center;
}

.top-interview__item-title-name {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  margin-top: 0.7rem;
}

@media (max-width: 767px) {
  .top-interview__item-title-name {
    font-size: 1.5rem;
    margin-top: 0.4rem;
  }
}

.top-interview__item-img {
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: -3rem 0 0 #042890;
  width: 89.47%;
  margin-left: auto;
  opacity: 0;
}

@media (max-width: 767px) {
  .top-interview__item-img {
    max-width: 15.5rem;
    box-shadow: -1.5rem 0 0 #042890;
  }
}

.top-interview__item-text {
  margin-top: 1.2rem;
}

.top-interview__button {
  text-align: center;
  margin-top: 5.7rem;
}
@media (max-width: 767px) {
  .top-interview__button {
    margin-top: 4.1rem;
  }
}

/*!
page > company > company
------------------------------
*/
.company {
  background-color: #f4f4f4;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .company {
    padding-bottom: 5rem;
  }
}

.company__inner {
  background-color: #fff;
  padding: 9.3rem 6rem 10rem;
}

@media (max-width: 767px) {
  .company__inner {
    padding: 3rem 1rem 4rem;
  }
}

/*!
page > company > company-profile
------------------------------
*/
.company-profile {
  margin-top: 7.3rem;
}

@media (max-width: 767px) {
  .company-profile {
    margin-top: 2.7rem;
  }
}

.company-profile__list {
  display: grid;
  grid-template-columns: 26% 1fr;
  align-items: center;
  padding: 2.51rem 0 2.51rem 2rem;
  border-top: 0.1rem solid #042890;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .company-profile__list {
    grid-template-columns: 40% 1fr;
    align-items: start;
    padding: 2.14rem 1rem 2.14rem 1.5rem;
  }
}

.company-profile__list:last-child {
  border-bottom: 0.1rem solid #042890;
}

.company-profile__term {
  font-weight: bold;
}

@media (max-width: 767px) {
  .company-profile__description {
    align-self: center;
  }
}

.company-profile__address-map {
  display: inline-block;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 0.2rem solid;
  box-shadow: 0.172rem 0.246rem 0.3rem rgb(4 40 144 / 0.5);
  margin-left: 7rem;
  padding: 0 2.5rem;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .company-profile__address-map {
    display: block;
    width: fit-content;
    border: 0.1rem solid;
    box-shadow: 0.086rem 0.123rem 0.15rem rgb(4 40 144 / 0.5);
    margin-left: 0;
    margin-top: 0.4rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .company-profile__email {
    text-decoration: underline;
  }
}

.company-profile__email:hover,
.company-profile__email:focus {
  text-decoration: underline;
}

.company-profile__member-organization {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 16.4rem;
  gap: 0.7rem;
}

@media (max-width: 767px) {
  .company-profile__member-organization {
    grid-template-columns: repeat(1, 15.15rem);
    gap: 0.5rem;
  }
}

@media (max-width: 767px) {
  .company-profile__member-organization-item--team-expo-2025 img {
    width: 12.3rem;
  }
}

/*!
page > history > history
------------------------------
*/
.history {
  background-color: #f4f4f4;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .history {
    padding-bottom: 5rem;
  }
}

.history__inner {
  background-color: #fff;
  padding: 9.3rem 6rem 10rem;
}

@media (max-width: 767px) {
  .history__inner {
    padding: 3rem 1rem 4rem;
  }
}

/*!
page > history > history-list
------------------------------
*/
.history-list {
  margin-top: 7.3rem;
}

@media (max-width: 767px) {
  .history-list {
    margin-top: 2.7rem;
  }
}

.history-list__list {
  display: grid;
  grid-template-columns: 26% 1fr;
  align-items: center;
  padding: 2.75rem 0 2.75rem 2rem;
  border-top: 0.1rem solid #042890;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .history-list__list {
    grid-template-columns: 40% 1fr;
    align-items: start;
    padding: 2.14rem 1rem 2.14rem 1.5rem;
  }
}

.history-list__list:last-child {
  border-bottom: 0.1rem solid #042890;
}

.history-list__term {
  font-weight: bold;
}

@media (max-width: 767px) {
  .history-list__description {
    align-self: center;
  }
}

/*!
page > access > access
------------------------------
*/
.access {
  background-color: #f4f4f4;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .access {
    padding-bottom: 5rem;
  }
}

.access__inner {
  background-color: #fff;
  padding: 9.3rem 6rem 10rem;
}

@media (max-width: 767px) {
  .access__inner {
    padding: 3rem 1rem 4rem;
  }
}

.access__media {
  display: grid;
  grid-template-columns: 1fr 61.1%;
  gap: 4rem;
  margin-top: 7rem;
}

@media (max-width: 767px) {
  .access__media {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4.3rem;
  }
}

.access__company-name {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .access__company-name {
    font-size: 1.8rem;
  }
}

.access__company-address {
  margin-top: 2rem;
  line-height: 2.25;
}

@media (max-width: 767px) {
  .access__company-address {
    margin-top: 1.7rem;
    line-height: 1.5;
  }
}

.access__map iframe {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
}

/*!
page > contact > contact
------------------------------
*/
.contact {
  background-color: #f4f4f4;
  padding: 14rem 0;
}

@media (max-width: 767px) {
  .contact {
    padding: 5rem 0;
  }
}

.contact__inner {
  background-color: #fff;
  padding: 10rem 6rem 8rem;
}

@media (max-width: 767px) {
  .contact__inner {
    padding: 2.4rem 1rem;
  }
}

.contact__status-list {
  display: flex;
  justify-content: space-between;
  max-width: 65rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .contact__status-list {
    max-width: 27rem;
  }
}

.contact__status-list::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  width: 96%;
  margin: auto;
  height: 0.2rem;
  background-color: #eee;
}

.contact__status-item {
  position: relative;
  text-align: center;
}

.contact__status-item::before {
  content: '';
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #eee;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .contact__status-item::before {
    width: 2rem;
    height: 2rem;
  }
}

.contact__status-item--current::before {
  background-color: #042890;
}

/*!
page > contact > contact-form
------------------------------
*/
.contact-form {
  display: none;
}

.contact-form.is-active {
  display: block;
  animation: fade .3s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact-item {
  display: grid;
  grid-template-columns: 24% 1fr;
  gap: 2rem;
  border: 0.1rem solid #042890;
  padding: 1.9rem 2rem;
}

@media (max-width: 767px) {
  .contact-item {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 1.5rem;
  }
}

.contact-item--content {
  margin-top: 10rem !important;
}

@media (max-width: 767px) {
  .contact-item--content {
    margin-top: 2.4rem !important;
  }
}

.contact-item--button {
  grid-template-columns: 1fr;
  border: none;
}

.contact-item:not(:first-child) {
  margin-top: 1.8rem;
}

@media (max-width: 767px) {
  .contact-item:not(:first-child) {
    margin-top: 2rem;
  }
}

.contact-item__fieldset {
  display: contents;
}

.contact-item__legend {
  display: contents;
}

.contact-item__label-text {
  font-weight: bold;
}

.contact-item__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 3rem;
  font-weight: bold;
  text-align: center;
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .contact-item__label {
    width: 5rem;
    height: 2.5rem;
  }
}

.contact-item__label--required {
  background-color: #042890;
  color: #FFFFFF;
}

.contact-item__label--optional {
  background-color: #EEEEEE;
  color: #042890;
}

.contact-item__radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 767px) {
  .contact-item__radio-wrap {
    gap: 1.5rem;
    flex-direction: column;
  }
}

.contact-item__radio {
  position: relative;
}

.contact-item__radio-text {
  position: relative;
  cursor: pointer;
}

.contact-item__radio-shape {
  opacity: 0;
  position: absolute;
}

.contact-item__radio-shape + span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-item__radio-shape + span::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border: 0.1rem solid #042890;
  border-radius: 9999px;
  flex-shrink: 0;
}

.contact-item__radio-shape:checked + span::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: #042890;
  position: absolute;
  left: 0.4rem;
  border-radius: 9999px;
}

.contact-item__checkbox-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 767px) {
  .contact-item__checkbox-wrap {
    gap: 1.45rem 1.1rem;
  }
}

.contact-item__checkbox {
  position: relative;
}

.contact-item__checkbox-text {
  position: relative;
  cursor: pointer;
}

.contact-item__checkbox-shape {
  opacity: 0;
  height: 1px;
  width: 1px;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.contact-item__checkbox-shape + span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

@media (max-width: 767px) {
  .contact-item__checkbox-shape + span {
    gap: 0.8rem;
  }
}

.contact-item__checkbox-shape + span::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border: 0.1rem solid #042890;
  border-radius: 0.3rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .contact-item__checkbox-shape + span::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.contact-item__checkbox-shape:checked + span::before {
  background-color: #0275FF;
  border: 0.1rem solid #0275FF;
}

.contact-item__checkbox-shape:checked + span::after {
  content: "";
  width: 1.6rem;
  height: 1rem;
  border-bottom: 0.3rem solid #fff;
  border-left: 0.3rem solid #fff;
  position: absolute;
  left: 0.4rem;
  top: -0.1rem;
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .contact-item__checkbox-shape:checked + span::after {
    width: 1.8rem;
    height: 1rem;
    left: 0.3rem;
    top: -0.6rem;
  }
}

.contact-item__note {
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .contact-item__note {
    margin-bottom: 1.4rem;
  }
}

.contact-item__note + .contact-item__note {
  margin-top: -1rem;
}

.contact-item__text + .contact-item__text {
  margin-top: 1rem;
}

.contact-item__textarea {
  height: 16rem;
}

@media (max-width: 767px) {
  .contact-item__textarea {
    height: 15rem;
  }
}

.upfile__item + .upfile__item {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .upfile__item + .upfile__item {
    margin-top: 2rem;
  }
}

.contact-button-wrap {
  text-align: center;
}

.contact-button {
  border-radius: 2rem;
  background-color: #042890;
  box-shadow: 0.344rem 0.5rem 0.564rem 0.036rem rgb(4 40 144 / 0.3);
  max-width: 50rem;
  display: inline-block;
  width: 100%;
  padding: 2.3rem 1rem;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .contact-button {
    border-radius: 1rem;
    box-shadow: none;
    max-width: 29.5rem;
    padding: 0.9rem 0.65rem;
    font-size: 1.8rem;
  }
}

.error-text {
  display: block;
  color: red;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/*!
page > contact > thanks > contact-message
------------------------------
*/
.contact-message {
  margin-top: 10rem;
}

.contact-message__text * + * {
  margin-top: 3px;
}

.contact-message__button {
  margin-top: 3.7rem;
}

/*!
page > recruit > recruit-mv
------------------------------
*/
.recruit-mv {
  background-image: url(../img/bg_recruit_mv.jpg);
  background-size: cover;
  background-position: right;
  height: 70rem;
  padding-top: 20rem;
}

@media (max-width: 767px) {
  .recruit-mv {
    background-image: url(../img/bg_recruit_mv_sp.jpg);
    background-position: center;
    height: 40rem;
    padding-top: 11rem;
  }
}

.recruit-mv__title {
  position: relative;
  margin-left: 6rem;
}

@media (max-width: 767px) {
  .recruit-mv__title {
    margin-left: 1rem;
  }
}

.recruit-mv__title-main {
  font-size: 7.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .recruit-mv__title-main {
    font-size: 3.6rem;
  }
}

.recruit-mv__title-sub {
  mix-blend-mode: multiply;
  position: absolute;
  top: -13rem;
}

@media (max-width: 767px) {
  .recruit-mv__title-sub {
    top: -3.5rem;
    max-width: 27.6rem;
  }
}

.recruit-mv__copy {
  background-color: rgb(255 255 255 / 0.6);
  max-width: 86rem;
  padding: 3.8rem 6rem;
  margin-top: 1.7rem;
}

@media (max-width: 767px) {
  .recruit-mv__copy {
    padding: 0.7rem 1rem;
    max-width: 20rem;
    margin-top: 13rem;
  }
}

@media (max-width: 767px) {
  .recruit-mv__copy img {
    max-width: 17.25rem;
    vertical-align: text-top;
  }
}

/*!
page > recruit > recruit-idea
------------------------------
*/
@media (max-width: 767px) {
  .recruit-idea {
    padding: 2rem 1rem;
  }
}

.recruit-idea__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .recruit-idea__media {
    grid-template-columns: 1fr;
  }
}

.recruit-idea__content {
  padding: 5rem 0 5rem 6rem;
}

@media (max-width: 767px) {
  .recruit-idea__content {
    padding: 0;
  }
}

.recruit-idea__text {
  font-weight: bold;
  font-size: 3rem;
  margin-top: 5.5rem;
}

@media (max-width: 767px) {
  .recruit-idea__text {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}

/*!
page > recruit > recruit-flow
------------------------------
*/
.recruit-flow {
  margin-top: 21rem;
}

@media (max-width: 767px) {
  .recruit-flow {
    margin-top: 5.8rem;
  }
}

.recruit-flow__lead {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .recruit-flow__lead {
    margin-top: 2rem;
  }
}

.recruit-flow__illust {
  margin-top: 4.4rem;
}

@media (max-width: 767px) {
  .recruit-flow__illust {
    margin: 2rem auto 0;
    max-width: 30rem;
  }
}

.recruit-flow__picture {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 7rem;
}

@media (max-width: 767px) {
  .recruit-flow__picture {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.4rem;
  }
}

.recruit-flow__picture-item {
  justify-self: end;
  border-radius: 9999px;
  max-width: 35rem;
  overflow: hidden;
  box-shadow: -3rem 0 0 #042890;
  opacity: 0;
}

@media (max-width: 767px) {
  .recruit-flow__picture-item {
    max-width: 16rem;
    box-shadow: -1.5rem 0 0 #042890;
  }
}

@media (max-width: 767px) {
  .recruit-flow__picture-item:first-child {
    grid-column: span 2;
    justify-self: center;
    margin-left: 1.5rem;
  }
}

.recruit-flow__text {
  font-weight: bold;
  font-size: 3rem;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .recruit-flow__text {
    font-size: 1.2rem;
    margin-top: 1.8rem;
  }
}

/*!
page > recruit > recruit-about
------------------------------
*/
.recruit-about {
  margin-top: 10.5rem;
}

@media (max-width: 767px) {
  .recruit-about {
    margin-top: 4.5rem;
  }
}

.recruit-about__lead {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .recruit-about__lead {
    margin-top: 2.3rem;
  }
}

.recruit-about__ceo {
  display: grid;
  grid-template-columns: 1fr 53rem;
  align-items: center;
  gap: 8.2rem;
  margin-top: 4.6rem;
}

@media (max-width: 767px) {
  .recruit-about__ceo {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3.4rem;
  }
}

.recruit-about__ceo-name {
  line-height: 1;
}

.recruit-about__ceo-name-sub {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .recruit-about__ceo-name-sub {
    font-size: 1.2rem;
  }
}

.recruit-about__ceo-name-main {
  display: block;
  font-size: 6rem;
  font-weight: bold;
  margin-top: 1.6rem;
}

@media (max-width: 767px) {
  .recruit-about__ceo-name-main {
    font-size: 2.1rem;
    margin-top: 1.2rem;
  }
}

.recruit-about__ceo-text {
  font-size: 2.4rem;
  margin-top: 4.8rem;
}

@media (max-width: 767px) {
  .recruit-about__ceo-text {
    font-size: 1.2rem;
    margin-top: 3.4rem;
  }
}

.recruit-about__ceo-img {
  justify-self: end;
  border-radius: 9999px;
  max-width: 53rem;
  overflow: hidden;
  box-shadow: -6rem 0 0 #042890;
  opacity: 0;
}

@media (max-width: 767px) {
  .recruit-about__ceo-img {
    justify-self: center;
    box-shadow: -3rem 0 0 #042890;
    max-width: 26.7rem;
    margin-top: 0.8rem;
    translate: 1.7rem 0;
  }
}

/*!
page > recruit > recruit-service
------------------------------
*/
.recruit-service {
  margin-top: 11.7rem;
}

@media (max-width: 767px) {
  .recruit-service {
    margin-top: 4.6rem;
  }
}

.recruit-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6.2rem;
}

@media (max-width: 767px) {
  .recruit-service__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.6rem;
    margin-top: 3rem;
  }
}

.recruit-service__item {
  display: flex;
  flex-direction: column;
}

.recruit-service__item-title {
  border-left: 5px solid #90acbf;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 2.5rem;
  padding: 0 1rem 0.5rem 1rem;
}

@media (max-width: 767px) {
  .recruit-service__item-title {
    padding-bottom: 0.8rem;
  }
}

.recruit-service__item-title-main {
  font-size: 2.4rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .recruit-service__item-title-main {
    font-size: 2.1rem;
  }
}

.recruit-service__item-title-sub {
  color: #90acbf;
  font-size: 1.6rem;
  margin-top: 0.8rem;
}

@media (max-width: 767px) {
  .recruit-service__item-title-sub {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}

.recruit-service__item-thumbnail {
  order: -1;
}

.recruit-service__item-text {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .recruit-service__item-text {
    margin-top: 0.3rem;
  }
}

.recruit-service__button {
  margin-top: 5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .recruit-service__button {
    margin-top: 3.5rem;
  }
}

/*!
page > recruit > recruit-job-information
------------------------------
*/
.recruit-job-information {
  margin-top: 11.5rem;
}

@media (max-width: 767px) {
  .recruit-job-information {
    margin-top: 4.8rem;
  }
}

.recruit-job-information__lead {
  margin-top: 3.8rem;
}

@media (max-width: 767px) {
  .recruit-job-information__lead {
    margin-top: 2.5rem;
  }
}

.recruit-job-information__text {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 0.4rem;
}

@media (max-width: 767px) {
  .recruit-job-information__text {
    font-size: 1.2rem;
    margin-top: 1.8rem;
  }
}

.recruit-job-information__link-text-wrap {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .recruit-job-information__link-text-wrap {
    font-size: 1.2rem;
    margin-top: 0.7rem;
  }
}

.recruit-job-information__link-text {
  color: #00c0ff;
}

.recruit-job-information__link-text:hover {
  text-decoration: underline;
}

.recruit-job-information__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5.8rem;
}

@media (max-width: 767px) {
  .recruit-job-information__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.recruit-job-information__button {
  color: #fff;
  background-color: #042890;
  display: inline-block;
  padding: 2rem 1rem;
  border-radius: 2rem;
  text-align: center;
  max-width: 28.5rem;
  width: 100%;
  box-shadow: 0.6rem 0.6rem 0.6rem rgb(4 40 144 / 0.3);
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .recruit-job-information__button {
    padding: 1.2rem 0 0.4rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.3rem rgb(4 40 144 / 0.3);
  }
}

.recruit-job-information__button:hover,
.recruit-job-information__button:focus {
  opacity: 0.7;
}

.recruit-job-information__button--disabled {
  background-color: #c2c2c2;
  box-shadow: none;
  pointer-events: none;
}

.recruit-job-information__button-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .recruit-job-information__button-title {
    font-size: 1.5rem;
    line-height: 1;
  }
}

.recruit-job-information__button-text {
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .recruit-job-information__button-text {
    font-size: 1rem;
  }
}

.recruit-job-information__button-entry {
  font-size: 2.4rem;
  margin-top: 0.2rem;
}

@media (max-width: 767px) {
  .recruit-job-information__button-entry {
    font-size: 1.2rem;
    margin-top: 0;
  }
}

/*!
page > recruit > sales > sales-mv
------------------------------
*/
.sales-mv {
  display: grid;
  place-items: center;
  padding-top: 7.6rem;
  height: 50rem;
  color: #333;
  background-image: url(../img/bg_sales_mv.jpg);
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .sales-mv {
    padding-top: 7rem;
    height: 26.5rem;
    background-image: url(../img/bg_sales_mv_sp.jpg);
  }
}

.sales-mv__title {
  text-align: center;
}

.sales-mv__title-main {
  font-size: 7.2rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .sales-mv__title-main {
    font-size: 3.6rem;
  }
}

.sales-mv__title-sub {
  font-size: 3.6rem;
  font-weight: bold;
  position: relative;
  padding: 0 3.6rem;
}

@media (max-width: 767px) {
  .sales-mv__title-sub {
    font-size: 1.8rem;
    padding: 0 1.8rem;
  }
}

.sales-mv__title-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #333;
}

@media (max-width: 767px) {
  .sales-mv__title-sub::before {
    height: 0.25rem;
  }
}

/*!
page > recruit > sales > sales-intro
------------------------------
*/
.sales-intro {
  margin-top: 7.1rem;
}

@media (max-width: 767px) {
  .sales-intro {
    margin-top: 4.5rem;
  }
}

.sales-intro__copy {
  text-align: center;
}

@media (max-width: 768px) {
  .sales-intro__copy {
    max-width: 30rem;
    margin-inline: auto;
  }
}

.sales-intro__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 6.8rem;
}

@media (max-width: 767px) {
  .sales-intro__media {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.7rem;
    margin-top: 5rem;
  }
}

.sales-intro__text {
  font-size: 2.4rem;
  line-height: 2.25;
  color: #333;
  text-box: trim-both text;
  padding-top: 1rem;
}

@media (max-width: 767px) {
  .sales-intro__text {
    font-size: 1.2rem;
    line-height: 1.8;
    padding-top: 0;
  }
}

/*!
page > recruit > sales > sales-work
------------------------------
*/
.sales-work {
  margin-top: 7.5rem;
}

@media (max-width: 767px) {
  .sales-work {
    margin-top: 4.6rem;
  }
}

.sales-work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6.2rem;
}

@media (max-width: 767px) {
  .sales-work__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.4rem;
    margin-top: 3rem;
  }
}

.sales-work__item-title-wrap {
  display: grid;
  place-items: center;
  width: min(100%, 38rem);
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  padding: 3rem;
  background-color: #e9e7df;
  border: 0.5rem solid;
}

@media (max-width: 767px) {
  .sales-work__item-title-wrap {
    width: 19rem;
    height: 19rem;
    padding: 1.5rem;
    border-width: 0.25rem;
    margin-inline: auto;
  }
}

.sales-work__item-title {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .sales-work__item-title {
    font-size: 1.8rem;
  }
}

.sales-work__item-text {
  font-size: 2.4rem;
  color: #333;
  line-height: 2.25;
  margin-top: 2.4rem;
}

@media (max-width: 767px) {
  .sales-work__item-text {
    font-size: 1.2rem;
    margin-top: 1.3rem;
    line-height: 1.8;
  }
}

/*!
page > recruit > sales > sales-appeal
------------------------------
*/
.sales-appeal {
  margin-top: 8rem;
}

@media (max-width: 767px) {
  .sales-appeal {
    margin-top: 5.4rem;
  }
}

.sales-appeal-list {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .sales-appeal-list {
    margin-top: 2.5rem;
  }
}

.sales-appeal-item:not(:first-child) {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 0.2rem solid #042890;
}

@media (max-width: 767px) {
  .sales-appeal-item:not(:first-child) {
    margin-top: 2rem;
    padding-top: 2.5rem;
  }
}

.sales-appeal-item-title {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.5;
  border-bottom: 0.2rem solid;
  padding-bottom: 1rem;
  display: inline;
}

@media (max-width: 767px) {
  .sales-appeal-item-title {
    font-size: 1.8rem;
    border-bottom: 0.1rem solid;
    padding-bottom: 0.5rem;
  }
}

.sales-appeal-item-text {
  font-size: 2.4rem;
  line-height: 2.25;
  color: #333;
}

@media (max-width: 767px) {
  .sales-appeal-item-text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.sales-appeal-item-title + .sales-appeal-item-text {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .sales-appeal-item-title + .sales-appeal-item-text {
    margin-top: 1.7rem;
  }
}

.sales-appeal-item__media-wrap {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-wrap {
    margin-top: 2.5rem;
  }
}

.sales-appeal-item__media {
  display: flex;
  gap: 2rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.sales-appeal-item__media + .sales-appeal-item__media {
  flex-direction: row-reverse;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media + .sales-appeal-item__media {
    flex-direction: column;
    margin-top: 1.6rem;
  }
}

.sales-appeal-item__media-content {
  width: calc((100% - 2rem) / 2);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-content {
    width: 100%;
  }
}

.sales-appeal-item__media-img-wrap {
  width: calc((100% - 2rem) / 2);
}

@media (max-width: 768px) {
  .sales-appeal-item__media-img-wrap {
    width: 100%;
  }
}

.sales-appeal-item__media-img-title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.9285;
  color: #fff;
  text-align: center;
  background-color: #6ebad0;
  padding: 0.8rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-img-title {
    font-size: 1.8rem;
    padding: 0.3rem;
  }
}

.sales-appeal-item__media-img-title + .sales-appeal-item__media-img {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-img-title + .sales-appeal-item__media-img {
    margin-top: 0.7rem;
  }
}

.sales-appeal-item__media-table-wrap {
  width: calc((100% - 2rem) / 2);
  padding-top: 1.2rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-table-wrap {
    width: 100%;
    padding-top: 0;
  }
}

.sales-appeal-item__media-table {
  width: 100%;
}

.sales-appeal-item__media-table-caption {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.9285;
  color: #fff;
  text-align: center;
  background-color: #6ebad0;
  margin-bottom: 1.2rem;
  padding: 0.7rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-table-caption {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
    padding: 1rem;
  }
}

.sales-appeal-item__media-table-row:not(:first-child) {
  border-top: 0.4rem solid #fff;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-table-row:not(:first-child) {
    border-top: 0.35rem solid #fff;
  }
}

.sales-appeal-item__media-table-header {
  text-align: center;
  color: #fff;
  background-color: #757575;
  width: 50%;
  padding: 1.3rem;
  font-weight: bold;
  font-size: 2.8rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-table-header {
    padding: 0.2rem;
    font-size: 1.8rem;
  }
}

.sales-appeal-item__media-table-header:nth-child(1) {
  border-right: 0.2rem solid #fff;
}

.sales-appeal-item__media-table-header:nth-child(2) {
  border-left: 0.2rem solid #fff;
}

.sales-appeal-item__media-table-data {
  text-align: center;
  color: #333;
  background-color: #d3f0f9;
  width: 50%;
  padding: 0.4rem;
  font-size: 2.4rem;
  margin: 1rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__media-table-data {
    padding: 0.25rem;
    font-size: 1.4rem;
  }
}

.sales-appeal-item__media-table-data:nth-child(1) {
  border-right: 0.2rem solid #fff;
}

.sales-appeal-item__media-table-data:nth-child(2) {
  border-left: 0.2rem solid #fff;
}

.sales-appeal-item__graph {
  margin-top: 5.2rem;
}

@media (max-width: 767px) {
  .sales-appeal-item__graph {
    margin-top: 1.5rem;
  }
}

.sales-appeal-graph-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .sales-appeal-graph-list {
    grid-template-columns: 1fr;
  }
}

.sales-appeal-graph__title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.9285;
  color: #fff;
  text-align: center;
  background-color: #6ebad0;
  padding: 0.8rem;
}

@media (max-width: 767px) {
  .sales-appeal-graph__title {
    font-size: 1.8rem;
    padding: 0.3rem;
  }
}

.sales-appeal-graph__img {
  text-align: center;
  margin-top: 2rem;
}

/*!
page > recruit > sales > sales-interview
------------------------------
*/
.sales-interview {
  background-color: #eefbff;
  margin-top: 7rem;
  padding: 9.5rem 0 7rem;
}

@media (max-width: 767px) {
  .sales-interview {
    margin-top: 4.3rem;
    padding: 4rem 0 3.2rem;
  }
}

.sales-interview__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

@media (max-width: 767px) {
  .sales-interview__list {
    margin-top: 4rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.7rem 1rem;
  }
}

.sales-interview__link {
  display: block;
}

.sales-interview__item-img {
  border-radius: 9999px;
  overflow: hidden;
  border: 0.4rem solid transparent;
}

@media (max-width: 767px) {
  .sales-interview__item-img {
    border: 0;
  }
}

.sales-interview__link:hover .sales-interview__item-img {
  border-color: #042890;
}

.sales-interview__item-content {
  text-align: center;
  margin-top: 3.2rem;
}

@media (max-width: 767px) {
  .sales-interview__item-content {
    margin-top: 0.6rem;
  }
}

.sales-interview__item-division {
  display: block;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .sales-interview__item-division {
    font-size: 1.2rem;
  }
}

.sales-interview__item-name {
  display: block;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: calc(54 / 36);
}

@media (max-width: 767px) {
  .sales-interview__item-name {
    font-size: 2.4rem;
  }
}

.sales-interview__item-joining {
  display: block;
  font-size: 1.8rem;
  line-height: calc(54 / 18);
}

@media (max-width: 767px) {
  .sales-interview__item-joining {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

/*!
page > recruit > sales > sales-interview
------------------------------
*/
.sales-message {
  margin-top: 24.5rem;
}

@media (max-width: 767px) {
  .sales-message {
    margin-top: 10rem;
  }
} 

.sales-message__text-wrap {
  margin-top: 6.8rem;
}

@media (max-width: 767px) {
  .sales-message__text-wrap {
    margin-top: 2.3rem;
  }
}

.sales-message__text {
  font-size: 2.4rem;
  line-height: calc(54 / 24);
  color: #333;
}

@media (max-width: 767px) {
  .sales-message__text {
    font-size: 1.2rem;
    line-height: calc(43.2 / 24);
  }
}

/*!
page > recruit > sales > sales-interview
------------------------------
*/
.sales-flow {
  background-color: #eefbff;
  margin-top: 8.5rem;
  padding: 9.5rem 0 20rem;
}

@media (max-width: 767px) {
  .sales-flow {
    margin-top: 4.3rem;
    padding: 5.2rem 0 5rem;
  }
}

.sales-flow__flow {
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .sales-flow__flow {
    margin-top: 2.4rem;
    padding: 0 1rem;
  }
}

.sales-flow__flow-item {
  background-color: #fff;
  padding: 2.6rem 4rem 3.3rem 4rem;
  position: relative;
}

@media (max-width: 767px) {
  .sales-flow__flow-item {
    padding: 1.4rem 2rem 2.6rem 2rem;
  }
}

.sales-flow__flow-item:not(:first-child) {
  margin-top: 5.4rem;
}

.sales-flow__flow-item:not(:first-child)::before {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(../img/icon_sales_flow.png);
  background-size: contain;
  background-position: center;
  width: 0.4rem;
  height: 3.2rem;
  top: -4.3rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .sales-flow__flow-item:not(:first-child)::before {
    width: 0.4rem;
    height: 3.2rem;
    top: -4.2rem;
  }
}

.sales-flow__flow-item-title {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: calc(57 / 36);
  text-align: center;
}

@media (max-width: 767px) {
  .sales-flow__flow-item-title {
    font-size: 1.8rem;
  }
}

.sales-flow__flow-item-text {
  margin-top: 1.5rem;
  font-size: 2.4rem;
  line-height: calc(54 / 24);
  color: #333;
}

@media (max-width: 767px) {
  .sales-flow__flow-item-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: calc(43.2 / 24);
  }
}

/*!
page > recruit > sales > sales-recruit
------------------------------
*/
.sales-recruit {
  margin-top: 24.3rem;
}

@media (max-width: 767px) {
  .sales-recruit {
    margin-top: 10rem;
  }
}

.sales-recruit__list-wrap {
  margin-top: 6.7rem;
}

@media (max-width: 767px) {
  .sales-recruit__list-wrap {
    margin-top: 2.3rem;
  }
}

.sales-recruit__list {
  font-size: 2.4rem;
  line-height: calc(54 / 24);
  position: relative;
  color: #333;
}

@media (max-width: 767px) {
  .sales-recruit__list {
    font-size: 1.2rem;
    line-height: calc(43.2 / 24);
  }
}

.sales-recruit__list--salary::after {
  content: '';
  position: absolute;
  display: block;
  background-image: url(../img/img_sales_recruit.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18rem;
  height: 16.8rem;
  top: 1.7rem;
  right: 6rem;
}

@media (max-width: 1199px) {
  .sales-recruit__list--salary::after {
    position: static;
    margin: 2.1rem auto 2.5rem;
  }
}

@media (max-width: 767px) {
  .sales-recruit__list--salary::after {
    width: 9rem;
    height: 8.4rem;
    margin: 2.1rem auto 2.5rem;
  }
}

.sales-recruit__term {
  font-weight: normal;
}

.sales-recruit__term::before {
  content: '■';
}

/*!
page > recruit > sales > sales-process
------------------------------
*/
.sales-process {
  margin-top: 10.5rem;
}

@media (max-width: 767px) {
  .sales-process {
    margin-top: 3.5rem;
  }
}

.sales-process__lead {
  font-size: 2.4rem;
  line-height: calc(54 / 24);
  color: #333;
  margin-top: 5.2rem;
}

@media (max-width: 767px) {
  .sales-process__lead {
    font-size: 1.2rem;
    line-height: calc(43.2 / 24);
    margin-top: 2.3rem;
  }
}

.sales-process__flow {
  counter-reset: number;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 4rem;
  height: 19rem;
  background-image: url(../img/bg_sales_process_flow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .sales-process__flow {
    background-image: url(../img/bg_sales_process_flow_sp.png);
    margin-top: 1.5rem;
    height: 9.5rem;
  }
}

.sales-process__flow-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 2rem;
}

@media (max-width: 767px) {
  .sales-process__flow-item {
    padding: 1.2rem 0 1.2rem 0.8rem;
  }
}

.sales-process__flow-item-number {
  background-color: #000;
  width: fit-content;
  margin-inline: auto;
  padding: 0.5rem 1.5rem;
}

@media (max-width: 767px) {
  .sales-process__flow-item-number {
    padding: 0.2rem 0.8rem;
  }
}

.sales-process__flow-item-step {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .sales-process__flow-item-step {
    font-size: 1.2rem;
  }
}

.sales-process__flow-item-step::after {
  counter-increment: number;
  content: ":" counter(number);
}

.sales-process__flow-item-text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: calc(36 / 24);
  color: #000;
  text-align: center;
  align-self: center;
  margin-top: 0.6rem;
}

@media (max-width: 767px) {
  .sales-process__flow-item-text {
    font-size: 1.2rem;
    line-height: calc(36 / 24);
    margin-top: 0.5rem;
  }
}

.sales-process__button {
  margin-top: 10rem;
  text-align: center;
}

@media (max-width: 767px) {
  .sales-process__button {
    margin-top: 5.7rem;
  }
}

/*!
page > recruit > sales > interview > interview-mv
------------------------------
*/
.interview-mv {
  background-size: cover;
  background-position: center;
  height: 50rem;
  color: #333;
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .interview-mv {
    height: 26.5rem;
  }
}

.interview-mv--taguchi {
  background-image: url(../img/bg_interview_mv_taguchi.jpg);
}

@media (max-width: 767px) {
  .interview-mv--taguchi {
    background-image: url(../img/bg_interview_mv_taguchi_sp.jpg);
  }
}

.interview-mv--furuyama {
  background-image: url(../img/bg_interview_mv_furuyama.jpg);
}

@media (max-width: 767px) {
  .interview-mv--furuyama {
    background-image: url(../img/bg_interview_mv_furuyama_sp.jpg);
  }
}

.interview-mv--watanabe {
  background-image: url(../img/bg_interview_mv_watanabe.jpg);
}

@media (max-width: 767px) {
  .interview-mv--watanabe {
    background-image: url(../img/bg_interview_mv_watanabe_sp.jpg);
  }
}

.interview-mv--yanagisawa {
  background-image: url(../img/bg_interview_mv_yanagisawa.jpg);
}

@media (max-width: 767px) {
  .interview-mv--yanagisawa {
    background-image: url(../img/bg_interview_mv_yanagisawa_sp.jpg);
  }
}

.interview-mv__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 81rem;
  padding-top: 4rem;
}

@media (max-width: 767px) {
  .interview-mv__content {
    max-width: 25.5rem;
    padding-top: 2.3rem;
  }
}

.interview-mv__title {
  text-align: center;
}

.interview-mv__title-main {
  max-width: 69.4rem;
  margin-inline: auto;
  mix-blend-mode: multiply;
}

.interview-mv__profile {
  width: fit-content;
  margin: 2rem auto 0;
  text-align: center;
}

@media (max-width: 767px) {
  .interview-mv__profile {
    margin: 1.2rem auto 0;
  }
}

.interview-mv__profile-division {
  font-weight: bold;
  font-size: 2.4rem;
  display: block;
}

@media (max-width: 767px) {
  .interview-mv__profile-division {
    font-size: 1.2rem;
  }
}

.interview-mv__profile-name {
  display: block;
  border-top: 0.4rem solid #333;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

@media (max-width: 767px) {
  .interview-mv__profile-name {
    border-top: 0.2rem solid #333;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
  }
}

.interview-mv__profile-name-main {
  display: block;
  line-height: 1;
  font-weight: bold;
  font-size: 6rem;
}

@media (max-width: 767px) {
  .interview-mv__profile-name-main {
    font-size: 3rem;
  }
}

.interview-mv__profile-name-sub {
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .interview-mv__profile-name-sub {
    font-size: 0.9rem;
  }
}

/*!
page > recruit > sales > interview > interview
------------------------------
*/
.interview-list {
  margin-top: 4.8rem;
}

@media (max-width: 767px) {
  .interview-list {
    margin-top: 2.5rem;
  }
}

.interview:not(:first-child) {
  margin-top: 5.2rem;
}

@media (max-width: 767px) {
  .interview:not(:first-child) {
    margin-top: 2rem;
  }
}

.interview__title {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.5;
  border-bottom: 0.2rem solid;
  padding-bottom: 1rem;
  display: inline;
}

@media (max-width: 767px) {
  .interview__title {
    font-size: 1.8rem;
    border-bottom: 0.1rem solid;
    padding-bottom: 0.5rem;
  }
}

.interview__text {
  font-size: 1.8rem;
  line-height: calc(32.4 / 18);
  color: #333;
}

@media (max-width: 767px) {
  .interview__text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.interview__title + .interview__text {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .interview__title + .interview__text {
    margin-top: 1.7rem;
  }
}

.interview__media {
  display: flex;
  gap: 2rem;
}

@media (max-width: 767px) {
  .interview__media {
    flex-direction: column;
    gap: 2.8rem;
  }
}

.interview__media--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .interview__media--reverse {
    flex-direction: column;
  }
}

.interview__body {
  width: calc((100% - 2rem) / 2);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .interview__body {
    width: 100%;
  }
}

.interview__img {
  width: calc((100% - 2rem) / 2);
}

@media (max-width: 768px) {
  .interview__img {
    width: 100%;
  }
}

/*!
page > recruit > sales > interview > interview-cta
------------------------------
*/
.interview-cta {
  margin-top: 10rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .interview-cta {
    margin-top: 5.3rem;
  }
}

/*!
page > service > service
------------------------------
*/
.service {
  margin-top: 9.5rem;
}

@media (max-width: 767px) {
  .service {
    margin-top: 5rem;
  }
}

.service__lead {
  margin-top: 3.8rem;
}

@media (max-width: 767px) {
  .service__lead {
    margin-top: 1.4rem;
  }
}

.service__body {
  margin-top: 8.8rem;
}

@media (max-width: 767px) {
  .service__body {
    margin-top: 4.5rem;
  }
}

.service-list {
  padding: 9.3rem 0 15rem;
  background-color: #F2F7FF;
}

@media (max-width: 767px) {
  .service-list {
    padding: 4.7rem 0;
  }
}

.service-item:not(:first-child) {
  margin-top: 9.5rem;
}

@media (max-width: 767px) {
  .service-item:not(:first-child) {
    margin-top: 4.6rem;
  }
}

.service-item__title {
  border-left: 5px solid #90acbf;
  letter-spacing: 0.09em;
  line-height: 1.3;
  padding: 0 1rem 0.5rem 1rem;
}

@media (max-width: 767px) {
  .service-item__title {
    padding-bottom: 0.8rem;
  }
}

.service-item__title-main {
  font-size: 3rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .service-item__title-main {
    font-size: 2.1rem;
  }
}

.service-item__title-sub {
  color: #90acbf;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .service-item__title-sub {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}

.service-item__lead {
  font-size: 1.8rem;
  margin-top: 2.3rem;
}

@media (max-width: 767px) {
  .service-item__lead {
    font-size: 1.2rem;
    margin-top: 0.7rem;
  }
}

.service-item__body {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .service-item__body {
    margin-top: 2rem;
  }
}

.service-card-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .service-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

.service-card--recommend {
  grid-row: 1 / 4;
  grid-column: 1 / 3;
}

@media (max-width: 767px) {
  .service-card--recommend {
    grid-row: initial;
  }
}

.service-card__link {
  padding: 0.7rem;
  border: 0.1rem solid #C2C2C2;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 767px) {
  .service-card__link {
    padding: 0.9rem;
  }
}

.service-card--recommend .service-card__link {
  padding: 1.9rem;
  height: 100%;
}

@media (max-width: 767px) {
  .service-card--recommend .service-card__link {
    padding: 0.9rem;
  }
}

.service-card__link::before,
.service-card__link::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: "";
  opacity: 0;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.service-card__link::before {
  top: 0;
  left: 0;
  border-top: 0.2rem solid #3f5bab;
  border-left: 0.2rem solid #3f5bab;
}

.service-card__link::after {
  right: 0;
  bottom: 0;
  border-right: 0.2rem solid #3f5bab;
  border-bottom: 0.2rem solid #3f5bab;
}

.service-card__link:hover::before,
.service-card__link:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.service-card__content {
  order: 1;
  margin-top: 0.6rem;
}

@media (max-width: 767px) {
  .service-card__content {
    display: flex;
    flex-direction: column;
  }
}

.service-card__title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: center;
}

.service-card--recommend .service-card__title {
  text-align: left;
}

.service-card__title-main {
  order: 1;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

@media (max-width: 767px) {
  .service-card__title-main {
    font-size: 1.2rem;
  }
}

.service-card--recommend .service-card__title-main {
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .service-card--recommend .service-card__title-main {
    font-size: 2.1rem;
  }
}

.service-card__title-sub {
  font-weight: bold;
  margin: 0.5rem 0 1rem;
}

@media (max-width: 767px) {
  .service-card__img img {
    height: 100%;
    object-fit: cover;
  }
}

.service-card__description {
  margin-top: 2.4rem;
  color: #333;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .service-card__description {
    font-size: 1.2rem;
    margin-top: 0.7rem;
  }
}

/*!
page > service > service-historic-card
------------------------------
*/
.service-historic-card-wrapper {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .service-historic-card-wrapper {
    margin-top: 1.7rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.service-historic-card__link {
  padding: 1.9rem;
  border: 0.1rem solid #C2C2C2;
  display: grid;
  position: relative;
  color: #333;
}

@media (max-width: 767px) {
  .service-historic-card__link {
    padding: 1rem;
  }
}

.service-historic-card__link::before,
.service-historic-card__link::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: "";
  opacity: 0;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.service-historic-card__link::before {
  top: 0;
  left: 0;
  border-top: 0.2rem solid #3f5bab;
  border-left: 0.2rem solid #3f5bab;
}

.service-historic-card__link::after {
  right: 0;
  bottom: 0;
  border-right: 0.2rem solid #3f5bab;
  border-bottom: 0.2rem solid #3f5bab;
}

.service-historic-card__link:hover::before,
.service-historic-card__link:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.service-historic-card__content {
  order: 1;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .service-historic-card__content {
    display: flex;
    flex-direction: column;
    margin-top: 1.2rem;
  }
}

.service-historic-card__title {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.service-historic-card__title-main {
  order: 1;
  font-size: 2.4rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .service-historic-card__title-main {
    font-size: 2.1rem;
  }
}

@media (max-width: 767px) {
  .service-historic-card__img img {
    height: 100%;
    object-fit: cover;
  }
}

.service-historic-card__description {
  margin-top: 1.5rem;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .service-historic-card__description {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}
