/*
Theme Name: KANKOKISEN RECRUITING SITE
Author: Rooms inc.
Description: Created in 2023
Version: 1.0
*/


@charset "UTF-8";
/* ---------------------------
  A Modern CSS Reset
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

ul {
  padding: 0;
}

ul, ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --red: #b61525;
  --wineRed: #940004;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #cccccc;
  --beige: #f9f8f4;
  --baseColor: var(--red);
  --bgMainColor: var(--wineRed);
  --bgSubColor: var(--beige);
  --fontMainColor: var(--black);
  --borderMainColor: var(--gray);
  --jaFont: "Noto Sans JP", sans-serif;
  --enFont: "メイリオ","Meiryo","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3",sans-serif;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--jaFont);
  font-weight: 400;
  color: var(--fontMainColor);
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
}

html.is_not_scroll, body.is_not_scroll {
  overflow: hidden;
}

body > footer {
  position: sticky;
  top: 100vh;
}

a {
  color: var(--fontMainColor);
  text-decoration: none;
}

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

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  margin: 0 auto;
  max-width: 1480px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp {
    display: inline;
  }
}

/* ---------------------------
  component
----------------------------- */
:root .c-newtab {
  display: flex;
  align-items: center;
  gap: 8px;
}
:root .c-newtab::after {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  background-image: url(../img/common/newtab_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
:root .c-newtab--white::after {
  background-image: url(../img/common/newtab_white.svg);
}

.c-outerlink {
  max-width: 225px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  gap: 8px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .c-outerlink:hover {
    opacity: 0.8;
  }
}
.c-outerlink::after {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  background-image: url(../img/common/newtab_white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-more {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid var(--black);
}
@media screen and (min-width: 640px) {
  .c-more:hover::after {
    transform: translateX(4px);
  }
}
.c-more::after {
  content: "";
  width: 5px;
  height: 8px;
  display: block;
  background-image: url(../img/common/right_chevron_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in;
}
.c-more--white {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.c-more--white::after {
  content: "";
  background-image: url(../img/common/right_chevron_white.svg);
}
.c-more--center {
  margin-left: auto;
  margin-right: auto;
}

.c-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  padding-left: 0.8em;
  background-image: url(../img/common/right_triangle.svg);
  background-position: left top 7px;
  background-repeat: no-repeat;
  background-size: 6px;
}
@media screen and (min-width: 640px) {
  .c-link:hover {
    text-decoration: none;
  }
}

.c-round-btn {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background-color: var(--baseColor);
  max-width: 160px;
  width: 100%;
  padding: 0.2em 0.2em 0.3em;
  border-radius: 2em;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .c-round-btn:hover {
    opacity: 0.8;
  }
}

.work-interview-btn {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background-color: var(--baseColor);
  max-width: 320px;
  width: 100%;
  padding: 0.2em 0.2em 0.3em;
  border-radius: 2em;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .work-interview-btn:hover {
    opacity: 0.8;
  }
}

.c-head-v {
  font-size: 48px;
  font-weight: bold;
  color: var(--baseColor);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .c-head-v {
    font-size: 40px;
  }
}
.c-head-v span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--fontMainColor);
  margin-top: 24px;
}
@media screen and (max-width: 896px) {
  .c-head-v span {
    margin-top: 8px;
  }
}
@media screen and (max-width: 640px) {
  .c-head-v span {
    font-size: 14px;
    margin-top: 0;
  }
}
.c-head-v span::before,
.c-head-v span::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--baseColor);
  display: block;
}
.c-head-v--white {
  color: #ffffff;
}
.c-head-v--white span {
  color: #ffffff;
}
.c-head-v--white span::before,
.c-head-v--white span::after {
  background-color: #ffffff;
}

.c-head-h {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 48px;
  font-weight: bold;
  color: var(--baseColor);
}
@media screen and (max-width: 640px) {
  .c-head-h {
    font-size: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
}
.c-head-h span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--fontMainColor);
}
@media screen and (max-width: 896px) {
  .c-head-h span {
    margin-top: 8px;
  }
}
@media screen and (max-width: 640px) {
  .c-head-h span {
    font-size: 14px;
    margin-top: 0;
  }
}
.c-head-h span::before,
.c-head-h span::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--baseColor);
  display: block;
}
.c-head-h--white {
  color: #ffffff;
}
.c-head-h--white span {
  color: #ffffff;
}
.c-head-h--white span::before,
.c-head-h--white span::after {
  background-color: #ffffff;
}

.c-circle-head {
  display: flex;
  align-items: center;
  color: transparent;
  max-width: fit-content;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 700;
  background-color: var(--baseColor);
  width: 50px;
  height: 50px;
  padding: 0 25px;
  border-radius: 30px;
  overflow: hidden;
  transition: width 0.8s ease-in;
}
@media screen and (max-width: 640px) {
  .c-circle-head {
    font-size: 15px;
    height: 40px;
    width: 40px;
    padding: 0 20px;
    border-radius: 20px;
  }
}
.c-circle-head.is_active {
  width: 100%;
  color: #ffffff;
}

/* ---------------------------
  skew bg
----------------------------- */
.c-skew {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.c-skew::after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background-color: var(--bgMainColor);
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.4s ease-in;
}
.c-skew.is_active::after {
  width: 100%;
}

.c-skew--right-to-left {
  background-image: url(../img/top/skew_top_left.svg), url(../img/top/skew_bottom_right.svg);
  background-position: top -1px left, bottom -1px right;
  background-size: 33%, 100%;
}
.c-skew--right-to-left::after {
  right: 0;
}

.c-skew--left-to-right {
  background-image: url(../img/top/skew_top_right.svg), url(../img/top/skew_bottom_left.svg);
  background-position: top -1px right, bottom -1px left;
  background-size: 33%, 100%;
}
.c-skew--left-to-right::after {
  left: 0;
}

.c-fade {
  opacity: 0;
  transition: 0.3s ease-in;
}
.c-fade.is_active {
  opacity: 1;
}

/* ---------------------------
  slide bg
----------------------------- */
.c-slide {
  position: relative;
}
.c-slide::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background-color: var(--bgMainColor);
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.4s ease-in;
}
.c-slide.is_active::after {
  width: 100%;
}

.c-slide--right-to-left::after {
  right: 0;
}

.c-slide--left-to-right::after {
  left: 0;
}

/* ---------------------------
  accordion
----------------------------- */
.c-details {
  border-bottom: 1px solid var(--borderMainColor);
}
.c-details:first-of-type {
  border-top: 1px solid var(--borderMainColor);
}
.c-details.is-opened .icon::before {
  transform: rotate(45deg) translateY(50%);
}
.c-details.is-opened .icon::after {
  transform: rotate(-45deg) translateY(-50%);
}

.c-details__summary {
  display: block;
  cursor: pointer;
  padding: 28px 20px;
}
@media screen and (max-width: 640px) {
  .c-details__summary {
    padding: 16px;
  }
}
.c-details__summary::-webkit-details-marker {
  display: none;
}
.c-details__summary .icon {
  position: relative;
  width: 64px;
  padding: 0 24px;
}
@media screen and (max-width: 640px) {
  .c-details__summary .icon {
    width: 40px;
    padding-right: 0;
  }
}
.c-details__summary .icon::before,
.c-details__summary .icon::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: var(--baseColor);
}
.c-details__summary .icon::before {
  transform: rotate(90deg);
}
.c-details__summary .icon::after {
  transform: translateY(-50%);
}
.c-details__summary .question {
  display: block;
  font-size: 16px;
  font-weight: 500;
  width: calc(100% - 64px);
}
@media screen and (max-width: 640px) {
  .c-details__summary .question {
    width: calc(100% - 40px);
    font-size: 14px;
  }
}

