/*----------------------------------

reset

----------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

li,
ol {
  list-style: none;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

/*----------------------------------

common

----------------------------------*/
html {
  font-size: 62.5%;
  overflow: visible;
}

body {
  color: #333333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1.75;
  background: #fff;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

svg {
  vertical-align: middle;
}

.fadein {
  opacity: 0;
  z-index: 1;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translateY(55px);
            transform: translateY(55px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translateY(55px);
            transform: translateY(55px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.slidein::before {
  opacity: 0;
}

.slideIn1::before {
  -webkit-animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slideIn2::before {
  -webkit-animation: slideIn2 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn2 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn2 {
  0% {
    -webkit-transform: translateY(180px);
            transform: translateY(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn2 {
  0% {
    -webkit-transform: translateY(180px);
            transform: translateY(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
/*----------------------------------

header

----------------------------------*/
header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header.scroll {
  background: #fff;
}
header.scroll .entry_btn {
  background: #60b5ea;
  color: #fff;
}
@media (min-width: 768px) {
  header.scroll .entry_btn:hover {
    background: #60b5ea;
    color: #fff;
  }
}
@media (min-width: 768px) {
  header.scroll .recruit_pamphlet:hover {
    opacity: 0.7;
  }
}
header.scroll .recruit_pamphlet span {
  color: #0268AA;
}
header.scroll .recruit_pamphlet .recruit_pamphlet_img_off {
  opacity: 0;
}
header.scroll .recruit_pamphlet .recruit_pamphlet_img_on {
  opacity: 1;
}
header .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 54px;
}
@media (max-width: 767px) {
  header .logo {
    padding-left: 12px;
  }
}
@media (max-width: 950px) {
  header .logo a {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  header .logo a {
    max-width: 160px;
  }
}
header .logo a img {
  display: block;
  width: 435px;
}
header .header_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 68px;
}
@media (max-width: 1600px) {
  header .header_menu {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  header .header_menu {
    gap: 20px;
  }
}
header .header_menu_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 68px;
}
@media (max-width: 1700px) {
  header .header_menu_nav {
    gap: 30px;
  }
}
@media (max-width: 1500px) {
  header .header_menu_nav {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  header .header_menu_nav {
    display: none;
  }
}
header .header_menu_nav li a {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 1500px) {
  header .header_menu_nav li a {
    font-size: 1.6rem;
  }
}
header .header_menu .btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header .recruit_pamphlet {
  text-align: center;
  margin-top: 23px;
  margin-right: 17px;
  position: relative;
}
@media (max-width: 767px) {
  header .recruit_pamphlet {
    margin: 10px 10px 0 0;
  }
}
header .recruit_pamphlet_img {
  display: block;
  width: 70.43px;
  height: 49.167px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  header .recruit_pamphlet_img {
    width: 20px;
    height: 13px;
  }
}
header .recruit_pamphlet_img img {
  width: 100%;
}
header .recruit_pamphlet_img_off, header .recruit_pamphlet_img_on {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
header .recruit_pamphlet_img_on {
  opacity: 0;
}
header .recruit_pamphlet_img_off {
  opacity: 1;
}
header .recruit_pamphlet span {
  display: block;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  header .recruit_pamphlet span {
    margin-top: 5px;
    font-size: 1rem;
    line-height: 1.2;
  }
}
header .recruit_pamphlet:hover {
  opacity: 1;
}
header .recruit_pamphlet:hover .recruit_pamphlet_img_off {
  opacity: 0;
}
header .recruit_pamphlet:hover .recruit_pamphlet_img_on {
  opacity: 1;
}
header .recruit_pamphlet:hover span {
  color: #0268AA;
}
header .entry_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 119px;
  height: 119px;
  background: #fff;
  color: #00a0e9;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}
@media (max-width: 767px) {
  header .entry_btn {
    width: 59px;
    height: 60px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  header .entry_btn:hover {
    background: #fff;
    color: #60b5ea;
    opacity: 1;
    border-radius: 50%;
  }
}
header .entry_btn span {
  position: relative;
  top: -2px;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  header .entry_btn span {
    top: -1px;
    left: -1px;
  }
}
header .hamburger {
  display: block;
  position: relative;
  width: 119px;
  height: 119px;
  margin-left: auto;
  border: none;
  background: #1f1f1f;
  z-index: 10;
  -webkit-transition: border-radius 0.3s;
  transition: border-radius 0.3s;
}
@media (max-width: 767px) {
  header .hamburger {
    width: 59px;
    height: 60px;
  }
}
header .hamburger:hover {
  border-radius: 50%;
}
header .hamburger.active {
  border-radius: 50%;
}
header .hamburger.active .hamburger_line::before, header .hamburger.active .hamburger_line::after {
  top: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
}
header .hamburger.active .hamburger_line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .hamburger.active .hamburger_line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .hamburger_line {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 10px;
  margin: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 767px) {
  header .hamburger_line {
    width: 23px;
    height: 6px;
  }
}
header .hamburger_line::before, header .hamburger_line::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100%;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}
header .hamburger_line::before {
  top: 0;
}
header .hamburger_line::after {
  top: 5px;
  width: 50%;
}
header .hamburger_menu {
  display: block;
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 160, 233, 0.95);
  padding: 259px 0 144px;
  visibility: hidden;
  opacity: 0;
  top: -100dvh;
  left: 100dvw;
  overflow-y: scroll;
  -webkit-transition: visibility 0.3s, opacity 0.3s, top 0.3s, left 0.3s;
  transition: visibility 0.3s, opacity 0.3s, top 0.3s, left 0.3s;
}
@media (max-width: 767px) {
  header .hamburger_menu {
    padding: 80px 0;
  }
}
header .hamburger_menu.open {
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0;
}
header .hamburger_menu_inner {
  width: 100%;
  max-width: 1594px;
  padding: 0 40px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 71px 100px;
}
@media (max-width: 1400px) {
  header .hamburger_menu_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  header .hamburger_menu_inner {
    max-width: 100%;
    padding: 0 12px;
    gap: 24px 0;
  }
}
header .hamburger_menu_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
header .hamburger_menu_box_en {
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 8px 20px 9px 0;
  border-right: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
  width: 120px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 7px;
}
header .hamburger_menu_box_item {
  width: calc(100% - 140px);
}
header .hamburger_menu_box_item_title {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ffffff;
  margin-top: 2px;
}
@media (max-width: 767px) {
  header .hamburger_menu_box_item_title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
header .hamburger_menu_box_item_title a {
  color: #ffffff;
}
header .hamburger_menu_box_item_title a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(/recruitsite/img/common/icon_blank_white.svg) no-repeat;
  background-size: 100% auto;
  position: relative;
  left: 12px;
}
@media (max-width: 767px) {
  header .hamburger_menu_box_item_title a::after {
    top: 3px;
  }
}
header .hamburger_menu_box_item_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  header .hamburger_menu_box_item_list {
    gap: 12px;
  }
}
header .hamburger_menu_box_item_list li a {
  color: #ffffff;
  font-weight: 500;
}
header .hamburger_menu_box.menu_introduction {
  max-width: 380px;
  width: 26%;
}
@media (max-width: 1400px) {
  header .hamburger_menu_box.menu_introduction {
    width: 100%;
    max-width: 100%;
  }
}
header .hamburger_menu_box.menu_works {
  max-width: 459px;
  width: 31%;
}
@media (max-width: 1400px) {
  header .hamburger_menu_box.menu_works {
    width: 100%;
    max-width: 100%;
  }
}
header .hamburger_menu_box.menu_people {
  max-width: 475px;
  width: 32%;
}
@media (max-width: 1400px) {
  header .hamburger_menu_box.menu_people {
    width: 100%;
    max-width: 100%;
  }
}
header .hamburger_menu_box.menu_environment {
  max-width: 380px;
  width: 26%;
}
@media (max-width: 1400px) {
  header .hamburger_menu_box.menu_environment {
    width: 100%;
    max-width: 100%;
  }
}
header .hamburger_menu_box.menu_recruit {
  max-width: 491px;
  width: 33%;
}
@media (max-width: 1400px) {
  header .hamburger_menu_box.menu_recruit {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  header .hamburger_menu_sns {
    position: absolute;
    top: 86px;
    left: 0;
  }
}

body.page .recruit_pamphlet:hover {
  opacity: 0.7;
}
body.page .recruit_pamphlet span {
  color: #0268AA;
}
body.page .recruit_pamphlet .recruit_pamphlet_img_off {
  opacity: 0;
}
body.page .recruit_pamphlet .recruit_pamphlet_img_on {
  opacity: 1;
}

/*----------------------------------

footer

----------------------------------*/
.footer_main, .footer_copy {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .footer_main, .footer_copy {
    padding: 0 12px;
  }
}
.footer .inner {
  position: relative;
  width: 100%;
}
.footer_main .inner {
  padding: 62px 0 72px;
}
@media (max-width: 767px) {
  .footer_main .inner {
    padding: 43px 0 0;
  }
}
.footer_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px 40px;
}
@media (max-width: 767px) {
  .footer_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.footer_logo > a img {
  width: 484px;
}
@media (max-width: 767px) {
  .footer_logo > a img {
    width: 100%;
    max-width: 484px;
  }
}
.footer_snsarea_block {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .footer_snsarea_block {
    margin-top: 24px;
  }
}
.footer_snsarea_block a {
  display: inline-block;
}
@media (max-width: 767px) {
  .footer_snsarea_block a {
    width: 44px;
    display: inline-block;
  }
}
.footer_snsarea_block a:first-child {
  margin-right: 10px;
}
.footer_navigation {
  max-width: 1053px;
}
.footer_navigation_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 73px 76px;
}
@media (max-width: 1150px) {
  .footer_navigation_block {
    gap: 73px 0;
  }
}
@media (max-width: 767px) {
  .footer_navigation_block {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    border-bottom: 1px solid #A1A1A1;
  }
}
.footer_navigation_layout {
  width: 300px;
}
@media (max-width: 1000px) {
  .footer_navigation_layout {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .footer_navigation_layout {
    width: 100%;
    border-top: 1px solid #A1A1A1;
  }
}
.footer_navigation_head {
  margin-bottom: 46px;
  color: #0a2466;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 0.786;
  letter-spacing: 0.06em;
}
.footer_navigation_head:only-child {
  margin-bottom: 0;
}
.footer_navigation_head:only-child::before, .footer_navigation_head:only-child::after {
  content: none;
}
@media (max-width: 767px) {
  .footer_navigation_head {
    margin-bottom: 0;
    padding: 29px 12px;
    position: relative;
  }
  .footer_navigation_head.active::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer_navigation_head::before, .footer_navigation_head::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 16px;
    background: #707070;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer_navigation_head::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.footer_navigation_head .en {
  display: block;
  margin-bottom: 17px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .footer_navigation_head .en {
    display: none;
  }
}
.footer_navigation_head a {
  color: #0a2466;
}
.footer_navigation_head a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/recruitsite/img/common/icon_blank.svg) no-repeat;
  background-size: 100% auto;
  position: relative;
  left: 7px;
}
@media (max-width: 767px) {
  .footer_navigation_body {
    display: none;
    margin-bottom: 26px;
    padding: 0 12px;
  }
}
.footer_navigation_item {
  font-size: 1.6rem;
  margin-bottom: 17px;
  line-height: 1.6;
}
.footer_navigation_item:last-child {
  margin-bottom: 0;
}
.footer_copy .inner {
  padding-top: 36px;
  padding-bottom: 57px;
}
@media (max-width: 767px) {
  .footer_copy .inner {
    position: static;
    padding: 24px 0 10px;
  }
}
.footer_copy_logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .footer_copy_logo {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer_copy_text {
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
  color: #0a2466;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .footer_copy_text {
    font-size: 1rem;
  }
}

.c_page {
  background-color: #F2FAFF;
  background-image: url("/recruitsite/img/common/c_bg.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.c_page .content {
  padding-top: 119px;
}
@media (max-width: 767px) {
  .c_page .content {
    padding-top: 80px;
  }
}

.c_bg_white {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.c_inner {
  width: 100%;
  max-width: 1760px;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c_inner {
    padding: 0 12px;
  }
}

.c_hdg1 {
  position: relative;
  font-size: 6.8rem;
  letter-spacing: 0.28em;
  color: #333333;
  font-weight: 400;
}
@media (max-width: 767px) {
  .c_hdg1 {
    font-size: 3.2rem;
    letter-spacing: 0.14em;
  }
}
.c_hdg1 .en {
  font-family: "Work Sans", serif;
  display: block;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #042B65;
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .c_hdg1 .en {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.c_hdg1 .blue {
  color: #00A0E9;
}

.c_hdg2 {
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-align: center;
}
@media (max-width: 767px) {
  .c_hdg2 {
    font-size: 2.4rem;
    letter-spacing: 0.14em;
  }
}
.c_hdg2 span {
  color: #00A0E9;
}

.c_hdg2_2 {
  text-align: center;
  position: relative;
}
.c_hdg2_2 h2 {
  font-family: "Work Sans", serif;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .c_hdg2_2 h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.c_hdg2_2 h2 span {
  color: #00A0E9;
}
.c_hdg2_2 > span {
  display: block;
  font-size: 2rem;
  margin-bottom: 21px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .c_hdg2_2 > span {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.c_hdg2_2 > p {
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c_hdg2_2 > p {
    font-size: 2rem;
  }
}

.c_lead {
  width: 100%;
  max-width: 793px;
  margin: 0 auto;
  padding-top: 98px;
}
@media (max-width: 767px) {
  .c_lead {
    max-width: 100%;
    padding-top: 70px;
  }
}

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

.c_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .c_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c_flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .c_flex.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c_category {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 7px 19px;
  border: solid 1px #0268AA;
  border-radius: 18px;
  background-color: #0268AA;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
@media (max-width: 767px) {
  .c_category {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 2px 10px;
    font-size: 1.6rem;
  }
}
.c_category.color01 {
  background-color: #02AA87;
  border: none;
}
.c_category.color02 {
  background-color: #0203AA;
  border: none;
}
.c_category.color03 {
  background-color: #AA4402;
  border: none;
}
.c_category.color04 {
  background-color: #8C701C;
  border: none;
}
.c_category.color05 {
  background-color: #AA028A;
  border: none;
}
.c_category.color06 {
  background-color: #429C05;
  border: none;
}

.c_title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c_title {
    font-size: 2rem;
  }
}