@charset "UTF-8";
/* ==========================================================================
リセット
========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
----------------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

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

[hidden],
template {
  display: none;
}

/* Links
----------------------------------------------------------------- */
a {
  background-color: transparent;
}

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

/* Text-level semantics
----------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
}

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

/* Grouping content
----------------------------------------------------------------- */
figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

/* Forms
----------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  outline: none;
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  border: none;
  padding: 0;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Tables
----------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
ブレイクポイント
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html {
  color: #303030;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-justify: inter-ideograph;
  vertical-align: baseline;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.f-common-wrap {
  overflow: clip;
}

a {
  color: #303030;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

hr {
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  text-align: inherit;
  margin: 0 0 0 0;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul li {
  list-style-type: none;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: 100%;
  text-align: justify;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

figure {
  margin: 0;
}

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-==========================================================================
特定の画面幅で表示・非表示するクラス（CSSの順番の上書きの関係で、utilityフォルダには置かず、こちらに記載)
==========================================================================*/
@media screen and (min-width: 1401px) {
  .f-visible-1400 {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  .f-visible-1400 {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .f-visible-1400pc {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .f-visible-1400pc {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-1400pclp {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .f-visible-1400pclp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-lp {
    display: none !important;
  }
}
@media screen and (min-width: 821px) and (max-width: 992px) {
  .f-visible-lp {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-lp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-lptbsp {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .f-visible-lptbsp {
    display: block;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-tb {
    display: none !important;
  }
}
@media screen and (min-width: 577px) and (max-width: 820px) {
  .f-visible-tb {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-tb {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-1400pclptb {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-1400pclptb {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-tbsp {
    display: none !important;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-tbsp {
    display: block;
  }
}

@media screen and (min-width: 577px) {
  .f-visible-1400pclptbsp {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-1400pclptbsp {
    display: none !important;
  }
}

@media screen and (min-width: 577px) {
  .f-visible-sp {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-sp {
    display: block;
  }
}

/* ==========================================================================
ヘッダー
========================================================================== */
header {
  position: absolute;
  z-index: 10;
  padding-left: 35px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  header {
    padding-left: 20px;
  }
}

.l-header {
  height: 90px;
  z-index: 1010;
  position: relative;
  width: 100%;
  padding-right: 450px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .l-header {
    padding-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .l-header {
    height: 62px;
  }
}

.l-header-logo {
  position: relative;
  color: #fff;
  max-width: 510px;
  height: 90px;
}
@media screen and (max-width: 576px) {
  .l-header-logo {
    width: 75%;
    height: 62px;
  }
}
.l-header-logo h1 {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header-logo h1 a {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
}
@media screen and (max-width: 820px) {
  .l-header-logo h1 a {
    line-height: 20px;
  }
}
.l-header-logo h1 a:hover {
  opacity: 0.75;
}
.l-header-logo h1 a img {
  width: 321px;
  margin-right: 15px;
}
@media screen and (max-width: 820px) {
  .l-header-logo h1 a img {
    width: 258px;
  }
}
@media screen and (max-width: 576px) {
  .l-header-logo h1 a img {
    width: 209px;
  }
}
.l-header-logo h1 a span {
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .l-header-logo h1 a span {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .l-header-logo h1 a span {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

/* エントリー
----------------------------------------------------------------- */
.l-header-entry {
  position: fixed;
  z-index: 10;
  right: 110px;
  top: 13px;
}
@media screen and (max-width: 640px) {
  .l-header-entry {
    display: none;
  }
}
.l-header-entry a {
  width: 248px;
  background-color: #00adff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 100px;
  padding: 18px;
  text-align: center;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 820px) {
  .l-header-entry a {
    font-size: 14px;
    font-size: 0.875rem;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.l-header-entry a img {
  margin-left: 1.5em;
}
@media screen and (max-width: 820px) {
  .l-header-entry a img {
    width: 22px;
  }
}

/* ドロワーメニュー
----------------------------------------------------------------- */
.l-overlay {
  background-color: rgba(48, 48, 48, 0.4);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 3;
  -webkit-transition: 1s;
  transition: 1s;
}

body.open .l-overlay {
  opacity: 1;
  visibility: visible;
}

.l-toggle {
  display: block;
  width: 72px;
  height: 72px;
  background-image: url(/recruit/resource/images/menu_open.svg);
  -webkit-transition: background-image 0.1s linear;
  transition: background-image 0.1s linear;
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 20;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 36px;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .l-toggle {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 576px) {
  .l-toggle {
    width: 50px;
    height: 50px;
  }
}

body.open {
  overflow: hidden;
}
body.open .l-toggle {
  background-image: url(/recruit/resource/images/menu_close.svg);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.l-drawer {
  display: none;
  width: 368px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
.l-drawer .l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.l-drawer .l-drawer-body .l-drawer-nav-main {
  position: relative;
  background-color: #004ac2;
  padding: 60px 50px 60px 50px;
  border-bottom-left-radius: 40px;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a {
  color: #fff;
  padding: 10px 0;
  display: block;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a:after {
  content: "";
  width: 10px;
  height: 11px;
  background-image: url(/recruit/resource/images/ico_arrow_drawer.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion {
  width: 100%;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion li {
  position: relative;
  padding-left: 30px;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn {
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn::before, .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #004ac2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn.close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn.close::after {
  display: none;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content {
  display: none;
  margin-left: -10px;
  padding-bottom: 1em;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu {
  margin: 0;
  border-bottom: none;
  padding-left: 0;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  text-indent: 1em;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu a:before {
  content: "-";
  margin-right: 5px;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu a::after {
  display: none;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--contact {
  margin-top: 1.25rem;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--contact .c-btn-main {
  max-width: 248px;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--contact .c-btn-main a {
  background-color: #00adff;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
  line-height: 4.5;
  -webkit-box-shadow: 2px 2px 5px rgba(7, 48, 109, 0.6);
          box-shadow: 2px 2px 5px rgba(7, 48, 109, 0.6);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--contact .c-btn-main a::after {
  display: none;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--contact .c-btn-main a:hover {
  opacity: 0.8;
  background-image: url(/recruit/resource/images/ico_arrow_button.svg) !important;
}

/* ==========================================================================
フッター
========================================================================== */
footer {
  background-color: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 200px;
}

.home footer,
.page-interview footer,
.page-career footer {
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

/* エントリー
----------------------------------------------------------------- */
.l-footer-entry {
  -webkit-transform: translateY(-240px);
          transform: translateY(-240px);
}

.l-footer-entry-contents {
  background-color: #004ac2;
  padding: 4.375rem 46% 4.375rem 4.375rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .l-footer-entry-contents {
    padding: 3.125rem 46% 3.125rem 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-entry-contents {
    padding: 2.5rem 2.5rem 53vw 2.5rem;
  }
}
@media screen and (max-width: 820px) {
  .l-footer-entry-contents .c-btn-main {
    max-width: 256px;
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-entry-contents .c-btn-main {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .l-footer-entry-contents .c-btn-main a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-entry-contents .c-ttl-lv1 {
    text-align: center;
  }
}

.l-footer-entry-contents-image {
  position: absolute;
  top: 40px;
  right: 50px;
  text-align: center;
  width: 40.2%;
}
@media screen and (max-width: 820px) {
  .l-footer-entry-contents-image {
    width: 52%;
    right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-entry-contents-image {
    right: 0;
    left: 0;
    bottom: -50px;
    top: auto;
    margin-left: auto;
    margin-right: auto;
    width: 70vw;
  }
}
.l-footer-entry-contents-image #arc {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .l-footer-entry-contents-image #arc {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-entry-contents-image #arc {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.l-footer-entry-contents-image img {
  margin-top: -10px;
}

.l-footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 7.5rem;
  margin-top: -100px;
}
@media screen and (max-width: 576px) {
  .l-footer-main {
    display: block;
    margin-top: -140px;
    padding-bottom: 5rem;
  }
}

.l-footer-logo {
  -ms-flex-preferred-size: 360px;
      flex-basis: 360px;
  color: #004ac2;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .l-footer-logo {
    -ms-flex-preferred-size: 282px;
        flex-basis: 282px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-logo {
    text-align: center;
  }
}
.l-footer-logo img {
  margin-bottom: 5px;
}
@media screen and (max-width: 576px) {
  .l-footer-logo img {
    max-width: 282px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer-logo .c-btn-main {
  width: 197px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 820px) {
  .l-footer-logo .c-btn-main {
    width: 157px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-logo .c-btn-main {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer-logo .c-btn-main a {
  background-color: #fff;
  border: 1px solid #004ac2;
  color: #004ac2;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 3.7;
  background-image: url(/recruit/resource/images/ico_ex_blue.svg);
  background-size: 9px auto;
  background-position: center right 20px;
}
@media screen and (max-width: 820px) {
  .l-footer-logo .c-btn-main a {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.l-footer-logo .c-btn-main a:hover {
  background-image: url(/recruit/resource/images/ico_ex_white.svg);
  background-color: #004ac2;
  color: #fff;
}

.l-footer-logo-data {
  color: #303030;
  margin-top: 3.125rem;
}
@media screen and (max-width: 820px) {
  .l-footer-logo-data {
    margin-top: 2.5rem;
  }
}
.l-footer-logo-data h3 {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 820px) {
  .l-footer-logo-data h3 {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.l-footer-logo-data p {
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  .l-footer-logo-data p {
    text-align: center;
  }
}

/* メニュー
----------------------------------------------------------------- */
.l-footer-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 7%;
}
.l-footer-nav .l-footer-nav-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* 折り返し有効 */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* 全体を右寄せ */
  gap: 40px;
  /* 要素間の余白を自動調整 */
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  /* ← これがポイント！ */
  max-width: 300px;
  /* オプション（広がりすぎ防止） */
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 120px;
            flex: 1 1 120px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent {
    width: 100%;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner {
  margin-bottom: 1em;
  border-bottom: 1px solid rgba(151, 151, 151, 0.5);
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner {
    margin-bottom: 1.875rem;
    text-align: center;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a {
  color: #004ac2;
  font-weight: 600;
  background-image: url(/recruit/resource/images/ico_arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-size: 6px 7px;
  background-position: center right;
  display: block;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a:hover {
  opacity: 0.7;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a.noevents {
  pointer-events: none;
  background-image: none;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child {
  font-size: 12px;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child {
    display: none;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 14px;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner {
    line-height: 1.2;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner a {
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner a {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner a:hover {
  opacity: 0.7;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  background-color: #303030;
  margin: 4px 4px 4px 0;
  width: 6px;
  height: 1px;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner:before {
    top: 3px;
  }
}

/* コピーライト
----------------------------------------------------------------- */
.l-copyright {
  background-color: #004ac2;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding: 13.5px 0;
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
a#pagetop {
  line-height: 0;
  position: fixed;
  right: 1.25rem;
  bottom: 3.75rem;
  z-index: 100;
}
a#pagetop img {
  width: 51px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  a#pagetop img {
    width: 41px;
  }
}
a#pagetop:hover img {
  opacity: 0.7;
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-title {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .l-page-title {
    height: 422px;
  }
}
.l-page-title .l-page-title-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 60px));
          transform: translate(-50%, calc(-50% - 60px));
  margin-top: 40px;
  width: 100%;
}
.l-page-title .l-page-title-inner .l-page-title-jp-parent {
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.l-page-title .l-page-title-inner .l-page-title-jp {
  color: #fff;
  font-size: 64px;
  font-size: 4rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .l-page-title .l-page-title-inner .l-page-title-jp {
    font-size: 58px;
    font-size: 3.625rem;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner .l-page-title-jp {
    font-size: 46px;
    font-size: 2.875rem;
  }
}
.l-page-title .l-page-title-inner .l-page-title-jp img {
  margin-right: 20px;
  width: 78px;
}
.l-page-title .l-page-title-inner .l-page-title-en {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .l-page-title .l-page-title-inner .l-page-title-en {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner .l-page-title-en {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.l-page-title .l-page-title-inner .l-page-title-en::first-letter {
  color: #00adff;
}
.l-page-title .l-page-title-inner .l-page-title-en--sm {
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 576px) {
  .page-interview .l-page-title .l-page-title-inner .l-page-title-jp,
  .page-career .l-page-title .l-page-title-inner .l-page-title-jp {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec-small {
  padding: 1rem 0;
}

.l-sec-medium {
  padding: 2.5rem 0;
}

.l-sec-large {
  padding: 4rem 0;
}
@media screen and (max-width: 576px) {
  .l-sec-large {
    padding: 3.75rem 0;
  }
}

.l-sec-xlarge {
  padding: 5rem 0;
}
@media screen and (max-width: 576px) {
  .l-sec-xlarge {
    padding: 3.75rem 0;
  }
}

.l-sec-xxlarge {
  padding: 8.75rem 0;
}
@media screen and (max-width: 820px) {
  .l-sec-xxlarge {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 576px) {
  .l-sec-xxlarge {
    padding: 3.75rem 0;
  }
}

.l-sec-xxlarge-remove-top {
  padding: 0 0 6.5rem;
}
@media screen and (max-width: 576px) {
  .l-sec-xxlarge-remove-top {
    padding: 0 0 6.5rem;
  }
}

.l-sec-xxxlarge-remove-top {
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 820px) {
  .l-sec-xxxlarge-remove-top {
    padding: 0 0 7.5rem;
  }
}
@media screen and (max-width: 576px) {
  .l-sec-xxxlarge-remove-top {
    padding: 0 0 6.25rem;
  }
}

/* 背景色あり */
.l-sec-bg {
  background-color: #f5f6f7;
  border-radius: 40px;
}
@media screen and (max-width: 576px) {
  .l-sec-bg {
    border-radius: 20px;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container-small,
.l-container-large {
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 576px) {
  .l-container,
  .l-container-small,
  .l-container-large {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.l-container {
  max-width: calc(980px + 12%);
}

.l-container-small {
  max-width: calc(720px + 12%);
}

.l-container-large {
  max-width: calc(1120px + 12%);
}

/* ==========================================================================
働く環境を知る
========================================================================== */
.l-environment-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .l-environment-flex {
    display: block;
  }
}

.l-environment-flex-box {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  background-color: #fff;
  padding: 5% 6.25%;
}
@media screen and (max-width: 576px) {
  .l-environment-flex-box {
    padding: 20px;
  }
}
@media screen and (max-width: 820px) {
  .l-environment-flex-box p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .l-environment-flex-box + .l-environment-flex-box {
    margin-top: 1.875rem;
  }
}

.l-environment__title {
  color: #004ac2;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 820px) {
  .l-environment__title {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.l-environment__title::before {
  content: "";
  width: 16px;
  height: 22px;
  background-image: url(/recruit/resource/images/environment_ico_title.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  margin-right: 0.5em;
}

.l-environment__catch {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  .l-environment__catch {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.l-environment-box {
  background-color: #f5f6f7;
  padding: 5% 6.25%;
}
@media screen and (max-width: 576px) {
  .l-environment-box {
    padding: 30px 20px;
  }
}
.l-environment-box + .l-environment-box {
  margin-top: 4.375rem;
}
@media screen and (max-width: 820px) {
  .l-environment-box p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .l-environment-box p {
    margin-bottom: 20px;
  }
}

.l-sec-bg .l-environment-box {
  background-color: #fff;
}

.l-environment-box-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .l-environment-box-thumbs {
    display: block;
    padding-bottom: 30px;
  }
}
.l-environment-box-thumbs figure {
  -ms-flex-preferred-size: 31.42%;
      flex-basis: 31.42%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 576px) {
  .l-environment-box-thumbs figure {
    margin: 0;
  }
}
.l-environment-box-thumbs figure:not(:nth-child(3n)) {
  margin-right: 2.87%;
}
@media screen and (max-width: 576px) {
  .l-environment-box-thumbs figure:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.l-environment-box-thumbs .slick-dots {
  bottom: 0;
}
.l-environment-box-thumbs .slick-dots li {
  width: 7px;
  height: 7px;
  margin: 0 7px;
  background-color: #d6d6d6;
}
.l-environment-box-thumbs .slick-dots li button {
  display: none;
}
.l-environment-box-thumbs .slick-dots li.slick-active {
  background-color: #004ac2;
}

.l-welfare-child-other {
  margin-bottom: 350px;
}

.l-environment-child-other-nav {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.375rem;
}
@media screen and (max-width: 576px) {
  .l-environment-child-other-nav {
    display: block;
  }
}

.l-environment-child-other-nav-box {
  -ms-flex-preferred-size: 46.57%;
      flex-basis: 46.57%;
  position: relative;
}
.l-environment-child-other-nav-box img {
  width: 100%;
}
.l-environment-child-other-nav-box a {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-top: 70%;
}
.l-environment-child-other-nav-box a .arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-image: url(/recruit/resource/images/ico_arrow_circle_right.png);
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-environment-child-other-nav-box a:hover .l-environment-child-other-nav-box__bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.l-environment-child-other-nav-box a:hover .arrow {
  background-image: url(/recruit/resource/images/ico_arrow_circle_right_blue.png);
}
@media screen and (max-width: 576px) {
  .l-environment-child-other-nav-box + .l-environment-child-other-nav-box {
    margin-top: 3.125rem;
  }
}

.l-environment-child-other-nav-box__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.l-environment-child-other-nav-box__label {
  background-color: #00adff;
  clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 7px 50px;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox （カスタマイズ可）
----------------------------------------------------------------- */
.c-flex,
.c-flex--align-items-center,
.c-flex--flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-2-clm,
.c-flex--align-items-center .c-flex-2-clm,
.c-flex--flex-start .c-flex-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-2-clm,
  .c-flex--align-items-center .c-flex-2-clm,
  .c-flex--flex-start .c-flex-2-clm {
    width: 100%;
  }
}
.c-flex .c-flex-3-clm,
.c-flex--align-items-center .c-flex-3-clm,
.c-flex--flex-start .c-flex-3-clm {
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-3-clm,
  .c-flex--align-items-center .c-flex-3-clm,
  .c-flex--flex-start .c-flex-3-clm {
    width: 100%;
  }
}
.c-flex .c-flex-4-clm,
.c-flex--align-items-center .c-flex-4-clm,
.c-flex--flex-start .c-flex-4-clm {
  width: 20%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-4-clm,
  .c-flex--align-items-center .c-flex-4-clm,
  .c-flex--flex-start .c-flex-4-clm {
    width: 100%;
  }
}
.c-flex .c-flex-5-clm,
.c-flex--align-items-center .c-flex-5-clm,
.c-flex--flex-start .c-flex-5-clm {
  width: 15%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-5-clm,
  .c-flex--align-items-center .c-flex-5-clm,
  .c-flex--flex-start .c-flex-5-clm {
    width: 100%;
  }
}
.c-flex .c-flex-flex-1,
.c-flex--align-items-center .c-flex-flex-1,
.c-flex--flex-start .c-flex-flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .c-flex,
  .c-flex--align-items-center,
  .c-flex--flex-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-flex--align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex--flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.5rem 5%;
}

/* FlexBox(既存のtemplateの仕組みを踏襲)
----------------------------------------------------------------- */
.c-flex-small,
.c-flex-medium,
.c-flex-large,
.c-flex-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-flex-small {
  gap: 1.25rem 1.25rem;
}
.c-flex-small .c-flex-5-clm,
.c-flex-small .c-flex-5-clm-sp {
  width: calc((100% - 80px) / 5);
}
.c-flex-small .c-flex-4-clm {
  width: calc((100% - 60px) / 4);
}
.c-flex-small .c-flex-3-clm {
  width: calc((100% - 40px) / 3);
}
.c-flex-small .c-flex-2-clm {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 820px) {
  .c-flex-small .c-flex-5-clm-sp {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 576px) {
  .c-flex-small .c-flex-5-clm,
  .c-flex-small .c-flex-4-clm,
  .c-flex-small .c-flex-3-clm,
  .c-flex-small .c-flex-2-clm {
    width: 100%;
  }
  .c-flex-small .c-flex-5-clm-sp {
    width: calc((100% - 20px) / 2);
  }
}

.c-flex-medium {
  gap: 2.5rem 2.5rem;
}
.c-flex-medium .c-flex-3-clm {
  width: calc((100% - 80px) / 3);
}
.c-flex-medium .c-flex-2-clm {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 576px) {
  .c-flex-medium .c-flex-3-clm,
  .c-flex-medium .c-flex-2-clm {
    width: 100%;
  }
}

.c-flex-large {
  gap: 2.5rem 3.75rem;
}
.c-flex-large .c-flex-3-clm {
  width: calc((100% - 120px) / 3);
}
.c-flex-large .c-flex-2-clm {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 576px) {
  .c-flex-large .c-flex-3-clm,
  .c-flex-large .c-flex-2-clm {
    width: 100%;
  }
}

.c-flex-collapse .c-flex-5-clm {
  width: 20%;
}
.c-flex-collapse .c-flex-4-clm {
  width: 25%;
}
.c-flex-collapse .c-flex-3-clm {
  width: 33.3333333333%;
}
.c-flex-collapse .c-flex-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-flex-collapse .c-flex-5-clm,
  .c-flex-collapse .c-flex-4-clm,
  .c-flex-collapse .c-flex-3-clm,
  .c-flex-collapse .c-flex-2-clm {
    width: 100%;
  }
}

/*-==========================================================================
グリッド
==========================================================================*/
/* グリッド　
----------------------------------------------------------------- */
.c-grid-small,
.c-grid-medium,
.c-grid-large,
.c-grid-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-grid-small > * {
  margin-left: 1%;
}
.c-grid-small > *:first-child {
  margin-left: 0;
}
.c-grid-small .c-grid-5-clm,
.c-grid-small .c-grid-5-clm-sp {
  width: 19.2%;
}
.c-grid-small .c-grid-4-clm {
  width: 24.25%;
}
.c-grid-small .c-grid-3-clm {
  width: 32.6666666667%;
}
.c-grid-small .c-grid-2-clm {
  width: 49.5%;
}
@media screen and (max-width: 576px) {
  .c-grid-small > * {
    margin-top: 1rem;
    margin-left: 0;
  }
  .c-grid-small > *:first-child {
    margin-top: 0;
  }
  .c-grid-small .c-grid-5-clm,
  .c-grid-small .c-grid-4-clm,
  .c-grid-small .c-grid-3-clm,
  .c-grid-small .c-grid-2-clm {
    width: 100%;
  }
  .c-grid-small .c-grid-5-clm-sp {
    width: 48%;
    margin-top: 0;
  }
  .c-grid-small .c-grid-5-clm-sp:nth-child(n+3) {
    margin-top: 1rem;
  }
  .c-grid-small .c-grid-5-clm-sp:nth-child(odd) {
    margin-right: 4%;
  }
}

.c-grid-medium > * {
  margin-left: 4%;
}
.c-grid-medium > *:first-child {
  margin-left: 0;
}
.c-grid-medium .c-grid-3-clm {
  width: 30.6666666667%;
}
.c-grid-medium .c-grid-2-clm {
  width: 48%;
}
@media screen and (max-width: 576px) {
  .c-grid-medium > * {
    margin-top: 1.875rem;
    margin-left: 0;
  }
  .c-grid-medium > *:first-child {
    margin-top: 0;
  }
  .c-grid-medium .c-grid-3-clm,
  .c-grid-medium .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-large > * {
  margin-left: 6%;
}
.c-grid-large > *:first-child {
  margin-left: 0;
}
.c-grid-large .c-grid-3-clm {
  width: 96%;
}
.c-grid-large .c-grid-2-clm {
  width: 47%;
}
@media screen and (max-width: 576px) {
  .c-grid-large > * {
    margin-top: 2.5rem;
    margin-left: 0;
  }
  .c-grid-large > *:first-child {
    margin-top: 0;
  }
  .c-grid-large .c-grid-3-clm,
  .c-grid-large .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-collapse .c-grid-5-clm {
  width: 20%;
}
.c-grid-collapse .c-grid-4-clm {
  width: 25%;
}
.c-grid-collapse .c-grid-3-clm {
  width: 33.3333333333%;
}
.c-grid-collapse .c-grid-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-grid-collapse .c-grid-5-clm,
  .c-grid-collapse .c-grid-4-clm,
  .c-grid-collapse .c-grid-3-clm,
  .c-grid-collapse .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-pdf:nth-child(n+6) {
  margin-top: 1.875rem;
}
.c-grid-pdf:nth-of-type(6n) {
  margin-left: 0 !important;
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li {
  position: relative;
  padding-left: 1.5rem;
}
.c-list-num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  font-weight: 800;
  margin-left: -1.5rem;
}

.c-list-num-divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num-divider li {
  border-bottom: 1px solid;
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.c-list-num-divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #004ac2;
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-left: -2rem;
}

.c-list-dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list-dot li:before {
  content: "・";
  font-weight: 700;
}

/* ==========================================================================
テーブル
=========================================================================*/
.c-tb-pattern1 tr {
  border-bottom: 1px solid;
}
.c-tb-pattern1 tr:first-child {
  border-top: 1px solid;
}
.c-tb-pattern1 tr th, .c-tb-pattern1 tr td {
  padding: 1rem;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern1 tr th, .c-tb-pattern1 tr td {
    line-height: 1.7;
  }
}
.c-tb-pattern1 tr th {
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern1 tr th {
    text-align: left;
  }
}

.c-tb-pattern2 {
  border: 1px solid;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr {
    border-top: 1px solid;
  }
  .c-tb-pattern2 tr:first-child {
    border: none;
  }
}
.c-tb-pattern2 tr th, .c-tb-pattern2 tr td {
  border: 1px solid;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr th, .c-tb-pattern2 tr td {
    display: block;
    border: none;
    line-height: 1.7;
  }
}
.c-tb-pattern2 tr th {
  color: #004ac2;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr th {
    width: 100%;
    padding: 1rem 0;
  }
}
.c-tb-pattern2 tr td dl {
  margin: 0;
}
.c-tb-pattern2 tr td dl dt {
  font-weight: 700;
  float: left;
  width: 50px;
  min-width: 50px;
}
.c-tb-pattern2 tr td dl dd {
  margin-left: 50px;
}

.c-tb-pattern3 {
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern3 {
    max-height: 445px;
  }
}
.c-tb-pattern3::-webkit-scrollbar {
  width: 8px;
}
.c-tb-pattern3::-webkit-scrollbar:horizontal {
  height: 8px;
}
.c-tb-pattern3::-webkit-scrollbar-thumb {
  background: #004ac2;
  border-radius: 4px;
}
.c-tb-pattern3::-webkit-scrollbar-thumb:horizontal {
  background: #004ac2;
  border-radius: 4px;
}
.c-tb-pattern3 table {
  width: 100%;
  min-width: 720px;
}
.c-tb-pattern3 table th, .c-tb-pattern3 table td {
  border: solid 1px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}
.c-tb-pattern3 table th {
  color: #004ac2;
}
.c-tb-pattern3 table td {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.c-tb-pattern3 table .first {
  font-weight: 700;
}

/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal-bg {
  background: rgba(48, 48, 48, 0.7);
  height: 100vh;
  width: 100%;
}

.c-modal-content {
  color: #fff;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 720px;
}
@media screen and (max-width: 1200px) {
  .c-modal-content {
    width: 90%;
  }
}

.c-modal-content-inner {
  position: relative;
}
.c-modal-content-inner .c-modal-close {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0;
  position: absolute;
  top: -1.5rem;
  right: 0;
}

.c-modal-open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal-open:hover {
  opacity: 0.7;
}
.c-modal-open:before {
  content: "+";
  display: block;
  color: #004ac2;
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 0.8;
  padding: 4px;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}
.c-page-nav--hide {
  opacity: 0;
  visibility: hidden;
}
.c-page-nav .c-page-nav-wrap {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  font-weight: 700;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #004ac2;
  padding: 10px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 820px) {
  .c-page-nav .c-page-nav-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 620px;
  }
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap {
    display: block;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
  text-align: center;
  position: relative;
  padding: 0 4%;
}
@media screen and (max-width: 820px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
    padding: 0 2.5em;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #004ac2;
  color: #fff;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
    font-size: 14px;
    font-size: 0.875rem;
    width: 170px;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .title {
    text-align: center;
    -ms-flex-preferred-size: 180px;
        flex-basis: 180px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .arrow {
  -ms-flex-preferred-size: 20px;
      flex-basis: 20px;
  margin-left: 0.5em;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .arrow span {
  width: 20px;
  height: 20px;
  background-image: url(/recruit/resource/images/ico_arrow_circle_down_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:hover .arrow span {
  background-image: url(/recruit/resource/images/ico_arrow_circle_down_white.svg);
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu:not(:last-child)::after {
  content: "";
  width: 0;
  height: 60%;
  border-right: 2px dotted #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu:not(:last-child)::after {
    display: none;
  }
}
.c-page-nav + * {
  margin-top: -35px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .c-page-nav + * {
    margin-top: -55px;
    padding-top: 120px;
  }
}
@media screen and (max-width: 820px) {
  .c-page-nav--wrap .c-page-nav-wrap .c-page-nav-wrap__menu a::after {
    position: absolute;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 576px) {
  .c-page-nav--wrap .c-page-nav-wrap .c-page-nav-wrap__menu a::after {
    position: static;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}

.c-page-nav-tag {
  margin: auto;
}
.c-page-nav-tag .c-page-nav-tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  text-align: center;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu {
  display: inline-block;
  background-color: #004ac2;
  margin: 2px;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a {
  display: block;
  color: #fff;
  line-height: 3;
  padding: 0 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a:hover {
  opacity: 0.7;
}

.c-related-nav {
  padding: 3.75rem 0;
}
@media screen and (max-width: 576px) {
  .c-related-nav {
    padding: 2.5rem 0;
  }
}
.c-related-nav .c-related-nav__ttl {
  color: #004ac2;
  border-left: 4px solid #004ac2;
  line-height: 1.5;
  padding-left: 12px;
}

.c-related-tmb {
  position: relative;
}
.c-related-tmb .c-related-tmb__ttl {
  text-align: center;
  color: #004ac2;
  background-color: #fff;
  background-image: url(/recruit/resource/images/ico_arrow_right_main.svg);
  background-size: 10px auto;
  background-position: center right 22px;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 700;
  line-height: 3.375;
}
.c-related-tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-related-tmb a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb,
.c-breadcrumb-ft {
  font-size: 12px;
  line-height: 32px;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb,
  .c-breadcrumb-ft {
    font-size: 10px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap,
.c-breadcrumb-ft .c-breadcrumb-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb .c-breadcrumb-wrap,
  .c-breadcrumb-ft .c-breadcrumb-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list {
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
  width: 10px;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
  .c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
    width: 9px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2),
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2) {
  padding-left: 16px;
  position: relative;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border-top: solid 1px;
  border-right: solid 1px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}

.c-breadcrumb-ft .c-breadcrumb-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のnav
----------------------------------------------------------------- */
ul.p-contact-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.p-contact-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: #004ac2;
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.p-contact-nav li {
  display: block;
  border: 1px solid;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  max-width: 100px;
  height: 100px;
  width: 100%;
}
ul.p-contact-nav li.p-contact-nav__active {
  border: 2px solid #004ac2;
}
ul.p-contact-nav li.p-contact-nav__active span {
  color: #004ac2;
}
ul.p-contact-nav li span {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
}

/* フォーム
----------------------------------------------------------------- */
.c-form-wrap table {
  font-size: 16px;
  font-size: 1rem;
}
.c-form-wrap table tr {
  border-bottom: 1px solid;
}
.c-form-wrap table tr:first-child {
  border-top: 1px solid;
}
.c-form-wrap table tr th,
.c-form-wrap table tr td {
  padding: 1.25rem 0;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td {
    display: block;
  }
}
.c-form-wrap table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 44%;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr th {
    padding: 1.25rem 0 0;
    width: 100%;
  }
}
.c-form-wrap table tr th.c-form-required:after {
  content: "必須";
  display: inline-block;
  background-color: #004ac2;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  width: 44px;
  text-align: center;
  margin-left: 14px;
  vertical-align: middle;
  padding-bottom: 1px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr td {
    padding: 8px 0 1.25rem 0;
  }
}
.c-form-wrap div.c-form-required {
  position: relative;
}
@media screen and (max-width: 576px) {
  .c-form-wrap div.c-form-required {
    text-align: center;
  }
}
.c-form-wrap div.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: #004ac2;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  width: 44px;
  text-align: center;
  margin-left: 14px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap div.c-form-required::after {
    top: 0.35rem;
    margin-left: 0.2rem;
  }
}
@media screen and (max-width: 576px) {
  .c-form-wrap div.c-form-required::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: -30px;
  }
}

.c-form-radio,
.c-form-checkbox {
  display: inline-block;
  border: 3px solid;
  margin: -4px 8px 0 0;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled) {
  cursor: pointer;
}

.c-form-radio {
  border-radius: 50%;
}
.c-form-radio:checked {
  border: 7px solid;
}

.c-form-checkbox {
  background-color: #fff;
  position: relative;
}
.c-form-checkbox:checked:before {
  content: "";
  background-image: url(/recruit/resource/images/ico_form_cheaked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 19px;
  display: block;
  position: absolute;
  left: 1px;
  top: -3px;
}
@media screen and (max-width: 820px) {
  .c-form-checkbox:checked:before {
    top: -5px;
  }
}

.c-form-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 1.25rem;
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

.c-form-select,
.c-form-input {
  height: 40px;
}

.c-form-select-wrap {
  position: relative;
}
.c-form-select-wrap select.c-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select-wrap:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px #004ac2;
  border-bottom: solid 1px #004ac2;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-form-privacy {
  margin-top: 2.5rem;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 576px) {
  .c-form-privacy {
    padding: 1.875rem 5% 3.125rem;
  }
}
.c-form-privacy .c-form-privacy-panel {
  background-color: #fff;
  border: 1px solid;
  font-size: 14px;
  height: 180px;
  margin-top: 1rem;
  padding: 2rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}

.c-form-privacy-checkbox {
  cursor: pointer;
}

.p-contact-not-sale-txt {
  text-align: center;
}
.p-contact-not-sale-txt p {
  color: #004ac2;
  border-bottom: 4px solid;
  display: inline-block;
  margin: 0 auto;
  font-weight: 700;
}

.p-contact-not-sale-cheackbox {
  border: 1px solid #004ac2;
  padding: 2rem 0;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .p-contact-not-sale-cheackbox {
    padding: 2.5rem 0 3.125rem;
  }
}

/*-==========================================================================
背景
==========================================================================*/
.c-bg-white {
  background-color: #fff !important;
}

.c-bg-black {
  background-color: #303030 !important;
}

.c-bg-main {
  background-color: #004ac2 !important;
}

.c-bg-sub_1 {
  background-color: #00adff !important;
}

.c-bg-sub_2 {
  background-color: #17d7cb !important;
}

.c-bg-sub_3 {
  background-color: #9ea3ff !important;
}

.c-bg-bg {
  background-color: #f5f6f7 !important;
}

.c-bg-hover {
  background-color: #71b8d2 !important;
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn-main,
.c-btn-main--white {
  text-align: center;
  max-width: 320px;
}
@media screen and (max-width: 820px) {
  .c-btn-main,
  .c-btn-main--white {
    max-width: 288px;
  }
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main span,
.c-btn-main--white a,
.c-btn-main--white button,
.c-btn-main--white span {
  display: block;
  color: #fff;
  background-color: #004ac2;
  background-image: url(/recruit/resource/images/ico_arrow_button.svg);
  background-size: 24px auto;
  background-position: center right 30px;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 700;
  line-height: 4.2;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100px;
  border: 1px solid #004ac2;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 820px) {
  .c-btn-main a,
  .c-btn-main button,
  .c-btn-main span,
  .c-btn-main--white a,
  .c-btn-main--white button,
  .c-btn-main--white span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-btn-main a:hover,
.c-btn-main button:hover,
.c-btn-main span:hover,
.c-btn-main--white a:hover,
.c-btn-main--white button:hover,
.c-btn-main--white span:hover {
  background-color: #fff;
  color: #004ac2;
  background-image: url(/recruit/resource/images/ico_arrow_button_blue.svg);
}
.c-btn-main--border a,
.c-btn-main--border button,
.c-btn-main--white--border a,
.c-btn-main--white--border button {
  border: 1px solid #fff;
}
.c-btn-main--white a,
.c-btn-main--white button,
.c-btn-main--white--white a,
.c-btn-main--white--white button {
  color: #004ac2;
  background-color: #fff;
  background-image: url(/recruit/resource/images/ico_arrow_button_blue.svg);
}
.c-btn-main--white a:hover,
.c-btn-main--white button:hover,
.c-btn-main--white--white a:hover,
.c-btn-main--white--white button:hover {
  color: #fff;
  background-color: #004ac2;
  background-image: url(/recruit/resource/images/ico_arrow_button.svg);
}
.c-btn-main--white.c-btn-main--border a,
.c-btn-main--white.c-btn-main--border button,
.c-btn-main--white--white.c-btn-main--border a,
.c-btn-main--white--white.c-btn-main--border button {
  border: 1px solid #004ac2;
}

.c-btn-card,
.c-btn-card--tmb {
  border: 2px solid;
  padding: 2rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 1.875rem;
  }
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--tmb .c-btn-card__ttl {
  margin-bottom: 8px;
}
.c-btn-card a,
.c-btn-card--tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-card a:hover,
.c-btn-card--tmb a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.c-btn-card-tmb1,
.c-btn-card-tmb2 {
  padding: 0;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask,
.c-btn-card-tmb2 .c-btn-card-tmb-mask {
  overflow: hidden;
  height: 194px;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask img,
.c-btn-card-tmb2 .c-btn-card-tmb-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt,
.c-btn-card-tmb2 .c-btn-card-tmb__txt {
  font-size: 14px;
}
.c-btn-card-tmb2 {
  border: 1px solid;
}
.c-btn-card-tmb2 .c-btn-card-tmb2-mask {
  height: 164px;
}

.c-btn-pdf {
  text-align: left;
  line-height: 1;
  text-indent: -35.2px;
  padding-left: 35.2px;
}
.c-btn-pdf a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 35px;
  vertical-align: middle;
  background: url(/recruit/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 8px;
}
.c-btn-pdf a span {
  color: #303030;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.2;
  position: relative;
  top: -8px;
}
.c-btn-pdf:hover {
  opacity: 0.6;
}

/* ==========================================================================
カード
=========================================================================*/
.c-card-small,
.c-card-medium {
  border: 1px solid;
}

.c-card-small {
  padding: 1rem;
}

.c-card-medium {
  padding: 2.5rem;
}

.c-card-pattern1 {
  border: 1px solid rgba(0, 74, 194, 0.2);
}
.c-card-pattern1 .c-card-pattern1-head {
  background-color: rgba(0, 74, 194, 0.2);
  text-align: center;
  padding: 2rem 1rem;
}
.c-card-pattern1 .c-card-pattern1-head .c-card-pattern1-head__ttl {
  color: #004ac2;
}
.c-card-pattern1 .c-card-pattern1__txt {
  padding: 2.5rem;
}
.c-card-pattern1 .c-card-pattern1__txt-sm {
  padding: 1.5rem;
}

.c-card-pattern2 {
  border: 4px solid;
  padding: 1.5rem;
  text-align: center;
}
.c-card-pattern2 .c-card-pattern2__ttl {
  font-size: 30px;
  font-size: 1.875rem;
}
.c-card-pattern2 .c-card-pattern2__ttl span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.c-card-pattern2 .c-card-pattern2__sub-ttl {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.c-card-pattern2 .c-card-pattern2__txt {
  text-align: left;
  margin-top: 1rem;
}

/* ==========================================================================
テキスト・タイトル
=========================================================================*/
/* テキスト
----------------------------------------------------------------- */
.c-txt-en {
  font-family: "Josefin Sans", sans-serif;
}

.c-txt-bold {
  font-weight: 700;
}

.c-txt-base {
  font-size: 1rem;
}

.c-txt-small {
  font-size: 14px;
}

.c-txt-large {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-txt-link {
  color: #004ac2;
  text-decoration: underline;
}
.c-txt-link:hover {
  color: #71b8d2;
  text-decoration: none;
}

.c-txt-center {
  text-align: center !important;
}

.c-txt-left {
  text-align: left !important;
}

.c-txt-right {
  text-align: right !important;
}

.c-txt-white {
  color: #fff !important;
}

.c-txt-black {
  color: #303030 !important;
}

.c-txt-main {
  color: #004ac2 !important;
}

.c-txt-sub_1 {
  color: #00adff !important;
}

.c-txt-sub_2 {
  color: #17d7cb !important;
}

.c-txt-sub_3 {
  color: #9ea3ff !important;
}

.c-txt-bg {
  color: #f5f6f7 !important;
}

.c-txt-hover {
  color: #71b8d2 !important;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

h2 {
  font-size: 30px;
  font-size: 1.875rem;
}

h3 {
  font-size: 26px;
  font-size: 1.625rem;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
}

.c-txt-lead {
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-lv1 {
  font-size: 52px;
  font-size: 3.25rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv1 {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv1 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
.c-ttl-lv1 span {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #004ac2;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv1 span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv1 span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-ttl-lv1 span::first-letter {
  color: #00adff;
}
.c-ttl-lv1--center {
  text-align: center;
}
.c-ttl-lv1--white {
  color: #fff;
}
.c-ttl-lv1--white span {
  color: #fff;
}

.c-ttl-lv2 {
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 2em;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.c-ttl-lv2::after {
  content: "";
  width: 58px;
  height: 5px;
  background-image: url(/recruit/resource/images/border_title_lv2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  margin-top: 10px;
}
.c-ttl-lv2--noborder::after {
  display: none;
}
.c-ttl-lv2--noborder img {
  margin-right: 0.5em;
}
@media screen and (max-width: 576px) {
  .c-ttl-lv2--noborder img {
    width: 45px;
  }
}

/* 電話番号
----------------------------------------------------------------- */
.c-txt-tel {
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .c-txt-tel {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-txt-tel img {
  margin-right: 4px;
  width: 21px;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  .c-txt-tel img {
    width: 14px;
  }
}
.c-txt-tel a[href^="tel:"] {
  color: #004ac2;
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .c-txt-tel a[href^="tel:"] {
    pointer-events: auto;
  }
  .c-txt-tel a[href^="tel:"]:hover {
    color: #71b8d2;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* MV
----------------------------------------------------------------- */
.p-idx-mv {
  position: relative;
}

.p-idx-mv-carousel-wrap {
  position: relative;
}
.p-idx-mv-carousel-wrap::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 74, 194, 0.2);
  content: "";
  z-index: 1;
}
.slick-dotted.slick-slider {
  margin: 0 auto !important;
}

.p-idx-mv-catch {
  position: absolute;
  z-index: 2;
  max-width: 880px;
  bottom: 155px;
  left: 5%;
}
@media screen and (max-width: 820px) {
  .p-idx-mv-catch {
    left: 60px;
    width: 80%;
    bottom: 175px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-mv-catch {
    left: 5%;
    bottom: 152px;
  }
}

.p-idx-carousel-item {
  width: 341px;
}
@media screen and (max-width: 576px) {
  .p-idx-carousel-item {
    width: 296px;
  }
}

/* メッセージ
----------------------------------------------------------------- */
.p-idx-message {
  padding-top: 7.5rem;
  background-image: url(/recruit/resource/images/idx_message_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .p-idx-message {
    padding-top: 76px;
    background-position: top 90px center;
  }
}
.p-idx-message__title {
  color: #004ac2;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5em;
}
.p-idx-message__title::first-letter {
  color: #00adff;
}
@media screen and (max-width: 576px) {
  .p-idx-message__title {
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-idx-message__text {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  margin-top: 3em;
}
@media screen and (max-width: 820px) {
  .p-idx-message__text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 2em;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-message__text {
    text-align: left;
  }
}
.p-idx-message__text:first-of-type {
  margin-top: 0;
}

.p-idx-message-thumbs {
  margin-top: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .p-idx-message-thumbs {
    margin-top: 76px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-message-thumbs {
    display: block;
    width: 70.9vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-idx-message-thumbs > div {
  -ms-flex-preferred-size: 31.42%;
      flex-basis: 31.42%;
}
@media screen and (max-width: 576px) {
  .p-idx-message-thumbs > div + div {
    margin-top: 1.25rem;
  }
}

/* 仕事を知る
----------------------------------------------------------------- */
.p-idx-works {
  background-color: #f5f6fa;
  border-radius: 40px;
  padding-top: 210px;
  margin-top: -70px;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 820px) {
  .p-idx-works {
    padding-bottom: 7.5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-works {
    margin-top: -560px;
    padding-top: 670px;
  }
}

.p-idx-works-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-idx-works-contents {
    display: block;
  }
}
.p-idx-works-contents > div {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
@media screen and (max-width: 820px) {
  .p-idx-works-contents > div {
    -ms-flex-preferred-size: 46%;
        flex-basis: 46%;
  }
}

.p-idx-works-contents-text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-idx-works-contents-text {
    margin-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-works-contents-text {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 820px) {
  .p-idx-works-contents-text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-idx-works-contents-images {
  position: relative;
}

.p-idx-works-contents-images-slider {
  position: relative;
  z-index: 0;
}
.p-idx-works-contents-images-slider .slick-dots {
  bottom: -50px;
}
.p-idx-works-contents-images-slider .slick-dots li {
  background-color: #d6d6d6;
  width: 10px;
  height: 10px;
  margin: 0 10px;
}
@media screen and (max-width: 576px) {
  .p-idx-works-contents-images-slider .slick-dots li {
    width: 7px;
    height: 7px;
    margin: 0 7px;
  }
}
.p-idx-works-contents-images-slider .slick-dots li button {
  display: none;
}
.p-idx-works-contents-images-slider .slick-dots li.slick-active {
  background-color: #004ac2;
}
.p-idx-works-contents-images-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-4.5deg);
          transform: translateX(-50%) translateY(-50%) rotate(-4.5deg);
  z-index: -1;
  background-color: #004ac2;
  width: 100%;
  height: 100%;
}

.p-idx-works-figure {
  position: absolute;
  bottom: -210px;
  right: -60px;
  width: 176px;
}
@media screen and (max-width: 820px) {
  .p-idx-works-figure {
    width: 136px;
    bottom: -160px;
    right: -40px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-works-figure {
    width: 108px;
    right: -20px;
    bottom: -200px;
  }
}

* {
  min-height: 0;
  min-width: 0;
}

/* 働く先輩を知る
----------------------------------------------------------------- */
.p-idx-interview-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-idx-interview-head {
    display: block;
  }
}
.p-idx-interview-head .c-btn-main {
  width: 100%;
}

@media screen and (max-width: 576px) {
  .p-idx-interview-head-text {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-idx-interview-head-text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-idx-interview-carousel {
  margin-top: 3.75rem;
}
.p-idx-interview-carousel .slick-list {
  padding-top: 30px;
  padding-left: 30px;
}
.p-idx-interview-carousel .slick-arrow {
  width: 62px;
  height: 62px;
  z-index: 1;
  background: center/contain no-repeat;
}
.p-idx-interview-carousel .slick-arrow::before {
  display: none;
}
.p-idx-interview-carousel .slick-arrow:hover, .p-idx-interview-carousel .slick-arrow:focus {
  background: center/contain no-repeat;
}
.p-idx-interview-carousel .slick-arrow.slick-prev {
  left: 58px;
  background-image: url(/recruit/resource/images/ico_carousel_prev.png);
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel .slick-arrow.slick-prev {
    left: 10px;
  }
}
.p-idx-interview-carousel .slick-arrow.slick-next {
  right: 58px;
  background-image: url(/recruit/resource/images/ico_carousel_next.png);
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel .slick-arrow.slick-next {
    right: 10px;
  }
}

/* インタビューページ共通 */
.p-idx-interview-carousel-item,
.p-interview-contents-box {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 312px;
  margin: 0 20px;
}
.p-idx-interview-carousel-item a,
.p-interview-contents-box a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 125.64% 20px 20px 20px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item a,
  .p-interview-contents-box a {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
.p-idx-interview-carousel-item a:hover .p-idx-interview-carousel-item__image,
.p-interview-contents-box a:hover .p-idx-interview-carousel-item__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item,
  .p-interview-contents-box {
    width: 252px;
    margin: 0 15px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel-item,
  .p-interview-contents-box {
    width: 221px;
  }
}
.p-idx-interview-carousel-item__label,
.p-interview-contents-box__label {
  color: #fff;
  font-size: 17px;
  font-size: 1.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 30px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: absolute;
  top: -20px;
  left: -20px;
  pointer-events: none;
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item__label,
  .p-interview-contents-box__label {
    font-size: 13px;
    font-size: 0.8125rem;
    top: -17px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel-item__label,
  .p-interview-contents-box__label {
    font-size: 12px;
    font-size: 0.75rem;
    top: -16px;
  }
}
.p-idx-interview-carousel-item__label--technology,
.p-interview-contents-box__label--technology {
  background: -ms-linear-gradient(90deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#99DEFF', endColorstr='#00ADFF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(153, 222, 255)), to(rgb(0, 173, 255)));
  background: linear-gradient(0deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ADFF", endColorstr="#99DEFF", GradientType=0);
}
.p-idx-interview-carousel-item__label--skill,
.p-interview-contents-box__label--skill {
  background: -ms-linear-gradient(90deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#A2EFEA', endColorstr='#17D7CB' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(162, 239, 234)), to(rgb(23, 215, 203)));
  background: linear-gradient(0deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17D7CB", endColorstr="#A2EFEA", GradientType=0);
}
.p-idx-interview-carousel-item__label--management,
.p-interview-contents-box__label--management {
  background: -ms-linear-gradient(90deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CFD1FF', endColorstr='#9EA3FF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(207, 209, 255)), to(rgb(158, 163, 255)));
  background: linear-gradient(0deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9EA3FF", endColorstr="#CFD1FF", GradientType=0);
}
.p-idx-interview-carousel-item__text,
.p-interview-contents-box__text {
  color: #fff;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item__text,
  .p-interview-contents-box__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel-item__text,
  .p-interview-contents-box__text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-idx-interview-carousel-item__name,
.p-interview-contents-box__name {
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item__name,
  .p-interview-contents-box__name {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel-item__name,
  .p-interview-contents-box__name {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-idx-interview-carousel-item__name span,
.p-interview-contents-box__name span {
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 1em;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item__name span,
  .p-interview-contents-box__name span {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-interview-carousel-item__name span,
  .p-interview-contents-box__name span {
    font-size: 9px;
    font-size: 0.5625rem;
  }
}
.p-idx-interview-carousel-item__image,
.p-interview-contents-box__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}
.p-idx-interview-carousel-item__image img,
.p-interview-contents-box__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-idx-interview-carousel-item-text-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 820px) {
  .p-idx-interview-carousel-item-text-wrap {
    bottom: 15px;
  }
}

.p-idx-interview-carousel-item:nth-child(odd) {
  margin-top: 4.375rem;
}

/* キャリアモデル
----------------------------------------------------------------- */
.p-idx-career {
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 820px) {
  .p-idx-career {
    padding-bottom: 7.5rem;
  }
}
.p-idx-career a {
  display: block;
}
.p-idx-career a:hover .p-idx-career-contents-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-idx-career a:hover .c-btn-main span {
  background-color: #fff;
  color: #004ac2;
  background-image: url(/recruit/resource/images/ico_arrow_button_blue.svg);
}

.p-idx-career-contents-wrap {
  position: relative;
}

.p-idx-career-contents {
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.p-idx-career-contents-bg {
  background-position: center;
  background-size: cover;
  background-image: url(/recruit/resource/images/idx_career_bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-idx-career__figure {
  position: absolute;
  bottom: -220px;
  left: -80px;
  width: 268px;
}
@media screen and (max-width: 820px) {
  .p-idx-career__figure {
    width: 202px;
    bottom: -147px;
    left: -40px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-career__figure {
    width: 145px;
    left: 0;
  }
}

/* 働く環境を知る
----------------------------------------------------------------- */
.p-idx-environment {
  padding: 7.5rem 0 400px 0;
  background-color: #f5f6fa;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 820px) {
  .p-idx-environment {
    padding-top: 76px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-environment {
    padding-bottom: 340px;
  }
}
@media screen and (max-width: 820px) {
  .p-idx-environment p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-idx-environment-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.375rem;
}
@media screen and (max-width: 576px) {
  .p-idx-environment-flex {
    display: block;
  }
}

.p-idx-environment-flex-item {
  -ms-flex-preferred-size: 30.35%;
      flex-basis: 30.35%;
  position: relative;
}
@media screen and (max-width: 576px) {
  .p-idx-environment-flex-item {
    width: 76.2vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-idx-environment-flex-item > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 70%;
}
.p-idx-environment-flex-item > a:hover .p-idx-environment-flex-item__arrow {
  background-image: url(/recruit/resource/images/ico_arrow_circle_right_blue.png);
}
.p-idx-environment-flex-item > a:hover .p-idx-environment-flex-item__bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-idx-environment-flex-item__label {
  position: absolute;
  background-color: #00adff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: -20px;
  top: -20px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  padding: 2px 30px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-idx-environment-flex-item__label {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-idx-environment-flex-item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-idx-environment-flex-item__arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-image: url(/recruit/resource/images/ico_arrow_circle_right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 820px) {
  .p-idx-environment-flex-item__arrow {
    width: 36px;
    bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-environment-flex-item + .p-idx-environment-flex-item {
    margin-top: 3.75rem;
  }
}

/* ==========================================================================
仕事を知る
========================================================================== */
/* 職種相関図
----------------------------------------------------------------- */
@media screen and (max-width: 576px) {
  .p-works-relation .js-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* iOS慣性スクロール */
    white-space: nowrap;
    /* 画像や要素を横並びに */
  }
  .p-works-relation .js-scrollable img {
    display: inline-block;
    max-width: none;
    width: 670px;
    /* 横幅をはみ出させたいときはこれ重要 */
  }
}

/* 職種紹介
----------------------------------------------------------------- */
.p-works-introduction-contents {
  padding: 6.25%;
}
.p-works-introduction-contents--technology {
  background-color: #f0faff;
}
.p-works-introduction-contents--technology .p-works-introduction-contents-flex-box__title::before {
  background-color: #00adff;
}
.p-works-introduction-contents--skill {
  background-color: #f1fdfc;
}
.p-works-introduction-contents--skill .p-works-introduction-contents-flex-box__title::before {
  background-color: #17d7cb;
}
.p-works-introduction-contents--management {
  background-color: #f9faff;
}
.p-works-introduction-contents--management .p-works-introduction-contents-flex-box__title::before {
  background-color: #9ea3ff;
}
.p-works-introduction-contents + .p-works-introduction-contents {
  margin-top: 4.375rem;
}

.p-works-introduction-contents-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-works-introduction-contents-head {
    display: block;
  }
}

.p-works-introduction-contents-head-text {
  -ms-flex-preferred-size: 57.8%;
      flex-basis: 57.8%;
}
@media screen and (max-width: 576px) {
  .p-works-introduction-contents-head-text {
    margin-bottom: 2.5rem;
  }
}
.p-works-introduction-contents-head-text p {
  margin-bottom: 2em;
}
@media screen and (max-width: 820px) {
  .p-works-introduction-contents-head-text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-works-introduction-contents-head-text a {
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .p-works-introduction-contents-head-text a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-works-introduction-contents-head-text a img {
  margin-left: 4px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-works-introduction-contents-head-text__title {
  font-size: 32px;
  font-size: 2rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-works-introduction-contents-head-text__title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.p-works-introduction-contents-head-text__title img {
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  .p-works-introduction-contents-head-text__title img {
    width: 45px;
  }
}

.p-works-introduction-contents-head-image {
  -ms-flex-preferred-size: 36.4%;
      flex-basis: 36.4%;
}

.p-works-introduction-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5rem;
}
@media screen and (max-width: 576px) {
  .p-works-introduction-contents-flex {
    display: block;
  }
}

.p-works-introduction-contents-flex-box {
  -ms-flex-preferred-size: 48.16%;
      flex-basis: 48.16%;
  background-color: #fff;
  padding: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 820px) {
  .p-works-introduction-contents-flex-box {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-works-introduction-contents-flex-box__title {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  .p-works-introduction-contents-flex-box__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .p-works-introduction-contents-flex-box__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-works-introduction-contents-flex-box__title::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 0.5em;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ==========================================================================
働く先輩を知る
========================================================================== */
.page-interview .l-page-title {
  background-position: top 21% center;
}

/* 共通（一部キャリアモデル共通）
----------------------------------------------------------------- */
.p-interview-sec:not(:last-of-type) .p-interview-contents {
  border-bottom: 1px solid rgba(0, 74, 194, 0.5);
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 820px) {
  .p-interview-sec:not(:last-of-type) .p-interview-contents {
    padding-bottom: 5rem;
  }
}
.p-interview-sec + .p-interview-sec {
  margin-top: 7.5rem;
}
@media screen and (max-width: 820px) {
  .p-interview-sec + .p-interview-sec {
    margin-top: 5rem;
  }
}

.p-interview-head,
.p-career-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-interview-head,
  .p-career-head {
    display: block;
  }
}
.p-interview-head .c-ttl-lv2,
.p-career-head .c-ttl-lv2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-interview-head .c-ttl-lv2,
  .p-career-head .c-ttl-lv2 {
    margin-bottom: 1em;
  }
}
.p-interview-head .c-btn-main,
.p-career-head .c-btn-main {
  max-width: 378px;
  width: 378px;
}
@media screen and (max-width: 820px) {
  .p-interview-head .c-btn-main,
  .p-career-head .c-btn-main {
    max-width: 302px;
    width: 100%;
  }
}
.p-interview-head .c-btn-main a,
.p-career-head .c-btn-main a {
  border: 1px solid #004ac2;
}
@media screen and (max-width: 820px) {
  .p-interview-head .c-btn-main a,
  .p-career-head .c-btn-main a {
    font-size: 14px;
    font-size: 0.875rem;
    background-size: 19px auto;
  }
}

.p-interview-contents,
.p-career-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -70px;
}
@media screen and (max-width: 576px) {
  .p-interview-contents,
  .p-career-contents {
    display: block;
    margin-top: -30px;
  }
}

.p-interview-contents-box {
  -ms-flex-preferred-size: 27.85%;
      flex-basis: 27.85%;
  margin: 4.375rem 0 0 0;
}
@media screen and (max-width: 576px) {
  .p-interview-contents-box {
    width: 287px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-interview-contents-box:not(:nth-child(3n)) {
  margin: 70px 8.225% 0 0;
}
@media screen and (max-width: 576px) {
  .p-interview-contents-box:not(:nth-child(3n)) {
    margin: 70px auto 0 auto;
  }
}
@media screen and (max-width: 820px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__label {
    font-size: 11px;
    font-size: 0.6875rem;
    top: -13px;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__label {
    font-size: 15px;
    font-size: 0.9375rem;
    top: -13px;
  }
}
@media screen and (max-width: 820px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__text {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 820px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__name {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__name {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 820px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__name span {
    font-size: 8px;
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-contents-box .p-idx-interview-carousel-item__name span {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.p-interview-management {
  padding-bottom: 260px;
}

/* ==========================================================================
働く先輩を知る（部門ページ）
========================================================================== */
/* 共通
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .page-interview-child .l-page-title .l-page-title-inner .l-page-title-en,
  .page-career-child .l-page-title .l-page-title-inner .l-page-title-en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 820px) {
  .page-interview-child .l-page-title .l-page-title-inner .l-page-title-jp-parent,
  .page-career-child .l-page-title .l-page-title-inner .l-page-title-jp-parent {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 820px) {
  .page-interview-child .l-page-title .l-page-title-inner .l-page-title-jp,
  .page-career-child .l-page-title .l-page-title-inner .l-page-title-jp {
    font-size: 52px;
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 576px) {
  .page-interview-child .l-page-title .l-page-title-inner .l-page-title-jp,
  .page-career-child .l-page-title .l-page-title-inner .l-page-title-jp {
    font-size: 38px;
    font-size: 2.375rem;
    text-indent: -148px;
    padding-left: 68px;
  }
}
@media screen and (max-width: 820px) {
  .page-interview-child .l-page-title .l-page-title-inner .l-page-title-jp img,
  .page-career-child .l-page-title .l-page-title-inner .l-page-title-jp img {
    width: 63px;
  }
}
@media screen and (max-width: 576px) {
  .page-interview-child .l-page-title .l-page-title-inner .l-page-title-jp img,
  .page-career-child .l-page-title .l-page-title-inner .l-page-title-jp img {
    width: 51px;
  }
}
.page-interview-child .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu,
.page-career-child .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
  padding: 0 2em;
}
@media screen and (max-width: 820px) {
  .page-interview-child .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a,
  .page-career-child .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-interview-child-head,
.p-career-child-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 576px) {
  .p-interview-child-head,
  .p-career-child-head {
    display: block;
    margin-bottom: 3.125rem;
  }
}

.p-interview-child-head-text,
.p-career-child-head-text {
  -ms-flex-preferred-size: 53%;
      flex-basis: 53%;
  padding-right: 4%;
}
.p-interview-child-head-text-title,
.p-career-child-head-text-title {
  margin-bottom: 1em;
}
.p-interview-child-head-text-title__en,
.p-career-child-head-text-title__en {
  color: #004ac2;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-text-title__en,
  .p-career-child-head-text-title__en {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-head-text-title__en,
  .p-career-child-head-text-title__en {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-interview-child-head-text-title__en::first-letter,
.p-career-child-head-text-title__en::first-letter {
  color: #00adff;
}
.p-interview-child-head-text-title__en span,
.p-career-child-head-text-title__en span {
  font-size: 32px;
  font-size: 2rem;
  margin-left: 0.4em;
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-text-title__en span,
  .p-career-child-head-text-title__en span {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-head-text-title__en span,
  .p-career-child-head-text-title__en span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-interview-child-head-text-title__ja,
.p-career-child-head-text-title__ja {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 10px 50px;
  clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-text-title__ja,
  .p-career-child-head-text-title__ja {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-head-text-title__ja,
  .p-career-child-head-text-title__ja {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-interview-child-head-text__catch,
.p-career-child-head-text__catch {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-text__catch,
  .p-career-child-head-text__catch {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-head-text__catch,
  .p-career-child-head-text__catch {
    font-size: 26px;
    font-size: 1.625rem;
    margin-top: 1em;
  }
}
.p-interview-child-head-text__name,
.p-career-child-head-text__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-text__name,
  .p-career-child-head-text__name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-head-text__name,
  .p-career-child-head-text__name {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-interview-child-head-text__name span,
.p-career-child-head-text__name span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 1em;
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-text__name span,
  .p-career-child-head-text__name span {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-head-text__name span,
  .p-career-child-head-text__name span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-interview-child-head-image,
.p-career-child-head-image {
  -ms-flex-preferred-size: 47%;
      flex-basis: 47%;
}
@media screen and (max-width: 820px) {
  .p-interview-child-head-image,
  .p-career-child-head-image {
    padding-top: 4.375rem;
  }
}

.p-interview-child-contents-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-interview-child-contents-box {
    display: block;
  }
}
.p-interview-child-contents-box + .p-interview-child-contents-box {
  margin-top: 4.375rem;
  margin-top: 3.125rem;
}
.p-interview-child-contents-box-image {
  -ms-flex-preferred-size: 37.5%;
      flex-basis: 37.5%;
}
@media screen and (max-width: 820px) {
  .p-interview-child-contents-box-image {
    -ms-flex-preferred-size: 40.42%;
        flex-basis: 40.42%;
  }
}
@media screen and (max-width: 576px) {
  .p-interview-child-contents-box-image {
    margin-bottom: 1.25rem;
    width: 73.6vw;
  }
}

.p-interview-child-contents-box-text {
  -ms-flex-preferred-size: 58.39%;
      flex-basis: 58.39%;
}
@media screen and (max-width: 820px) {
  .p-interview-child-contents-box-text {
    -ms-flex-preferred-size: 54.28%;
        flex-basis: 54.28%;
  }
}
.p-interview-child-contents-box-text h3 {
  color: #004ac2;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 576px) {
  .p-interview-child-contents-box-text h3 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 820px) {
  .p-interview-child-contents-box-text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-interview-child-contents-schedule {
  margin-top: 4.375rem;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .p-interview-child-contents-schedule {
    margin-top: 3.125rem;
  }
}

/* 他のインタビューも見る */
.p-interview-child-other,
.p-career-child-other {
  margin-bottom: 350px;
}
.p-interview-child-other .c-btn-main,
.p-career-child-other .c-btn-main {
  max-width: 433px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.375rem;
}

.p-interview-child-other-carousel,
.p-career-child-other-carousel {
  mix-blend-mode: multiply;
}
.p-interview-child-other-carousel .slick-slide,
.p-career-child-other-carousel .slick-slide {
  font-size: 100px;
  font-size: 6.25rem;
  font-family: "Josefin Sans", sans-serif;
  margin: 0 0.2em;
  font-weight: 700;
  color: #e5f7ff;
}

.p-interview-child-other__title,
.p-career-child-other__title {
  text-align: center;
  color: #004ac2;
  font-size: 32px;
  font-size: 2rem;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .p-interview-child-other__title,
  .p-career-child-other__title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.p-interview-child-other-nav,
.p-career-child-other-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 980px;
  margin-top: 4.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .p-interview-child-other-nav,
  .p-career-child-other-nav {
    display: block;
  }
}

.p-interview-child-other-nav-box,
.p-career-child-other-nav-box {
  -ms-flex-preferred-size: 47.95%;
      flex-basis: 47.95%;
}
.p-interview-child-other-nav-box a:hover .p-interview-child-other-nav-box-bg-wrap img,
.p-career-child-other-nav-box a:hover .p-interview-child-other-nav-box-bg-wrap img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}
.p-interview-child-other-nav-box--technology .p-interview-child-other-nav-box__title,
.p-interview-child-other-nav-box--technology .p-career-child-other-nav-box__title,
.p-career-child-other-nav-box--technology .p-interview-child-other-nav-box__title,
.p-career-child-other-nav-box--technology .p-career-child-other-nav-box__title {
  background: -ms-linear-gradient(90deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#99DEFF', endColorstr='#00ADFF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(153, 222, 255)), to(rgb(0, 173, 255)));
  background: linear-gradient(0deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ADFF", endColorstr="#99DEFF", GradientType=0);
}
.p-interview-child-other-nav-box--skill .p-interview-child-other-nav-box__title,
.p-interview-child-other-nav-box--skill .p-career-child-other-nav-box__title,
.p-career-child-other-nav-box--skill .p-interview-child-other-nav-box__title,
.p-career-child-other-nav-box--skill .p-career-child-other-nav-box__title {
  background: -ms-linear-gradient(90deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#A2EFEA', endColorstr='#17D7CB' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(162, 239, 234)), to(rgb(23, 215, 203)));
  background: linear-gradient(0deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17D7CB", endColorstr="#A2EFEA", GradientType=0);
}
.p-interview-child-other-nav-box--management .p-interview-child-other-nav-box__title,
.p-interview-child-other-nav-box--management .p-career-child-other-nav-box__title,
.p-career-child-other-nav-box--management .p-interview-child-other-nav-box__title,
.p-career-child-other-nav-box--management .p-career-child-other-nav-box__title {
  background: -ms-linear-gradient(90deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CFD1FF', endColorstr='#9EA3FF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(207, 209, 255)), to(rgb(158, 163, 255)));
  background: linear-gradient(0deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9EA3FF", endColorstr="#CFD1FF", GradientType=0);
}
@media screen and (max-width: 576px) {
  .p-interview-child-other-nav-box + .p-interview-child-other-nav-box, .p-interview-child-other-nav-box + .p-career-child-other-nav-box,
  .p-career-child-other-nav-box + .p-interview-child-other-nav-box,
  .p-career-child-other-nav-box + .p-career-child-other-nav-box {
    margin-top: 1.25rem;
  }
}

.p-interview-child-other-nav-box-bg-wrap {
  padding-top: 45.74%;
  position: relative;
  overflow: hidden;
}
.p-interview-child-other-nav-box-bg-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-interview-child-other-nav-box__title,
.p-career-child-other-nav-box__title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 18px 10px;
}
.p-interview-child-other-nav-box__title img,
.p-career-child-other-nav-box__title img {
  margin-right: 10px;
  max-width: 40px;
}

.p-career-child-other {
  background-color: #f5f6f7;
}

/* 技術部門
----------------------------------------------------------------- */
.page-interview-technology .l-page-title {
  background-position: top 30% center;
}

.page-interview-technology .p-interview-child-head-text-title__ja,
.page-interview-technology .p-career-child-head-text-title__ja,
.page-career-technology .p-interview-child-head-text-title__ja,
.page-career-technology .p-career-child-head-text-title__ja {
  background: -ms-linear-gradient(90deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#99DEFF', endColorstr='#00ADFF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(153, 222, 255)), to(rgb(0, 173, 255)));
  background: linear-gradient(0deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ADFF", endColorstr="#99DEFF", GradientType=0);
}

/* 技能部門
----------------------------------------------------------------- */
.page-interview-skill .l-page-title {
  background-position: top 30% center;
}

.page-interview-skill .p-interview-child-head-text-title__ja,
.page-interview-skill .p-career-child-head-text-title__ja,
.page-career-skill .p-interview-child-head-text-title__ja,
.page-career-skill .p-career-child-head-text-title__ja {
  background: -ms-linear-gradient(90deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#A2EFEA', endColorstr='#17D7CB' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(162, 239, 234)), to(rgb(23, 215, 203)));
  background: linear-gradient(0deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17D7CB", endColorstr="#A2EFEA", GradientType=0);
}

/* 管理部門
----------------------------------------------------------------- */
.page-interview-management .l-page-title {
  background-position: top 30% center;
}

.page-interview-management .p-interview-child-head-text-title__ja,
.page-interview-management .p-career-child-head-text-title__ja,
.page-career-management .p-interview-child-head-text-title__ja,
.page-career-management .p-career-child-head-text-title__ja {
  background: -ms-linear-gradient(90deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CFD1FF', endColorstr='#9EA3FF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(207, 209, 255)), to(rgb(158, 163, 255)));
  background: linear-gradient(0deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9EA3FF", endColorstr="#CFD1FF", GradientType=0);
}

/* ==========================================================================
キャリアモデルを知る
========================================================================== */
.page-career .l-page-title {
  background-position: top 37% center;
}
@media screen and (max-width: 820px) {
  .page-career .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
    padding: 0 1.5em;
  }
}
@media screen and (max-width: 576px) {
  .page-career .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
    width: 200px;
  }
}

/* 共通
----------------------------------------------------------------- */
@media screen and (max-width: 576px) {
  .p-career-head .c-ttl-lv2 img {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.p-career-head .c-btn-main a {
  text-align: left;
  padding-left: 2em;
}

.p-career-sec:not(:last-of-type) .p-career-contents {
  border-bottom: 1px solid rgba(0, 74, 194, 0.5);
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 820px) {
  .p-career-sec:not(:last-of-type) .p-career-contents {
    padding-bottom: 5rem;
  }
}
.p-career-sec + .p-career-sec {
  margin-top: 7.5rem;
}
@media screen and (max-width: 820px) {
  .p-career-sec + .p-career-sec {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 820px) {
  .p-career-contents {
    display: block;
    margin-top: -20px;
  }
}

.p-career-contents-box {
  -ms-flex-preferred-size: 46.42%;
      flex-basis: 46.42%;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: 4.375rem;
}
@media screen and (max-width: 820px) {
  .p-career-contents-box {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-career-contents-box:nth-child(2n-1) {
  margin-right: 7.16%;
}
@media screen and (max-width: 820px) {
  .p-career-contents-box:nth-child(2n-1) {
    margin-right: auto;
  }
}
.p-career-contents-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  position: relative;
  padding: 185px 30px 30px 30px;
  border-radius: 20px;
  overflow: hidden;
}
.p-career-contents-box a:hover .p-career-contents-box__bg {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.p-career-contents-box__label {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 30px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .p-career-contents-box__label {
    font-size: 11px;
    font-size: 0.6875rem;
    top: -13px;
  }
}
.p-career-contents-box__label--technology {
  background: -ms-linear-gradient(90deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#99DEFF', endColorstr='#00ADFF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(153, 222, 255)), to(rgb(0, 173, 255)));
  background: linear-gradient(0deg, rgb(153, 222, 255) 0%, rgb(0, 173, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ADFF", endColorstr="#99DEFF", GradientType=0);
}
.p-career-contents-box__label--skill {
  background: -ms-linear-gradient(90deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#A2EFEA', endColorstr='#17D7CB' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(162, 239, 234)), to(rgb(23, 215, 203)));
  background: linear-gradient(0deg, rgb(162, 239, 234) 0%, rgb(23, 215, 203) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17D7CB", endColorstr="#A2EFEA", GradientType=0);
}
.p-career-contents-box__label--management {
  background: -ms-linear-gradient(90deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CFD1FF', endColorstr='#9EA3FF' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(207, 209, 255)), to(rgb(158, 163, 255)));
  background: linear-gradient(0deg, rgb(207, 209, 255) 0%, rgb(158, 163, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9EA3FF", endColorstr="#CFD1FF", GradientType=0);
}

.p-career-contents-box-wrap {
  overflow: hidden;
}

.p-career-contents-box-text {
  z-index: 1;
  position: relative;
}

.p-career-contents-box__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-career-contents-box__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-career-contents-box__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-career-contents-box__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 576px) {
  .p-career-contents-box__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 820px) {
  .p-career-technology {
    padding-top: 30px;
  }
}

.p-career-management {
  padding-bottom: 260px;
}
@media screen and (max-width: 820px) {
  .p-career-management {
    padding-bottom: 320px;
  }
}
@media screen and (max-width: 576px) {
  .p-career-management {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

/* ==========================================================================
キャリアモデルを知る（部門ページ）
========================================================================== */
/* 共通
----------------------------------------------------------------- */
.p-career-child-sec .p-career-child-contents-box {
  background-color: #f5f6fa;
}
.p-career-child-sec.l-sec-bg .p-career-child-contents-box {
  background-color: #fff;
}

.p-career-child-head-text-title__en {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  .p-career-child-head-text-title__en {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-career-child-head-text-title__en {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.p-career-child-head-text__catch {
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .p-career-child-head-text__catch {
    white-space: wrap;
  }
}

.p-career-child-contents-box {
  padding: 3.125rem 4.375rem;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-career-child-contents-box {
    padding: 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-career-child-contents-box {
    padding: 1.875rem 1.875rem;
  }
}
.p-career-child-contents-box + .p-career-child-contents-box {
  margin-top: 4.375rem;
}
.p-career-child-contents-box:not(:last-child)::after {
  content: "";
  width: 27px;
  height: 41px;
  position: absolute;
  bottom: -30px;
  left: 70px;
  background-image: url(/recruit/resource/images/career_ico_arrow_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .p-career-child-contents-box:not(:last-child)::after {
    left: 30px;
  }
}

.p-career-child-contents-box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-career-child-contents-box-flex {
    display: block;
  }
}

.p-career-child-contents-box-text {
  -ms-flex-preferred-size: 60.2%;
      flex-basis: 60.2%;
}
@media screen and (max-width: 820px) {
  .p-career-child-contents-box-text {
    -ms-flex-preferred-size: 54.83%;
        flex-basis: 54.83%;
  }
}
@media screen and (max-width: 576px) {
  .p-career-child-contents-box-text {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-career-child-contents-box-text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-career-child-contents-box-text__title {
  color: #004ac2;
  margin-bottom: 0.5em;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 820px) {
  .p-career-child-contents-box-text__title {
    font-size: 21px;
    font-size: 1.3125rem;
    text-indent: -47px;
    padding-left: 47px;
  }
}
.p-career-child-contents-box-text__title span {
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: #004ac2;
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  margin-right: 15px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (max-width: 820px) {
  .p-career-child-contents-box-text__title span {
    text-indent: 0;
    padding-left: 0;
    width: 31px;
    height: 31px;
    line-height: 31px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-career-child-contents-box-image {
  -ms-flex-preferred-size: 33.77%;
      flex-basis: 33.77%;
}
@media screen and (max-width: 820px) {
  .p-career-child-contents-box-image {
    -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
  }
}

.p-career-child-other {
  padding-bottom: 390px;
  margin-bottom: -240px;
}

/* 技術部門
----------------------------------------------------------------- */
.page-career-technology .l-page-title {
  background-position: top 20% center;
}

/* 技能部門
----------------------------------------------------------------- */
/* ==========================================================================
福利厚生
========================================================================== */
@media screen and (max-width: 820px) {
  .page-welfare .l-page-title {
    background-position: top -50px center;
  }
}

/* 子育て支援
----------------------------------------------------------------- */
.p-welfare-childcare-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 820px) {
  .p-welfare-childcare-head {
    margin-bottom: 3.125rem;
  }
}
@media screen and (max-width: 576px) {
  .p-welfare-childcare-head {
    display: block;
  }
}

.p-welfare-childcare-head-text {
  -ms-flex-preferred-size: 61.69%;
      flex-basis: 61.69%;
}
@media screen and (max-width: 576px) {
  .p-welfare-childcare-head-text {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 820px) {
  .p-welfare-childcare-head-text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-welfare-childcare-head-image {
  -ms-flex-preferred-size: 31.875%;
      flex-basis: 31.875%;
}
@media screen and (max-width: 576px) {
  .p-welfare-childcare-head-image {
    width: 70.93vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-welfare-childcare .l-environment-flex-box {
  padding: 3%;
}
@media screen and (max-width: 576px) {
  .p-welfare-childcare .l-environment-flex-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-welfare-childcare-sub {
  background-color: #fff;
  margin-top: 2.5rem;
  padding: 3%;
}
@media screen and (max-width: 576px) {
  .p-welfare-childcare-sub {
    padding: 20px;
  }
}
@media screen and (max-width: 820px) {
  .p-welfare-childcare-sub p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-welfare-childcare-sub__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .p-welfare-childcare-sub__title {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-welfare-childcare-sub__title {
    margin-bottom: 10px;
  }
}
.p-welfare-childcare-sub__title span {
  color: #004ac2;
}

/* ==========================================================================
福利厚生
========================================================================== */
@media screen and (max-width: 820px) {
  .page-welfare .l-page-title {
    background-position: top -50px center;
  }
}

/* 人材育成への取り組み
----------------------------------------------------------------- */
.p-support-education__catch {
  color: #004ac2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-support-education__catch {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 820px) {
  .p-support-education__catch + p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-support-education-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.375rem;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 576px) {
  .p-support-education-thumbs {
    display: block;
    width: 70.13vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.125rem;
  }
}
.p-support-education-thumbs figure {
  -ms-flex-preferred-size: 31.87%;
      flex-basis: 31.87%;
}
@media screen and (max-width: 576px) {
  .p-support-education-thumbs figure + figure {
    margin-top: 15px;
  }
}

/* 技能向上委員会 */
.p-support-education-committee {
  margin-bottom: 4.375rem;
}

.p-support-education-committee-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-support-education-committee-contents {
    display: block;
  }
}

.p-support-education-committee-contents-text {
  -ms-flex-preferred-size: 46.53%;
      flex-basis: 46.53%;
}
.p-support-education-committee-contents-text__catch {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .p-support-education-committee-contents-text__catch {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.p-support-education-committee-contents-text ul {
  margin: 2em 0;
}
@media screen and (max-width: 820px) {
  .p-support-education-committee-contents-text ul {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-support-education-committee-contents-image {
  -ms-flex-preferred-size: 44.44%;
      flex-basis: 44.44%;
}
.p-support-education-committee-contents-image .slick-dots {
  bottom: -40px;
}
@media screen and (max-width: 576px) {
  .p-support-education-committee-contents-image .slick-dots {
    bottom: 0;
  }
}
.p-support-education-committee-contents-image .slick-dots li {
  width: 12px;
  height: 12px;
  background-color: #d6d6d6;
  margin: 0 13px;
}
@media screen and (max-width: 820px) {
  .p-support-education-committee-contents-image .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 8px;
  }
}
.p-support-education-committee-contents-image .slick-dots li button {
  display: none;
}
.p-support-education-committee-contents-image .slick-dots li.slick-active {
  background-color: #004ac2;
}

@media screen and (max-width: 576px) {
  .p-support-education-committee-contents-image-slider {
    padding-bottom: 40px;
  }
}

/* メンター制度 */
.p-support-fresh-menter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-support-fresh-menter {
    display: block;
  }
}

.p-support-fresh-menter-text {
  -ms-flex-preferred-size: 45.71%;
      flex-basis: 45.71%;
}
@media screen and (max-width: 576px) {
  .p-support-fresh-menter-text {
    margin-bottom: 20px;
  }
}

.p-support-fresh-menter-image {
  -ms-flex-preferred-size: 45.71%;
      flex-basis: 45.71%;
}

/* ==========================================================================
数字で見る
========================================================================== */
.p-data-grid {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 576px) {
  .p-data-grid {
    display: block;
  }
}

.p-data-grid-item {
  background-color: #fff;
  text-align: center;
  padding: 3.75rem 5%;
}
@media screen and (max-width: 820px) {
  .p-data-grid-item {
    padding: 1.875rem 5%;
  }
}
@media screen and (max-width: 576px) {
  .p-data-grid-item + .p-data-grid-item {
    margin-top: 20px;
  }
}

.p-data-grid-item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-flex {
    display: block;
  }
}

.p-data-grid-item-flex-text {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-flex-text {
    margin-bottom: 10px;
  }
}

.p-data-grid-item-flex-chart {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-data-grid-item__icon {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .p-data-grid-item__icon {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin-bottom: 10px;
  }
}

.p-data-grid-item__title {
  max-width: 260px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #f0faff;
  text-align: center;
  font-size: min(22px, 2vw);
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .p-data-grid-item__title {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .p-data-grid-item__title {
    font-size: 15px;
  }
}

.p-data-grid-item__number .title {
  color: #004ac2;
  display: block;
  font-weight: 500;
}
.p-data-grid-item__number .num {
  font-size: min(105px, 8.5vw);
  font-weight: 700;
  color: #004ac2;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-data-grid-item__number .num {
    font-size: 74px;
  }
}
.p-data-grid-item__number .unit {
  font-size: min(40px, 3.5vw);
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .p-data-grid-item__number .unit {
    font-size: 28px;
  }
}

.p-data-grid-item-number-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-number-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-data-grid-item-number-flex-box {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-number-flex-box {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.p-data-grid-item-number-flex-box .title {
  font-size: 20px;
  font-size: 1.25rem;
  font-size: min(20px, 1.9vw);
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-number-flex-box .title {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-data-grid-item-number-flex-box .num {
  font-size: min(88px, 6.5vw);
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-number-flex-box .num {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.p-data-grid-item-number-flex-box .unit {
  font-size: min(33px, 2.8vw);
}
@media screen and (max-width: 576px) {
  .p-data-grid-item-number-flex-box .unit {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
.p-data-grid-item-number-flex-box:nth-child(2) .title,
.p-data-grid-item-number-flex-box:nth-child(2) .num {
  color: #00adff;
}

/* 会社について
----------------------------------------------------------------- */
.p-data-company .p-data-grid {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.p-data-company .p-data-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-data-company .p-data-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-data-company .p-data-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-data-company .div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.p-data-company .div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1/2/2/4;
}

/* 社員について
----------------------------------------------------------------- */
.p-data-employee .p-data-grid {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
}
.p-data-employee .p-data-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-data-employee .p-data-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-data-employee .p-data-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-data-employee .p-data-grid > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.p-data-employee .p-data-grid > *:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.p-data-employee .p-data-grid > *:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.p-data-employee .div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.p-data-employee .div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1/2/2/4;
}
.p-data-employee .div3 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
}
.p-data-employee .div4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
}

/* 働き方について
----------------------------------------------------------------- */
.p-data-style {
  margin-bottom: 100px;
}
.p-data-style .p-data-grid {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
}
.p-data-style .p-data-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-data-style .p-data-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-data-style .p-data-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-data-style .p-data-grid > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.p-data-style .p-data-grid > *:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.p-data-style .p-data-grid > *:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.p-data-style .div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.p-data-style .div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
}
.p-data-style .div3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
}
.p-data-style .div4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.p-data-style .div5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}
.p-data-style .div6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
}

/* ==========================================================================
募集要項・エントリー
========================================================================== */
.p-entry-guideline-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-tabs {
    display: none;
  }
}

.p-entry-guideline-tabs-tab {
  font-size: 24px;
  font-size: 1.5rem;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #d6d6d6;
  color: #acacac;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 8px 10px;
  text-align: center;
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-tabs-tab {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.p-entry-guideline-tabs-tab:not(:last-child) {
  margin-right: 15px;
}
.p-entry-guideline-tabs-tab.is-active {
  background-color: #004ac2;
  color: #fff;
  pointer-events: none;
}

.p-entry-guideline-tab-sp {
  display: none;
  background-color: #004ac2;
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-tab-sp {
    display: block;
  }
}
.p-entry-guideline-tab-sp span {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 18px;
  position: absolute;
  top: 14px;
  right: 10px;
  border: 1px solid #004ac2;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-entry-guideline-tab-sp span::before, .p-entry-guideline-tab-sp span::after {
  content: "";
  width: 13px;
  height: 2px;
  background-color: #004ac2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-tab-sp span::before, .p-entry-guideline-tab-sp span::after {
    width: 10px;
  }
}
.p-entry-guideline-tab-sp span::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-entry-guideline-tab-sp span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-entry-guideline-tab-sp.is-open span {
  background-color: #004ac2;
  border-color: #fff;
}
.p-entry-guideline-tab-sp.is-open span::before, .p-entry-guideline-tab-sp.is-open span::after {
  background-color: #fff;
}
.p-entry-guideline-tab-sp.is-open span::before {
  opacity: 0;
}
.p-entry-guideline-tab-sp.is-open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.p-entry-guideline-contents {
  background-color: #fff;
  padding: 3.75rem;
  display: none;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contents {
    padding: 30px;
  }
}
.p-entry-guideline-contents.is-active {
  display: block;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contents.is-active {
    display: none;
  }
}
.p-entry-guideline-contents + .p-entry-guideline-tab-sp {
  margin-top: 10px;
}

.p-entry-guideline-contents__table {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.p-entry-guideline-contents__table tr th,
.p-entry-guideline-contents__table tr td {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contents__table tr th,
  .p-entry-guideline-contents__table tr td {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contents__table tr th,
  .p-entry-guideline-contents__table tr td {
    display: block;
  }
}
.p-entry-guideline-contents__table tr th {
  color: #004ac2;
  vertical-align: top;
  width: 130px;
  padding-left: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contents__table tr th {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.p-entry-guideline-contents__table tr td {
  padding-left: 2em;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contents__table tr td {
    padding-left: 0;
    padding-top: 10px;
  }
}
.p-entry-guideline-contents__table tr td h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contents__table tr td h3 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-entry-guideline-contents__table tr td dl {
  margin: 0 0 20px 0;
  line-height: 1.8;
}
.p-entry-guideline-contents__table tr td dl dt {
  font-weight: 400;
}
.p-entry-guideline-contents__table tr td dl dd + dt {
  margin-top: 1.25em;
}
.p-entry-guideline-contents__table tr td dl + h3 {
  border-top: 1px solid rgba(48, 48, 48, 0.3);
  margin-top: 2em;
  padding-top: 2em;
}
.p-entry-guideline-contents__table tr:not(:last-child) {
  border-bottom: 1px solid rgba(48, 48, 48, 0.3);
}

.p-entry-guideline-links__title {
  text-align: center;
  margin-top: 7.5rem;
  font-size: 24px;
  font-size: 1.5rem;
  color: #004ac2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-links__title {
    font-size: 21px;
    font-size: 1.3125rem;
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-links__title {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.p-entry-guideline-links__title span {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  color: #303030;
  font-weight: 400;
  margin-top: 0.75em;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-links__title span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-entry-guideline-links__title::after, .p-entry-guideline-links__title::before {
  content: "";
  width: 2px;
  height: 60px;
  background-color: #004ac2;
  position: absolute;
  top: 50%;
}
.p-entry-guideline-links__title::before {
  left: -50px;
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-links__title::before {
    left: 10px;
  }
}
.p-entry-guideline-links__title::after {
  right: -50px;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-links__title::after {
    right: 10px;
  }
}

.p-entry-guideline-links-contents {
  background-color: #f5f6f7;
  padding: 50px 20px;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-links-contents > .c-btn-main a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-links-contents .c-btn-main {
    max-width: 223px;
  }
}

.p-entry-guideline-links-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-links-contents-flex {
    display: block;
    margin-bottom: 10px;
  }
}
.p-entry-guideline-links-contents-flex .c-btn-main {
  margin: 0 10px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-links-contents-flex .c-btn-main {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-entry-guideline-links-contents-flex .c-btn-main a {
  background-image: none;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-links-contents-flex .c-btn-main a {
    line-height: 3.2;
  }
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-links-contents-flex .c-btn-main a img {
    max-height: 22px;
  }
}
.p-entry-guideline-links-contents-flex .c-btn-main a:hover {
  background-color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-links-contents-flex .c-btn-main + .c-btn-main {
    margin-top: 10px;
  }
}

.p-entry-guideline-contact {
  margin-top: 4.375rem;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact {
    margin-top: 3.125rem;
  }
}

.p-entry-guideline-contact__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact__title {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.p-entry-guideline-contact-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contact-flex {
    display: block;
  }
}

.p-entry-guideline-contact-flex-box {
  -ms-flex-preferred-size: 48.77%;
      flex-basis: 48.77%;
  background-color: #f5f6f7;
  text-align: center;
  padding: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact-flex-box {
    padding: 1.25rem;
  }
}
.p-entry-guideline-contact-flex-box > div {
  width: 100%;
}
.p-entry-guideline-contact-flex-box h4 {
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact-flex-box h4 {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-entry-guideline-contact-flex-box .tel {
  color: #004ac2;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}
.p-entry-guideline-contact-flex-box .tel span {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 10px;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact-flex-box .tel span {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contact-flex-box .tel span {
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-entry-guideline-contact-flex-box .open {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact-flex-box .open {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-entry-guideline-contact-flex-box .open span {
  padding: 2px 5px;
  display: inline-block;
  border: 1px solid rgba(48, 48, 48, 0.5);
  line-height: 1.3;
  margin-right: 5px;
}
.p-entry-guideline-contact-flex-box .address {
  font-family: "Josefin Sans", sans-serif;
  color: #004ac2;
  font-size: min(40px, 2.68vw);
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .p-entry-guideline-contact-flex-box .address {
    font-size: min(24px, 2.4vw);
  }
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contact-flex-box .address {
    font-size: min(35px, 6.1vw);
  }
}
@media screen and (max-width: 576px) {
  .p-entry-guideline-contact-flex-box + .p-entry-guideline-contact-flex-box {
    margin-top: 10px;
  }
}

/* よくある質問
----------------------------------------------------------------- */
.p-entry-faq-box {
  background-color: #fff;
  padding: 1.875rem 6.25rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .p-entry-faq-box {
    padding: 1.25rem 3.125rem 1.25rem 3.75rem;
  }
}
.p-entry-faq-box__q {
  font-size: 24px;
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .p-entry-faq-box__q {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 576px) {
  .p-entry-faq-box__q {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-entry-faq-box__q::before {
  content: "Q.";
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #004ac2;
  position: absolute;
  left: -60px;
  top: 0;
}
@media screen and (max-width: 576px) {
  .p-entry-faq-box__q::before {
    font-size: 25px;
    font-size: 1.5625rem;
    left: -40px;
  }
}
.p-entry-faq-box__a {
  padding: 1.875rem 0 0 0;
  display: none;
}
@media screen and (max-width: 576px) {
  .p-entry-faq-box__a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-entry-faq-box__a dl dt {
  font-weight: 400;
}
.p-entry-faq-box__a dl dd {
  margin-bottom: 2em;
}
.p-entry-faq-box__a a {
  font-weight: 500;
}
.p-entry-faq-box__a a img {
  width: 20px;
  margin-left: 5px;
}
.p-entry-faq-box + .p-entry-faq-box {
  margin-top: 1.25rem;
}
.p-entry-faq-box.is-open .p-entry-faq-box__toggle {
  background-color: #fff;
}
.p-entry-faq-box.is-open .p-entry-faq-box__toggle::before, .p-entry-faq-box.is-open .p-entry-faq-box__toggle::after {
  background-color: #004ac2;
}
.p-entry-faq-box.is-open .p-entry-faq-box__toggle::before {
  opacity: 0;
}
.p-entry-faq-box.is-open .p-entry-faq-box__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.p-entry-faq-box__toggle {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 32px;
  right: 32px;
  border-radius: 20px;
  background-color: #004ac2;
  cursor: pointer;
  border: 1px solid #004ac2;
}
@media screen and (max-width: 576px) {
  .p-entry-faq-box__toggle {
    width: 27px;
    height: 27px;
    top: 20px;
    right: 12px;
  }
}
.p-entry-faq-box__toggle::before, .p-entry-faq-box__toggle::after {
  content: "";
  width: 13px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .p-entry-faq-box__toggle::before, .p-entry-faq-box__toggle::after {
    width: 10px;
  }
}
.p-entry-faq-box__toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-entry-faq-box__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/* ==========================================================================
 スクロール
=========================================================================*/
.u-scroll-anchor {
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.u-margin-auto {
  margin: auto;
}

.u-margin-remove {
  margin: 0 !important;
}

.u-margin-remove-top {
  margin-top: 0 !important;
}

.u-margin-xxsmall-top {
  margin-top: 10px;
}

.u-margin-xsmall-top {
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .u-margin-xsmall-top {
    margin-top: 14px;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xsmall-top {
    margin-top: 10px;
  }
}

.u-margin-small-top {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-small-top {
    margin-top: 1.25rem;
  }
}

.u-margin-medium-small-top {
  margin-top: 1.875rem;
}
@media screen and (max-width: 820px) {
  .u-margin-medium-small-top {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-medium-small-top {
    margin-top: 1.875rem;
  }
}

.u-margin-medium-top {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-medium-top {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-medium-top {
    margin-top: 2.5rem;
  }
}

.u-margin-large-top {
  margin-top: 4rem;
}
@media screen and (max-width: 576px) {
  .u-margin-large-top {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-large-top {
    margin-top: 2.5rem;
  }
}

.u-margin-xlarge-top {
  margin-top: 5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-xlarge-top {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xlarge-top {
    margin-top: 3.75rem;
  }
}

.u-margin-xxlarge-top {
  margin-top: 6.5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-xxlarge-top {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xxlarge-top {
    margin-top: 5rem;
  }
}

.u-margin-small-bottom {
  margin-bottom: 1.25rem;
}

/* パディング
----------------------------------------------------------------- */
.u-padding-remove {
  padding: 0 !important;
}

.u-padding-small {
  padding: 1.25rem;
}

.u-padding-medium {
  padding: 2.5rem;
}

.u-padding-large {
  padding: 3.75rem;
}
@media screen and (max-width: 576px) {
  .u-padding-large {
    padding: 2.5rem;
  }
}

.u-padding-top-xlarge {
  padding-top: 5rem;
}
@media screen and (max-width: 820px) {
  .u-padding-top-xlarge {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-padding-top-xlarge {
    padding-top: 3.75rem;
  }
}

.u-padding-xxlarge-top {
  padding-top: 6.25rem;
}
@media screen and (max-width: 820px) {
  .u-padding-xxlarge-top {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-padding-xxlarge-top {
    padding-top: 5rem;
  }
}

.u-padding-small-bottom {
  padding-bottom: 1.25rem;
}
/*# sourceMappingURL=main.css.map */