.c-details__summary-inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.c-details__content {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 896px) {
  .c-details__content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .c-details__content {
    padding: 0;
  }
}
.c-details__content p {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .c-details__content p {
    font-size: 13px;
  }
}
.c-details__content .link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .c-details__content .link {
    justify-content: center;
    margin-top: 1em;
    gap: 12px;
  }
}
.c-details__content time {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2em;
}
@media screen and (max-width: 640px) {
  .c-details__content time {
    font-size: 12px;
    margin-bottom: 1.5em;
  }
}
.c-details__content table {
  width: 100%;
  border-collapse: collapse;
}
.c-details__content table th {
  width: 200px;
}
@media screen and (max-width: 1080px) {
  .c-details__content table th {
    width: auto;
  }
}
.c-details__content table th, .c-details__content table td {
  padding: 0.8em 1em;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #777777;
}
@media screen and (max-width: 640px) {
  .c-details__content table th, .c-details__content table td {
    font-size: 13px;
  }
}
.c-details__content table th {
  background-color: var(--bgSubColor);
  font-weight: 500;
}

.c-details__content-inner {
  padding-bottom: 32px;
}
@media screen and (max-width: 640px) {
  .c-details__content-inner {
    padding-bottom: 20px;
  }
}

/* ---------------------------
  header
----------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 999px) {
  .header {
    position: absolute;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 999px) {
  .header-inner {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 999px) {
  .header__logo a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 999px) {
  .header__logo a {
    gap: 10px;
  }
}
@media screen and (max-width: 999px) {
  .header__logo img {
    width: 140px;
  }
}
.header__logo a > span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .header__logo a > span {
    font-size: 10px;
  }
}
.header__logo a > span > span {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 13px;
  font-weight: 700;
  color: var(--baseColor);
}
@media screen and (max-width: 999px) {
  .header__logo a > span > span {
    font-size: 10px;
  }
}

.header__nav {
  height: 100%;
}
@media screen and (max-width: 999px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bgSubColor);
    padding: 80px 20px 130px;
    overflow-y: auto;
  }
}
.header__nav--sp {
  display: none;
}

.g-nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 80px;
}
@media screen and (max-width: 1400px) {
  .g-nav {
    gap: 56px;
  }
}
@media screen and (max-width: 1280px) {
  .g-nav {
    gap: 32px;
  }
}
@media screen and (max-width: 1080px) {
  .g-nav {
    gap: 16px;
  }
}
@media screen and (max-width: 999px) {
  .g-nav {
    display: block;
    height: auto;
  }
}

.g-nav__item {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 999px) {
  .g-nav__item {
    display: block;
    height: auto;
    border-bottom: 1px solid #333333;
  }
}
@media screen and (max-width: 999px) {
  .g-nav__item:first-of-type {
    border-top: 1px solid #333333;
  }
}
.g-nav__item.current a {
  border-color: var(--baseColor);
}
@media screen and (max-width: 999px) {
  .g-nav__item.current a {
    border-color: inherit;
  }
}
.g-nav__item a {
  display: block;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  padding: 2px 0;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: 0.15s ease-in;
}
@media screen and (min-width: 999px) {
  .g-nav__item a:hover {
    border-color: var(--baseColor);
  }
}
@media screen and (max-width: 1080px) {
  .g-nav__item a {
    font-size: 12px;
  }
}
@media screen and (max-width: 999px) {
  .g-nav__item a {
    width: 100%;
    font-size: 14px;
    padding: 14px 10px;
    font-weight: 500;
    border: none;
  }
}

.g-nav__item--child a {
  padding-left: 1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.g-nav__item--child a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #777777;
}

.g-nav__item--sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .g-nav__item--sp {
    display: block;
  }
}

.g-nav-sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .g-nav-sp {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
  }
}

.g-nav-sp__item {
  width: calc(50% - 8px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.g-nav-sp__item a {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0.5em;
}
.g-nav-sp__item--primary {
  background-color: var(--baseColor);
}
.g-nav-sp__item--secondary {
  background-color: var(--black);
}
.g-nav-sp__item span {
  display: block;
  font-size: 11px;
  font-weight: 500;
}

/* ---------------------------
  fixed link
----------------------------- */
.fixed-link {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
}
@media screen and (max-width: 896px) {
  .fixed-link {
    display: none;
  }
}

.fixed-link__item a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .fixed-link__item a:hover {
    opacity: 0.8;
  }
}

/* ---------------------------
  sp-fixed-menu
----------------------------- */
.sp-fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
@media screen and (max-width: 896px) {
  .sp-fixed-menu {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--black);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
}

.sp-fixed-menu__item {
  background-color: #e8e3d4;
}
.sp-fixed-menu__item a {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  height: 49px;
  justify-content: center;
}
.sp-fixed-menu__item a:not(.c-newtab) {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.sp-fixed-menu__item span {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

/* ---------------------------
  hamb
----------------------------- */
.header__menu-trigger {
  display: none;
  width: 50px;
  height: 50px;
  padding: 15px 10px;
  background-color: var(--baseColor);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  .header__menu-trigger {
    display: block;
  }
}
.header__menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: #ffffff;
  transform-origin: left;
  transition: 0.3s ease-in-out;
}
.header__menu-trigger.is_active span:nth-of-type(1) {
  transform: rotate(41deg);
}
.header__menu-trigger.is_active span:nth-of-type(2) {
  opacity: 0;
}
.header__menu-trigger.is_active span:nth-of-type(3) {
  transform: rotate(-41deg);
}
.header__menu-trigger.is_active .header__menu-trigger__inner {
  transform: translateX(4px);
}

.header__menu-trigger__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}

/* ---------------------------
  hamb
----------------------------- */
/* .menu-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background-color: transparent;
  cursor: pointer;
  color: var(--fontMainColor);
}
.menu-trigger span {
  display: block;
  width: 10px;
  height: 1px;
  border-radius: 1px;
  opacity: 1;
  background-color: var(--black);
  transition: 0.1s ease-in-out;
}
.menu-trigger.is_active .menu-trigger__inner {
  gap: 0;
}
.menu-trigger.is_active span:nth-of-type(1) {
  transform: rotate(45deg) translateY(50%);
  width: 23px;
}
.menu-trigger.is_active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.is_active span:nth-of-type(3) {
  transform: rotate(-45deg) translateY(-50%);
  width: 23px;
}

.menu-trigger__inner {
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--black);
  overflow: hidden;
}

.menu-trigger__label {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: var(--fontMainColor);
} */

/* ---------------------------
  footer
----------------------------- */
/* @media screen and (max-width: 896px) {
  .footer {
    padding-bottom: 100px;
  }
} */

.footer-head {
  border-top: 1px solid var(--borderMainColor);
  background-color: #ffffff;
}
@media screen and (max-width: 896px) {
  .footer-head {
    display: none;
  }
}

.f-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.f-nav__item {
  display: flex;
  align-items: center;
}
.f-nav__item:not(:last-of-type)::after {
  content: "|";
  font-size: 14px;
  font-weight: 500;
  font-family: var(--jaFont);
  display: inline-block;
  margin: 0 30px;
}
.f-nav__item a {
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .f-nav__item a:hover {
    opacity: 0.8;
  }
}

.footer-body {
  background-color: var(--baseColor);
}

.footer-body-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px 40px;
  max-width: 1840px;
  height: 200px;
}
@media screen and (max-width: 896px) {
  .footer-body-inner {
    align-items: center;
    padding: 0 20px;
    height: 100px;
  }
}
@media screen and (max-width: 640px) {
  .footer-body-inner {
    height: 80px;
  }
}

.footer-body__slogan {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 896px) {
  .footer-body__slogan {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .footer-body__slogan {
    font-size: 11.5px;
    line-height: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .footer-body__logo img {
    width: 120px;
  }
}

.footer-foot {
  background-color: var(--black);
}

.footer-foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1840px;
  height: 80px;
}
@media screen and (max-width: 896px) {
  .footer-foot-inner {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 30px;
  }
}

@media screen and (max-width: 896px) {
  .footer-foot__link {
    display: none;
  }
}
.footer-foot__link a {
  color: #ffffff;
  font-size: 13px;
}

.footer-foot__copyright {
  color: #ffffff;
  font-size: 11px;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .footer-foot__copyright {
    text-align: center;
    font-size: 10px;
  }
}

/* ---------------------------
  post
----------------------------- */
.post > *,
.wp-editor > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.post > *:first-child,
.wp-editor > *:first-child {
  margin-top: 0 !important;
}
.post > *:last-child,
.wp-editor > *:last-child {
  margin-bottom: 0 !important;
}
.post h2:not([class]),
.wp-editor h2:not([class]) {
  margin-top: 2em;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 0.2em;
  border-bottom: 1px solid var(--borderMainColor);
  position: relative;
}
@media screen and (max-width: 640px) {
  .post h2:not([class]),
  .wp-editor h2:not([class]) {
    font-size: 20px;
  }
}
.post h2:not([class])::after,
.wp-editor h2:not([class])::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 20%;
  min-width: 100px;
  height: 1px;
  background-color: var(--baseColor);
}
.post h3:not([class]),
.wp-editor h3:not([class]) {
  margin-top: 1.5em;
  font-size: 20px;
  font-weight: 500;
  color: var(--baseColor);
}
@media screen and (max-width: 640px) {
  .post h3:not([class]),
  .wp-editor h3:not([class]) {
    font-size: 18px;
  }
}
.post h4:not([class]),
.wp-editor h4:not([class]) {
  margin-top: 2em;
  font-size: 16px;
  font-weight: 500;
  color: var(--baseColor);
}
.post h5:not([class]),
.wp-editor h5:not([class]) {
  margin-top: 1.5em;
  font-size: 16px;
  font-weight: 500;
}
.post h6:not([class]),
.wp-editor h6:not([class]) {
  font-size: 14px;
  font-weight: 500;
}
.post p:not([class]),
.wp-editor p:not([class]) {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .post p:not([class]),
  .wp-editor p:not([class]) {
    font-size: 14px;
  }
}
.post strong, .post strong > *,
.wp-editor strong,
.wp-editor strong > * {
  font-weight: 700;
}
.post em, .post em > *,
.wp-editor em,
.wp-editor em > * {
  font-style: italic;
}
.post del,
.wp-editor del {
  text-decoration: line-through double var(--noticeColor);
}
.post blockquote,
.wp-editor blockquote {
  padding: 0.5em;
  background-color: #f2f2f2;
}
.post a:not([class]),
.wp-editor a:not([class]) {
  color: var(--baseColor);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 640px) {
  .post a:not([class]):hover,
  .wp-editor a:not([class]):hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .post a:not([class]),
  .wp-editor a:not([class]) {
    font-size: 14px;
  }
}
.post ul:not([class]),
.wp-editor ul:not([class]) {
  list-style: disc;
  margin: 1.5em 0;
  padding-left: 1.2em;
}
.post ul:not([class]) li,
.wp-editor ul:not([class]) li {
  font-size: 16px;
  margin: 0.5em 0;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .post ul:not([class]) li,
  .wp-editor ul:not([class]) li {
    font-size: 14px;
  }
}
.post ul:not([class]) li::marker,
.wp-editor ul:not([class]) li::marker {
  color: var(--baseColor);
  font-size: 1em;
  line-height: 1;
}
.post ul:not([class]) li:first-of-type,
.wp-editor ul:not([class]) li:first-of-type {
  margin-top: 0;
}
.post ul:not([class]) li:last-of-type,
.wp-editor ul:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.post ol:not([class]),
.wp-editor ol:not([class]) {
  list-style: none;
  counter-reset: ol_number;
  margin: 1.5em 0;
  padding-left: 0;
}
.post ol:not([class]) li,
.wp-editor ol:not([class]) li {
  font-size: 16px;
  margin: 0.5em 0;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .post ol:not([class]) li,
  .wp-editor ol:not([class]) li {
    font-size: 14px;
  }
}
.post ol:not([class]) li:first-of-type,
.wp-editor ol:not([class]) li:first-of-type {
  margin-top: 0;
}
.post ol:not([class]) li:last-of-type,
.wp-editor ol:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.post ol:not([class]) li::before,
.wp-editor ol:not([class]) li::before {
  counter-increment: ol_number;
  content: counter(ol_number) ".";
  color: var(--baseColor);
}
.post table,
.wp-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.post table caption,
.wp-editor table caption {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.8em;
  text-align: left;
}
.post table th, .post table td,
.wp-editor table th,
.wp-editor table td {
  padding: 0.8em 1em;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #777777;
}
@media screen and (max-width: 640px) {
  .post table th, .post table td,
  .wp-editor table th,
  .wp-editor table td {
    font-size: 13px;
  }
}
.post table th,
.wp-editor table th {
  background-color: var(--bgSubColor);
  font-weight: 500;
}
.post table a:not([class]),
.wp-editor table a:not([class]) {
  font-size: 1em;
  color: var(--fontMainColor);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  word-break: break-all;
}
@media screen and (min-width: 640px) {
  .post table a:not([class]):hover,
  .wp-editor table a:not([class]):hover {
    text-decoration: none;
  }
}
.post .table-overflow,
.wp-editor .table-overflow {
  margin: 1.5em 0;
}
@media screen and (max-width: 480px) {
  .post .table-overflow,
  .wp-editor .table-overflow {
    position: relative;
    overflow-x: scroll;
    width: 100%;
  }
  .post .table-overflow:before,
  .wp-editor .table-overflow:before {
    content: "横にスクロールできます→";
    position: sticky;
    top: 0;
    left: 0;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.8em;
  }
  .post .table-overflow table,
  .wp-editor .table-overflow table {
    width: 480px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.post .aligncenter,
.wp-editor .aligncenter {
  text-align: center;
}
.post .aligncenter img,
.wp-editor .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post .alignleft,
.wp-editor .alignleft {
  text-align: left;
}
.post .alignleft img,
.wp-editor .alignleft img {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post .alignright,
.wp-editor .alignright {
  text-align: right;
}
.post .alignright img,
.wp-editor .alignright img {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.post img,
.wp-editor img {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.post img.aligncenter,
.wp-editor img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post img.alignleft,
.wp-editor img.alignleft {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.post img.alignright,
.wp-editor img.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.post .halfbox,
.wp-editor .halfbox {
  display: flex;
  gap: 2em;
  margin: 1.5em 0;
}
@media screen and (max-width: 896px) {
  .post .halfbox,
  .wp-editor .halfbox {
    display: block;
  }
}
.post .halfbox > div,
.wp-editor .halfbox > div {
  margin: 1em 0;
  padding: 1.8em 1.5em;
  width: 50%;
  background-color: var(--bgMainColor);
  border: 1px solid var(--borderMainColor);
  border-radius: 8px;
}
@media screen and (max-width: 896px) {
  .post .halfbox > div,
  .wp-editor .halfbox > div {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .post .halfbox > div,
  .wp-editor .halfbox > div {
    padding: 1.5em 1em;
  }
}
.post .halfbox > div > *:first-child,
.wp-editor .halfbox > div > *:first-child {
  margin-top: 0;
}
.post .halfbox > div > *:last-child,
.wp-editor .halfbox > div > *:last-child {
  margin-bottom: 0;
}
.post .c-btn,
.wp-editor .c-btn {
  margin-top: 1.5em;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-sp {
    display: inline;
  }
}

.br-sp-none {
  display: inline;
}
@media screen and (max-width: 640px) {
  .br-sp-none {
    display: none;
  }
}

/* ---------------------------
  top - common
----------------------------- */
/* ---------------------------
  top - hero
----------------------------- */
.hero {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .hero {
    height: 100vw;
  }
}
@media screen and (max-width: 640px) {
  .hero {
    margin-top: 0;
  }
}

.hero__video {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero__video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__slogan {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 1px 2px 3px #999999;
}
@media screen and (max-width: 1400px) {
  .hero__slogan {
    font-size: 4vw;
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .hero__slogan {
    gap: 1vw;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan {
    flex-direction: column;
    gap: 16px;
    font-size: 21px;
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .hero__slogan img {
    width: 240px;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan img {
    width: 160px;
  }
}

/* ---------------------------
  top - mission
----------------------------- */
.top-lead-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 896px) {
  .top-lead-box {
    display: block;
  }
}

.top-lead-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.top-lead-box__text {
  padding-right: 40px;
}
@media screen and (max-width: 896px) {
  .top-lead-box__text {
    padding-right: 0;
    max-width: 640px;
    margin: 32px auto 0;
  }
}
.top-lead-box__text h3 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 1280px) {
  .top-lead-box__text h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 896px) {
  .top-lead-box__text h3 {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .top-lead-box__text h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .top-lead-box__text h3 {
    font-size: 22px;
  }
}
.top-lead-box__text p {
  color: #ffffff;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .top-lead-box__text p {
    font-size: 14px;
  }
}

.top-mission-section {
  padding: 140px 0 328px;
}
@media screen and (max-width: 896px) {
  .top-mission-section {
    padding: 100px 0 200px;
  }
}
@media screen and (max-width: 640px) {
  .top-mission-section {
    padding: 50px 0 120px;
  }
}
@media screen and (max-width: 480px) {
  .top-mission-section {
    padding: 50px 0 100px;
  }
}

/* ---------------------------
  top - insert
----------------------------- */
.top-insert {
  margin-top: -10%;
  pointer-events: none;
}

.swiper-top-insert-1 .swiper-slide,
.swiper-top-insert-2 .swiper-slide {
  width: 420px;
  height: 315px;
}
@media screen and (max-width: 640px) {
  .swiper-top-insert-1 .swiper-slide,
  .swiper-top-insert-2 .swiper-slide {
    width: 300px;
    height: 225px;
  }
}
.swiper-top-insert-1 .swiper-slide img,
.swiper-top-insert-2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-top-insert-1 .swiper-wrapper,
.swiper-top-insert-2 .swiper-wrapper {
  transition-timing-function: linear;
}

/* ---------------------------
  top - whatwedo
----------------------------- */
.top-whatwedo-section {
  padding-bottom: 200px;
}
@media screen and (max-width: 896px) {
  .top-whatwedo-section {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .top-whatwedo-section {
    padding-bottom: 56px;
  }
}

.top-whatwedo-section-inner {
  padding: 100px 0 300px;
}
@media screen and (max-width: 896px) {
  .top-whatwedo-section-inner {
    padding: 100px 0 200px;
  }
}
@media screen and (max-width: 640px) {
  .top-whatwedo-section-inner {
    padding: 50px 0 150px;
  }
}
@media screen and (max-width: 480px) {
  .top-whatwedo-section-inner {
    padding: 50px 0 110px;
  }
}

.top-whatwedo-link {
  margin-top: -16%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .top-whatwedo-link {
    display: block;
  }
}

.top-whatwedo-link__item {
  padding: 50px 50px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .top-whatwedo-link__item {
    padding: 40px 32px 48px;
  }
}
@media screen and (max-width: 640px) {
  .top-whatwedo-link__item {
    height: auto;
  }
}
.top-whatwedo-link__item--primary {
  background-image: url(../img/top/business.jpg);
}
@media screen and (max-width: 640px) {
  .top-whatwedo-link__item--primary {
    margin-bottom: 1px;
  }
}
.top-whatwedo-link__item--secondary {
  background-image: url(../img/top/work.jpg);
}
.top-whatwedo-link__item h3 {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 896px) {
  .top-whatwedo-link__item h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .top-whatwedo-link__item h3 {
    font-size: 24px;
  }
}
.top-whatwedo-link__item p {
  max-width: 400px;
  margin: 0 auto;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .top-whatwedo-link__item p {
    font-size: 14px;
  }
}
.top-whatwedo-link__item .c-more {
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .top-whatwedo-link__item .c-more {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 40px auto 0;
  }
}

/* ---------------------------
  top - people
----------------------------- */
.top-slide-box {
  display: flex;
}
@media screen and (max-width: 896px) {
  .top-slide-box {
    flex-direction: column-reverse;
  }
}

.top-slide-box__text {
  width: 50%;
  padding-top: 100px;
  padding-right: 100px;
  padding-bottom: 240px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1480px) {
  .top-slide-box__text {
    width: 40%;
    padding-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .top-slide-box__text {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 640px) {
  .top-slide-box__text {
    padding-top: 50px;
    padding-bottom: 110px;
  }
}
.top-slide-box__text h3 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1em;
  white-space: nowrap;
}
@media screen and (max-width: 896px) {
  .top-slide-box__text h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .top-slide-box__text h3 {
    font-size: 24px;
    text-align: center;
  }
}
.top-slide-box__text p {
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .top-slide-box__text p {
    font-size: 14px;
  }
}

.top-slide-box__img {
  width: 50vw;
  margin-right: calc(-50vw + 700px);
}
@media screen and (max-width: 1480px) {
  .top-slide-box__img {
    width: calc(60% + 40px);
    margin-right: -40px;
  }
}
@media screen and (max-width: 896px) {
  .top-slide-box__img {
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
  }
}
@media screen and (max-width: 640px) {
  .top-slide-box__img {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }
}
.top-slide-box__img picture, .top-slide-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

.top-people-section {
  padding-bottom: 200px;
}
@media screen and (max-width: 896px) {
  .top-people-section {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .top-people-section {
    padding-bottom: 56px;
  }
}

.top-people-head {
  margin-bottom: 0.4em;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .top-people-head {
    margin-bottom: 32px;
  }
}

.top-seek-section {
  padding-bottom: 200px;
}
@media screen and (max-width: 896px) {
  .top-seek-section {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .top-seek-section {
    padding-bottom: 56px;
  }
}

.top-seek-head {
  margin-bottom: 0.4em;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .top-seek-head {
    margin-bottom: 32px;
  }
}

.top-people-posts {
  margin-top: -100px;
}
@media screen and (max-width: 640px) {
  .top-people-posts {
    margin-top: -50px;
  }
}
@media screen and (max-width: 640px) {
  .top-people-posts > .wrapper {
    padding: 0;
  }
}

.top-seek-link {
  margin-top: -100px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .top-seek-link {
    margin-top: -50px;
  }
}

.top-seek-link-inner {
  display: flex;
  padding: 50px;
  padding-bottom: 0;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .top-seek-link-inner {
    padding: 40px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .top-seek-link-inner {
    padding: 30px;
    padding-bottom: 0;
    display: block;
  }
}
.top-seek-link-inner a {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100px;
  color: #ffffff;
  background-color: var(--baseColor);
  font-size: 18px;
  padding: 0 80px;
  background-image: url(../img/common/right_arrow_white.svg);
  background-position: center right 60px;
  background-repeat: no-repeat;
  background-size: 14px;
  transition: 0.2s ease-in;
}
@media screen and (max-width: 1080px) {
  .top-seek-link-inner a {
    background-position: center right 20px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 640px) {
  .top-seek-link-inner a {
    width: 100%;
    font-size: 16px;
    height: 80px;
    background-size: 10px;
  }
}
@media screen and (min-width: 640px) {
  .top-seek-link-inner a:hover {
    background-position: center right 54px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1080px) {
  .top-seek-link-inner a:hover {
    background-position: center right 16px;
  }
}
.top-seek-link-inner a:last-of-type {
  background-color: #1a1a1a;
}
.top-seek-link-inner span {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .top-seek-link-inner span {
    font-size: 12px;
  }
}

/* ---------------------------
  top - faq
----------------------------- */
.top-faq-section {
  padding: 100px 0;
  background-color: var(--bgSubColor);
}
@media screen and (max-width: 640px) {
  .top-faq-section {
    padding: 40px 0 56px;
  }
}

.top-faq-head {
  margin-bottom: 56px;
}
@media screen and (max-width: 640px) {
  .top-faq-head {
    margin-bottom: 32px;
  }
}

.top-faq-list {
  border-bottom: 1px solid var(--borderMainColor);
}
.top-faq-list.is-opened .icon::before {
  transform: rotate(45deg) translateY(50%);
}
.top-faq-list.is-opened .icon::after {
  transform: rotate(-45deg) translateY(-50%);
}

.top-faq-list__summary {
  display: block;
  cursor: pointer;
  padding: 28px 0;
}
@media screen and (max-width: 640px) {
  .top-faq-list__summary {
    padding: 16px 0;
  }
}
.top-faq-list__summary::-webkit-details-marker {
  display: none;
}
.top-faq-list__summary .icon {
  position: relative;
  width: 64px;
  padding: 0 24px;
}
@media screen and (max-width: 640px) {
  .top-faq-list__summary .icon {
    width: 40px;
    padding-right: 0;
  }
}
.top-faq-list__summary .icon::before,
.top-faq-list__summary .icon::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: var(--baseColor);
}
.top-faq-list__summary .icon::before {
  transform: rotate(90deg);
}
.top-faq-list__summary .icon::after {
  transform: translateY(-50%);
}
.top-faq-list__summary .number {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 90px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
}
.top-faq-list__summary .number::before {
  content: "Q";
  font-weight: 700;
  font-size: 16px;
  font-family: var(--jaFont);
  color: var(--baseColor);
}
@media screen and (max-width: 640px) {
  .top-faq-list__summary .number {
    padding: 0;
    width: 64px;
    font-size: 15px;
  }
}
.top-faq-list__summary .question {
  display: block;
  font-size: 14px;
  font-weight: 500;
  width: calc(100% - 64px - 90px);
}
@media screen and (max-width: 640px) {
  .top-faq-list__summary .question {
    width: calc(100% - 40px - 64px);
  }
}

.top-faq-list__summary-inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.top-faq-list__content {
  padding-left: 90px;
  padding-right: 20px;
}
@media screen and (max-width: 896px) {
  .top-faq-list__content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .top-faq-list__content {
    padding: 0;
  }
}
.top-faq-list__content p {
  font-size: 14px;
  font-weight: 500;
}
.top-faq-list__content .c-link {
  margin-top: 1em;
}

.top-faq-list__content-inner {
  padding-bottom: 32px;
}
@media screen and (max-width: 640px) {
  .top-faq-list__content-inner {
    padding-bottom: 20px;
  }
}

/* ---------------------------
  top - information
----------------------------- */
.top-info-section {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .top-info-section {
    padding: 40px 0 56px;
  }
}
.top-info-section .c-more {
  margin-top: 56px;
}
@media screen and (max-width: 640px) {
  .top-info-section .c-more {
    margin-top: 40px;
  }
}

.top-info-head {
  margin-bottom: 56px;
}
@media screen and (max-width: 640px) {
  .top-info-head {
    margin-bottom: 44px;
  }
}

.main {
  display: block;
  padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .main {
    padding-bottom: 50px;
  }
}

/* ---------------------------
  cover
----------------------------- */
.cover {
  margin-top: 50px;
}

.cover--bgnone {
  background-image: none;
  padding-bottom: 0;
}

.cover-head {
  background-image: url(../img/cover/bg_top_right.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.cover-head > .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 190px;
}
@media screen and (max-width: 640px) {
  .cover-head > .wrapper {
    height: 120px;
    justify-content: center;
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 640px) {
  .cover-head__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .cover-head__title span {
    font-size: 12px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 896px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs > span {
  display: inline-block;
}
.breadcrumbs > span:not(:first-of-type) {
  background-image: url(../img/common/right_chevron_red.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 5px;
  padding-left: 24px;
}
.breadcrumbs span {
  font-size: 13px;
}
.breadcrumbs a {
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}

.cover-body {
  overflow: hidden;
  padding-bottom: 13%;
  background-image: url(../img/cover/bg_bottom_left.svg), url(../img/cover/bg_top_left.svg);
  background-size: 100%, 50%;
  background-repeat: no-repeat;
  background-position: bottom left, top left;
  background-color: var(--bgMainColor);
}

.cover-body-inner {
  height: 600px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .cover-body-inner {
    height: 400px;
  }
}
@media screen and (max-width: 640px) {
  .cover-body-inner {
    height: 200px;
  }
}

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

.cover-body__title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.cover-body__title > .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.cover-body__title span {
  display: block;
  font-size: 18px;
  font-family: var(--jaFont);
}
@media screen and (max-width: 896px) {
  .cover-body__title span {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .cover-body__title span {
    font-size: 14px;
  }
}
.cover-body__title h1 {
  color: #ffffff;
  font-size: 48px;
  padding-left: 100px;
}
@media screen and (max-width: 1280px) {
  .cover-body__title h1 {
    padding-left: 0;
  }
}
@media screen and (max-width: 1080px) {
  .cover-body__title h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 896px) {
  .cover-body__title h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .cover-body__title h1 {
    font-size: 24px;
  }
}

.cover-mt {
  margin-top: -7.8%;
  position: relative;
  z-index: 100;
}

.page-section {
  margin-top: calc(-13% - 600px);
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 896px) {
  .page-section {
    margin-top: calc(-13% - 400px);
  }
}
@media screen and (max-width: 640px) {
  .page-section {
    margin-top: calc(-13% - 200px);
  }
}

.page-container {
  background-color: #fff;
  padding: 50px 50px 100px;
}
@media screen and (max-width: 640px) {
  .page-container {
    padding: 30px 16px 40px;
  }
}

/* ---------------------------
  business
----------------------------- */
.business-lead {
  background-color: #fff;
  padding: 80px 0 90px;
}
@media screen and (max-width: 640px) {
  .business-lead {
    padding: 40px 0;
  }
}

.business-lead__title {
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 896px) {
  .business-lead__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .business-lead__title {
    font-size: 17px;
  }
}

.business-box {
  display: flex;
}
@media screen and (max-width: 896px) {
  .business-box {
    flex-direction: column-reverse;
  }
}

.business-national-section {
  background-color: var(--bgMainColor);
  position: relative;
  z-index: 10;
}

.business-domestic-section {
  background-color: var(--black);
  position: relative;
  z-index: 10;
}

.business-box__text {
  width: 50%;
  padding-top: 70px;
  padding-right: 100px;
  padding-bottom: 80px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1480px) {
  .business-box__text {
    width: 40%;
    padding-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .business-box__text {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 640px) {
  .business-box__text {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.business-box__text h3 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 1em;
}
@media screen and (max-width: 896px) {
  .business-box__text h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .business-box__text h3 {
    font-size: 24px;
    text-align: center;
  }
}
.business-box__text p {
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .business-box__text p {
    font-size: 14px;
  }
}
.business-box__text .c-outerlink {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .business-box__text .c-outerlink {
    margin: 30px auto 0;
  }
}

.business-box__img {
  width: 50vw;
  margin-right: calc(-50vw + 700px);
}
@media screen and (max-width: 1480px) {
  .business-box__img {
    width: calc(60% + 40px);
    margin-right: -40px;
  }
}
@media screen and (max-width: 896px) {
  .business-box__img {
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
  }
}
@media screen and (max-width: 640px) {
  .business-box__img {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }
}
.business-box__img picture, .business-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

.business-head {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5em;
  font-size: 44px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1280px) {
  .business-head {
    font-size: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .business-head {
    font-size: 36px;
  }
}
@media screen and (max-width: 896px) {
  .business-head {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .business-head {
    font-size: 24px;
    margin-bottom: 1em;
  }
}
.business-head span {
  white-space: nowrap;
}

.business-service-section,
.business-group-section {
  background-image: url(../img/common/bg_1.svg);
  background-position: top left;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: calc(200px + 4.7%);
  margin-top: -4.7%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .business-service-section,
  .business-group-section {
    padding-top: calc(100px + 4.7%);
  }
}
@media screen and (max-width: 640px) {
  .business-service-section,
  .business-group-section {
    padding-top: calc(50px + 4.7%);
  }
}

.business-group-section {
  background-image: url(../img/common/bg_2.svg);
  z-index: 1;
}

.business-service-head,
.business-group-head {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
  gap: 0 50px;
}
@media screen and (max-width: 1080px) {
  .business-service-head,
  .business-group-head {
    margin-bottom: 50px;
    font-size: 36px;
  }
}
@media screen and (max-width: 896px) {
  .business-service-head,
  .business-group-head {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .business-service-head,
  .business-group-head {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

.business-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 100;
  gap: 10px 0;
}
@media screen and (max-width: 640px) {
  .business-service-list {
    display: block;
  }
}

.business-service-list__item {
  padding: 50px 50px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .business-service-list__item {
    padding: 40px 32px 48px;
  }
}
@media screen and (max-width: 640px) {
  .business-service-list__item {
    height: auto;
  }
}
.business-service-list__item h3 {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
@media screen and (max-width: 896px) {
  .business-service-list__item h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .business-service-list__item h3 {
    font-size: 23px;
  }
}
.business-service-list__item p {
  max-width: 400px;
  margin: 0 auto;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .business-service-list__item p {
    font-size: 14px;
  }
}
.business-service-list__item .c-outerlink {
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .business-service-list__item .c-outerlink {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 40px auto 0;
  }
}
.business-service-list__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.business-group-container {
  background-color: #fff;
  padding: 100px 100px 0;
}
@media screen and (max-width: 1080px) {
  .business-group-container {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .business-group-container {
    padding: 16px;
  }
}

.business-group-text {
  text-align: center;
  font-size: 36px;
  margin: 100px 0;
}
@media screen and (max-width: 1080px) {
  .business-group-text {
    margin: 50px 0;
    font-size: 32px;
  }
}
@media screen and (max-width: 896px) {
  .business-group-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .business-group-text {
    font-size: 16px;
    margin: 30px 0 40px;
  }
}

.business-group-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .business-group-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
.business-group-list a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .business-group-list a:hover {
    opacity: 0.8;
  }
}
.business-group-list img {
  margin: 0 auto;
}

/* ---------------------------
  work
----------------------------- */
.work-container {
  background-color: var(--bgSubColor);
  padding: 90px 80px 100px;
}
@media screen and (max-width: 1080px) {
  .work-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 640px) {
  .work-container {
    padding: 40px 16px;
  }
}

.work-insert {
  margin: 100px 0;
}
@media screen and (max-width: 896px) {
  .work-insert {
    margin: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .work-insert {
    margin: 40px 0;
  }
}

.work-lead__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 896px) {
  .work-lead__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .work-lead__title {
    font-size: 20px;
  }
}

.work-lead__text {
  max-width: 960px;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .work-lead__text {
    font-size: 14px;
  }
}

.work-list__title {
  font-weight: 600;
  font-size: 36px;
  padding-left: 0.5em;
  border-left: 3px solid var(--baseColor);
  margin-bottom: 1em;
}
@media screen and (max-width: 896px) {
  .work-list__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .work-list__title {
    font-size: 20px;
  }
}

.work-list__text {
  font-size: 14px;
  margin-bottom: 2em;
}

/* ---------------------------
  aside
----------------------------- */
.aside-interview {
  padding-top: 24.5%;
  margin-top: -14.5%;
  background-image: url(../img/common/bg_1.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .aside-interview {
    padding-top: 14%;
    margin-top: -4.5%;
  }
}
@media screen and (max-width: 640px) {
  .aside-interview > .wrapper {
    padding: 0;
  }
}

.aside-interview-head {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .aside-interview-head {
    font-size: 24px;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 640px) {
  .aside-interview-head span {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .aside-interview-list .interview-list {
    display: flex;
  }
}
@media screen and (max-width: 640px) {
  .aside-interview-list .interview-list__item {
    width: 280px;
    min-width: 280px;
  }
}

/* ---------------------------
  mid career recruit
----------------------------- */
.mid-head {
  font-size: 36px;
  font-weight: 700;
  padding-left: 0.5em;
  border-left: 3px solid var(--baseColor);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 896px) {
  .mid-head {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .mid-head {
    font-size: 18px;
  }
}

.mid-subhead {
  max-width: 300px;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--baseColor);
  border-radius: 2em;
  margin: 0 auto 1.5em;
}
@media screen and (max-width: 896px) {
  .mid-subhead {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .mid-subhead {
    font-size: 16px;
    height: 40px;
  }
}

.mid-details {
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .mid-details {
    margin-bottom: 50px;
  }
}

.mid-lead {
  font-size: 14px;
  text-align: center;
  margin-bottom: 2.2em;
}

@media screen and (max-width: 640px) {
  .form {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}
.form table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 896px) {
  .form table {
    border-top: none;
    border-bottom: 1px solid #777777;
    border-left: 1px solid #777777;
    border-right: 1px solid #777777;
  }
}
.form th, .form td {
  padding: 0.8em 1em;
  border: 1px solid #777777;
}
@media screen and (max-width: 896px) {
  .form th, .form td {
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 640px) {
  .form th, .form td {
    font-size: 14px;
  }
}
@media screen and (max-width: 896px) {
  .form table, .form tbody, .form thead, .form tr, .form td, .form th {
    display: block;
  }
}
.form th {
  width: 400px;
  background-color: var(--bgSubColor);
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 1080px) {
  .form th {
    width: auto;
  }
}
.form th span {
  font-size: 13px;
}
@media screen and (max-width: 896px) {
  .form td {
    border: none;
    min-height: 46px;
  }
}
.form input[type=text],
.form input[type=email],
.form textarea,
.form select {
  width: 100%;
  padding: 0.2em 0.5em;
  border: 1px solid #777777;
  border-radius: 0;
  font-size: 16px;
  font-family: var(--jaFont);
  color: var(--fontMainColor);
}
.form .mwform-tel-field input {
  max-width: 70px;
}
.form select {
  max-width: 250px;
  cursor: pointer;
  background-color: #fff;
}
.form .submit-wrap {
  margin-top: 50px;
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .form .submit-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }
}
.form .submit, .form .back {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: none;
  max-width: 140px;
  width: 100%;
  background-color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--black);
  color: var(--fontMainColor);
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .form .submit:hover, .form .back:hover {
    opacity: 0.8;
  }
}
.form .policy {
  font-weight: bold;
  padding-right: 1.2em;
  background-image: url(../img/common/newtab_black.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right center;
  display: inline-block;
  margin-bottom: 0.5em;
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .form .policy:hover {
    text-decoration: none;
  }
}
.form input[type=checkbox] {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  cursor: pointer;
  background-repeat: no-repeat;
  background-image: url(../img/common/check.svg);
  background-position: center;
  background-size: 12px;
  border: 1px solid #777777;
  border-radius: 0;
}
.form input[type=checkbox]:checked {
  background-color: var(--baseColor);
}
.form label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form label span {
  font-weight: 700;
}
.form .must::before {
  content: "必須";
  display: inline-block;
  margin-left: 1em;
  margin-right: 0;
  float: right;
  width: 50px;
  color: #ffffff;
  background-color: var(--baseColor);
  text-align: center;
  line-height: 1.1;
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
  padding: 0.2em;
}
@media screen and (max-width: 640px) {
  .form .must::before {
    margin-top: 2px;
  }
}

.confirm-block {
  display: none;
}

@media screen and (max-width: 640px) {
  .mw_wp_form_confirm .form {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.mw_wp_form_confirm .confirm-none {
  display: none;
}
.mw_wp_form_confirm .confirm-block {
  display: block;
}

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

/* ---------------------------
  info
----------------------------- */
.info-list__item {
  border-bottom: 1px solid var(--borderMainColor);
}
.info-list__item:first-of-type {
  border-top: 1px solid var(--borderMainColor);
}
.info-list__item a {
  display: flex;
  align-items: center;
  padding: 28px 20px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .info-list__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .info-list__item a {
    display: block;
    padding: 16px 16px 18px;
  }
}
.info-list__item time {
  display: block;
  width: 120px;
  font-weight: 700;
  padding-right: 1em;
}
@media screen and (max-width: 640px) {
  .info-list__item time {
    width: 100%;
    margin-bottom: 0.2em;
    font-size: 14px;
  }
}
.info-list__item .title {
  width: calc(100% - 120px);
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .info-list__item .title {
    width: 100%;
  }
}

/* ---------------------------
  page navi
----------------------------- */
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin: 4px;
  border: 1px solid var(--baseColor);
  background-color: var(--baseColor);
  color: #ffffff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 12px;
    height: 32px;
    width: 32px;
  }
}
.wp-pagenavi span.current {
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #333333;
}
.wp-pagenavi a {
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .wp-pagenavi a:hover {
    opacity: 0.8;
  }
}

/* ---------------------------
  info single
----------------------------- */
.info-single-head time {
  display: block;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .info-single-head time {
    font-size: 12px;
    text-align: left;
    margin-bottom: 1em;
  }
}
.info-single-head h1 {
  border-left: 5px solid var(--baseColor);
  font-size: 24px;
  font-weight: 700;
  padding-left: 0.5em;
}
@media screen and (max-width: 896px) {
  .info-single-head h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .info-single-head h1 {
    font-size: 18px;
    border-width: 3px;
  }
}

.info-single-body {
  padding-top: 40px;
}
@media screen and (max-width: 640px) {
  .info-single-body {
    padding-top: 30px;
  }
}

.info-single-back {
  margin: 100px auto 0;
}
@media screen and (max-width: 640px) {
  .info-single-back {
    margin-top: 40px;
  }
}

/* ---------------------------
  interview
----------------------------- */
.interview-list {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .interview-list {
    gap: 40px;
  }
}
@media screen and (max-width: 896px) {
  .interview-list {
    gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  .interview-list {
    grid-template-columns: repeat(3, 280px);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    overflow-x: auto;
  }
}

.interview-list__item .c-more {
  margin-left: auto;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .interview-list__item .c-more {
    margin-top: 20px;
  }
}

.interview-list-thumb {
  overflow: hidden;
  aspect-ratio: 360/480;
  position: relative;
}
.interview-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-list-text {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding-left: 20px;
}

.interview-list-text-inner {
  background-color: #fff;
  max-width: 290px;
  padding: 30px;
  padding-bottom: 0;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .interview-list-text-inner {
    padding: 20px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 896px) {
  .interview-list-text-inner {
    padding: 16px;
    padding-bottom: 0;
  }
}

.interview-list-text__cat {
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  background-color: var(--baseColor);
  width: 90px;
  padding: 0.2em;
  margin-bottom: 16px;
}
@media screen and (max-width: 1080px) {
  .interview-list-text__cat {
    margin-bottom: 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 896px) {
  .interview-list-text__cat {
    padding: 0;
  }
}

.interview-list-text__title {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1080px) {
  .interview-list-text__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 896px) {
  .interview-list-text__title {
    font-size: 14px;
  }
}

/* ---------------------------
  interview - single
----------------------------- */
.interview-section {
  margin-top: calc(-13% - 600px);
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 896px) {
  .interview-section {
    margin-top: calc(-13% - 400px);
  }
}
@media screen and (max-width: 640px) {
  .interview-section {
    margin-top: calc(-13% - 200px);
  }
}

.interview-post {
  padding: 0 100px 100px;
  background-color: var(--bgSubColor);
}
@media screen and (max-width: 1280px) {
  .interview-post {
    padding: 0 80px 100px;
  }
}
@media screen and (max-width: 896px) {
  .interview-post {
    padding: 0 40px 80px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post {
    padding: 0 16px 30px;
  }
}
.interview-post .head {
  display: flex;
  padding-bottom: 50px;
}
@media screen and (max-width: 896px) {
  .interview-post .head {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .interview-post .head {
    padding-bottom: 30px;
  }
}
.interview-post .head__img {
  width: calc(50% + 50vw - 740px + 140px);
  margin-left: calc(-50vw + 740px - 140px);
}
@media screen and (max-width: 1480px) {
  .interview-post .head__img {
    width: calc(50% + 140px);
    margin-left: -140px;
  }
}
@media screen and (max-width: 896px) {
  .interview-post .head__img {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post .head__img {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}
.interview-post .head__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.interview-post .head__text {
  width: 50%;
  padding-top: 60px;
  padding-left: 100px;
}
@media screen and (max-width: 1480px) {
  .interview-post .head__text {
    padding-left: 80px;
  }
}
@media screen and (max-width: 1080px) {
  .interview-post .head__text {
    padding-left: 60px;
  }
}
@media screen and (max-width: 896px) {
  .interview-post .head__text {
    width: 100%;
    padding-left: 0;
    padding-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post .head__text {
    padding-top: 30px;
  }
}
.interview-post h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 1480px) {
  .interview-post h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .interview-post h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 896px) {
  .interview-post h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 1.2em;
  }
}
.interview-post table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.interview-post caption {
  color: #ffffff;
  background-color: var(--baseColor);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-right: auto;
  width: fit-content;
  padding: 0.2em 2em;
  margin-bottom: 2em;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .interview-post caption {
    font-size: 12px;
    margin-bottom: 1.5em;
  }
}
.interview-post tr {
  border-top: 1px solid var(--borderMainColor);
}
.interview-post th, .interview-post td {
  font-size: 15px;
  vertical-align: middle;
  padding: 1em;
}
@media screen and (max-width: 640px) {
  .interview-post th, .interview-post td {
    font-size: 13px;
  }
}
.interview-post th {
  width: 100px;
  text-align: right;
  font-weight: 700;
}
.interview-post td {
  font-weight: 500;
  padding-left: 1.5em;
}
.interview-post section {
  padding: 50px 0;
}
@media screen and (max-width: 640px) {
  .interview-post section {
    padding: 20px 0;
  }
}
.interview-post section:last-of-type {
  padding-bottom: 0;
}
.interview-post section > *:first-child {
  margin-top: 0 !important;
}
.interview-post section > *:last-child {
  margin-bottom: 0 !important;
}
.interview-post h2 {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 640px) {
  .interview-post h2 {
    margin-bottom: 2em;
  }
}
.interview-post h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 1em 0;
}
@media screen and (max-width: 896px) {
  .interview-post h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post h3 {
    font-size: 18px;
  }
}
.interview-post h3::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: var(--baseColor);
  margin-right: 20px;
  margin-bottom: 9px;
}
@media screen and (max-width: 896px) {
  .interview-post h3::before {
    width: 40px;
    margin-right: 10px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post h3::before {
    width: 30px;
    margin-right: 10px;
  }
}
.interview-post p {
  line-height: 2.5;
  font-weight: 500;
  margin: 1em 0;
  padding-left: 200px;
}
@media screen and (max-width: 1080px) {
  .interview-post p {
    padding-left: 100px;
  }
}
@media screen and (max-width: 896px) {
  .interview-post p {
    padding-left: 80px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post p {
    padding-left: 0;
    line-height: 2;
    font-size: 14px;
  }
}
.interview-post img {
  margin: 100px auto;
}
@media screen and (max-width: 896px) {
  .interview-post img {
    margin: 50px auto;
  }
}
@media screen and (max-width: 640px) {
  .interview-post img {
    margin: 30px auto;
  }
}
.interview-post dl {
  display: flex;
  flex-wrap: wrap;
  padding-left: 100px;
}
@media screen and (max-width: 1080px) {
  .interview-post dl {
    padding-left: 40px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post dl {
    padding-left: 0;
  }
}
.interview-post dl + .notice {
  font-weight: bold;
  padding-left: 100px;
}
@media screen and (max-width: 1080px) {
  .interview-post dl + .notice {
    padding-left: 40px;
  }
}
@media screen and (max-width: 640px) {
  .interview-post dl + .notice {
    padding-left: 0;
  }
}
.interview-post dt {
  width: 100px;
  height: fit-content;
  text-align: center;
  padding: 0.3em;
  background-color: #ffffff;
  border: 2px solid var(--black);
  border-radius: 0.6em;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .interview-post dt {
    margin-bottom: 16px;
    width: 80px;
    font-size: 14px;
  }
}
.interview-post dd {
  width: calc(100% - 100px);
  padding-left: 2.5em;
  font-weight: 700;
  margin-bottom: 24px;
  padding-top: 3px;
}
@media screen and (max-width: 640px) {
  .interview-post dd {
    width: calc(100% - 80px);
    padding-left: 1.5em;
    font-size: 14px;
    margin-bottom: 16px;
    padding-top: 4px;
  }
}

/* ---------------------------
interview - single
----------------------------- */
.thanks {
  max-width: 960px;
  margin: 0 auto 50px;
}

.thanks > h3 {
  text-align: center;
}

.thanks > p {
  text-align: center;
}

@media screen and (max-width: 640px) {
  .thanks > h3 {
    text-align: left;
  }
  .thanks > p {
    text-align: left;
  }
}
.poc {
  max-width: 280px;
  margin: 50px auto 0;
  padding: 2rem 0rem;
  border: solid 1px #1A1A1A;
}

.poc > p {
  text-align: center;
}

/* ---------------------------
  New graduate
----------------------------- */
.newgraduate-link-inner {
  margin-bottom: 8em;
  display: flex;
  flex-flow: column;
  padding-bottom: 0;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .newgraduate-link-inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .newgraduate-link-inner {
    margin-bottom: 0em;
    padding-bottom: 0;
    display: block;
  }
}
.newgraduate-link-inner a {
  margin:1.0em auto;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100px;
  color: #ffffff;
  background-color: var(--baseColor);
  font-size: 18px;
  padding: 0 80px;
  background-image: url(../img/common/right_arrow_white.svg);
  background-position: center right 60px;
  background-repeat: no-repeat;
  background-size: 14px;
  transition: 0.2s ease-in;
}
@media screen and (max-width: 1080px) {
  .newgraduate-link-inner a {
    background-position: center right 20px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 640px) {
  .newgraduate-link-inner a {
    width: 100%;
    font-size: 16px;
    height: 80px;
    background-size: 10px;
  }
}
.newgraduate-link-inner a:last-of-type {
  background-color: var(--wineRed);
}
.newgraduate-link-inner span {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .newgraduate-link-inner span {
    font-size: 12px;
  }
}

/* ---------------------------
  404
----------------------------- */
.e404 {
  margin-top: 3em;
}

/*-----------------------------
ギャラリー
------------------------------*/
.gallery { /** ギャラリーを囲むボックス **/
	width: 95%;
	margin: 0 auto 20px !important;
    overflow: hidden;
}

.gallery br {display: none;} /** 自動で挿入される clearfix の余白解除 **/

.gallery-item { /** 画像共通のスタイル **/
    float: left;
	margin-bottom: 0 !important;
}
.gallery-icon { /** 画像を囲む dt のスタイル **/
    text-align: center;
}

.gallery-icon img {
	margin-bottom: 10px !important;
  margin-inline: auto;
}

.gallery-caption { /** キャプション **/
    color: #222;
    font-size: 13px;
    margin: 0 0 10px;
    text-align: center;
}

.gallery-columns-1 .gallery-item { /** カラムなし **/
    width: 100%;
    margin-right: 0;
}
.gallery-columns-2 .gallery-item { /** 2カラム **/
	width: 48%;
	margin: 0 1%;
}
.gallery-columns-3 .gallery-item { /** 3カラム **/
    width: 31.33333%;
	margin: 0 1%;
}
.gallery-columns-4 .gallery-item { /** 4カラム **/
    width: 23%;
    margin: 0 1%;
}
.gallery-columns-5 .gallery-item { /** 5カラム **/
    width: 18%;
    margin: 0 1%;
}

@media screen and (max-width: 640px) {
	/* 640px以下用の記述 */
	.gallery-columns-2 .gallery-item, .gallery-columns-4 .gallery-item {
    width: 100%;
    margin-right: 0;
	}	.gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    width: 100%;
    margin-right: 0;
	}
	.gallery-columns-5 .gallery-item {
    width: 100%;
    margin-right: 0;
	}
}