@charset "UTF-8";
/* ================================
Reset
================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  word-break: break-all;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

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

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

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

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

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

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

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Base
================================ */
html {
  font-size: clamp(10px, 1.3vw, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 6.3rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.3vw;
    scroll-padding-top: 5.3rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

* img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
a:hover {
  opacity: 0.7;
}

/* ================================
Container
================================ */
/* root container */
.l-wrapper {
  overflow-x: clip;
}

/* main container */
.l-content-container {
  position: relative;
  padding: 6.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-container {
    padding: 5.3rem 0 0;
  }
}

/* container */
.l-container {
  width: calc(100% - 5rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.l-container.-sm {
  max-width: 1000px;
}
.l-container.-xs {
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: calc(100% - 2.5rem);
  }
}

/* ================================
Header
================================ */
.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header__body {
  max-width: 1400px;
  width: calc(100% - 2.5rem);
  height: 5rem;
  background-color: #fff;
  border-radius: 9999px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.2);
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.3rem;
  padding: 0 1rem;
}
.l-header__logo {
  position: relative;
  width: 16.1rem;
  aspect-ratio: 258/38;
  margin: 0 auto 0 0;
}
.l-header__toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0.9rem 0;
  }
  .l-header__body {
    width: calc(100% - 1.3rem);
    height: 3.4rem;
  }
  .l-header__inner {
    padding: 0 1.3rem;
  }
  .l-header__logo {
    width: 11.9rem;
  }
  .l-header__toggle {
    display: block;
    position: relative;
    z-index: 1000;
    width: 2.3rem;
    height: 0.8rem;
    cursor: pointer;
  }
  .l-header__toggle span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header__toggle span:nth-of-type(1) {
    top: 0;
  }
  .l-header__toggle span:nth-of-type(2) {
    bottom: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(0.4rem) rotate(30deg);
            transform: translateY(0.4rem) rotate(30deg);
  }
  .l-header__toggle.is-active span:nth-of-type(2) {
    -webkit-transform: translateY(-0.4rem) rotate(-30deg);
            transform: translateY(-0.4rem) rotate(-30deg);
  }
}

.l-header-drawer {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 1.3rem;
}
.l-header-drawer__menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
}
.l-header-drawer__menu-item {
  font-size: 0.9rem;
}
.l-header-drawer__menu-item a {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header-drawer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0.6rem;
}
.l-header-drawer__btn.c-btn {
  min-width: initial;
  width: 8.8rem;
  height: 3rem;
  font-size: 0.9rem;
  color: #000099;
  border-color: #000099;
}
.l-header-drawer__btn.c-btn.-bl {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#000099), to(#6199FF));
  background: linear-gradient(to right, #000099, #6199FF);
  border: none;
}
.l-header-drawer__sub-menu-toggle {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-header-drawer__menu-item {
    position: relative;
    z-index: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .l-header-drawer__menu-item > a {
    position: relative;
  }
  .l-header-drawer__menu-item > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000099;
    opacity: 0;
  }
  .l-header-drawer__menu-item > a:hover {
    color: #000099;
    opacity: 1;
  }
  .l-header-drawer__menu-item > a:hover::after {
    opacity: 1;
  }
  .l-header-drawer__menu-item:hover .l-header-drawer__sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .l-header-drawer__sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: -1.3rem;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    background-color: #fff;
    padding: 0.6rem 1.3rem;
    border-radius: 0 0 0.6rem 0.6rem;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header-drawer__sub-menu-item > a {
    min-width: 7.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1em;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 0.6rem 0;
  }
  .l-header-drawer__sub-menu-item > a::after {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: inline-block;
    height: 0.6666666667em;
    aspect-ratio: 19/18;
    background: url(../img/cmn/arrow_next_bl.svg) no-repeat center center/contain;
  }
  .l-header-drawer__sub-menu-item:not(:last-of-type) {
    border-bottom: 1px solid #E8E8E8;
  }
}
@media screen and (max-width: 768px) {
  .l-header-drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6.3rem 1.9rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: -webkit-gradient(linear, left top, left bottom, from(#eff7ff), to(#bad0f8));
    background: linear-gradient(to bottom, #eff7ff, #bad0f8);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header-drawer__menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l-header-drawer__menu-item {
    font-size: 1.1rem;
    border-bottom: 1px solid #fff;
  }
  .l-header-drawer__menu-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1em;
    padding: 1.3rem;
  }
  .l-header-drawer__menu-item > a::after {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: inline-block;
    height: 0.875em;
    aspect-ratio: 19/18;
    background: url(../img/cmn/arrow_next_dbl.svg) no-repeat center center/contain;
  }
  .l-header-drawer__menu-item > a br {
    display: none;
  }
  .l-header-drawer__menu-item.menu-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-header-drawer__menu-item.menu-item-has-children > a {
    width: calc(100% - 3.8rem);
    padding-right: 0;
  }
  .l-header-drawer__menu-item.menu-item-has-children > a::after {
    content: none;
  }
  .l-header-drawer__menu-item.menu-item-has-children.is-open .l-header-drawer__sub-menu-toggle::after {
    content: "－";
  }
  .l-header-drawer__menu-item.menu-item-has-children.is-open .l-header-drawer__sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding-bottom: 1.3rem;
  }
  .l-header-drawer__sub-menu-toggle {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    z-index: 0;
    width: 3.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.3rem 0;
    margin: 0 0 0 auto;
  }
  .l-header-drawer__sub-menu-toggle::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 2.1rem;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
  }
  .l-header-drawer__sub-menu-toggle::after {
    content: "＋";
    color: #000099;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header-drawer__sub-menu {
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 100%;
    padding: 0 2.3rem 0;
    -webkit-transition: opacity 0.2s ease-out, height 0.2s ease-out;
    transition: opacity 0.2s ease-out, height 0.2s ease-out;
  }
  .l-header-drawer__sub-menu-item {
    font-size: 1rem;
  }
  .l-header-drawer__sub-menu-item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .l-header-drawer__btn-wrap {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-header-drawer__btn.c-btn {
    width: 17.2rem;
    height: 3.4rem;
  }
  .l-header-drawer.is-active {
    visibility: visible;
    opacity: 1;
  }
}

/* ================================
Footer
================================ */
.l-footer {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#000099), to(#6199FF));
  background: linear-gradient(to right, #000099, #6199FF);
  padding: 6.9rem 0 5.6rem;
}
.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.9rem 2.5rem;
  margin: 0 0 6.9rem;
}
.l-footer__copyright {
  display: block;
  font-size: 0.7rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer {
    background: linear-gradient(210deg, #6199FF, #000099);
    padding: 3.8rem 0 3.1rem;
  }
  .l-footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 3.1rem;
  }
}

.l-footer-company {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-footer-company__logo {
  width: 100%;
  aspect-ratio: 292/43;
  margin: 0 0 1.9rem;
}
.l-footer-company__address {
  font-size: 0.9rem;
  line-height: 1.6;
}
.l-footer-company__group-logo {
  display: block;
  width: 11.6rem;
  aspect-ratio: 186/43;
  margin: auto 0 0;
}
@media screen and (max-width: 768px) {
  .l-footer-company {
    width: 15rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-footer-company__logo {
    margin: 0 auto 1.3rem;
  }
  .l-footer-company__address {
    font-size: 0.8rem;
    text-align: center;
  }
  .l-footer-company__group-logo {
    margin: 3.1rem 0 0;
  }
}

.l-footer-nav__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 4rem);
  grid-auto-flow: column;
  gap: 0 1.9rem;
}
.l-footer-nav__menu-item {
  border-bottom: 1px solid currentColor;
}
.l-footer-nav__menu-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5em;
  padding: 1.3rem;
}
.l-footer-nav__menu-item > a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  height: 0.875em;
  aspect-ratio: 19/18;
  background: url(../img/cmn/arrow_next_wh.svg) no-repeat center center/contain;
}
.l-footer-nav__sub-menu {
  padding: 0 2.3rem 1.3rem;
}
.l-footer-nav__sub-menu-item:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) {
  .l-footer-nav__menu-item.-company {
    align-self: start;
    grid-row: 2/7;
  }
  .l-footer-nav__menu-item.-recruit {
    align-self: start;
    grid-row: 2/7;
  }
  .l-footer-nav__menu-item.-strengths {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-nav {
    display: none;
  }
}

/* ================================
Common module
================================ */
/* heading */
.c-heading {
  color: #2C60BD;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 4.4rem;
}
.c-heading::before {
  content: attr(data-en);
  display: block;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.c-heading + .c-sentence {
  margin-top: 1.9rem;
}
.c-heading + .c-btn__wrap {
  margin-top: 3.1rem;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 1rem;
    margin: 0 0 1.9rem;
  }
  .c-heading::before {
    font-size: 3rem;
    margin: 0 0 0.3rem;
  }
  .c-heading + .c-btn__wrap {
    margin-top: 1.9rem;
  }
}
.c-heading.-wh {
  color: #fff;
}
.c-heading.-wh::before {
  color: #fff;
}

.c-arch-heading {
  color: #2C60BD;
  font-size: 1.9rem;
  font-weight: 600;
  border: 2px solid currentColor;
  border-width: 2px 0 0 2px;
  border-radius: 1.9rem 0 0 0;
  padding: 1.6rem 1.6rem 0 1.6rem;
  margin: 0 0 1.9rem;
}
.c-arch-heading.-wh {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-arch-heading {
    font-size: 1.5rem;
    border-radius: 1.3rem 0 0 0;
    padding: 1rem 1.3rem 0.6rem 1.3rem;
    margin: 0 0 1.3rem;
  }
}

/*sentence*/
.c-sentence {
  line-height: 1.6;
}
.c-sentence + .c-sentence {
  margin-top: 1.6em;
}
.c-sentence + .c-btn__wrap {
  margin-top: 3.1rem;
}
@media screen and (max-width: 768px) {
  .c-sentence {
    font-size: 0.9rem;
  }
  .c-sentence + .c-btn__wrap {
    margin-top: 2.5rem;
  }
}
.c-sentence.-center_only_desktop {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-sentence.-center_only_desktop {
    text-align: left;
  }
}
.c-sentence.-right_only_desktop {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-sentence.-right_only_desktop {
    text-align: left;
  }
}

.c-underline-link {
  color: #B1CDFF;
  text-decoration: underline;
}

.c-arrow-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  font-size: 1.1rem;
  line-height: 1;
}
.c-arrow-link__ico {
  display: inline-block;
  width: 1.1rem;
  aspect-ratio: 18/6;
  color: currentColor;
}
@media screen and (max-width: 768px) {
  .c-arrow-link {
    gap: 0 0.5em;
    font-size: 1rem;
  }
}

/* button */
.c-arrow-btn {
  position: relative;
  min-width: 15rem;
  height: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  color: #2C60BD;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0 2.5rem;
  border-radius: 9999px;
  background-color: #fff;
  border: 2px solid #2C60BD;
}
.c-arrow-btn__arrow {
  height: 1em;
  aspect-ratio: 14/13;
}
.c-arrow-btn.-bl {
  color: #fff;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#2c60bd), to(#6199ff));
  background: linear-gradient(to right, #2c60bd, #6199ff);
}
@media screen and (max-width: 768px) {
  .c-arrow-btn {
    height: 3.4rem;
    font-size: 0.9rem;
  }
  .c-arrow-btn__ico {
    height: 1.9rem;
  }
}

.c-btn {
  min-width: 15rem;
  height: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5em;
  color: #2C60BD;
  font-weight: 500;
  background-color: #fff;
  border: 2px solid #2C60BD;
  border-radius: 9999px;
}
@media screen and (max-width: 768px) {
  .c-btn {
    height: 3.4rem;
  }
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem 3.8rem;
}
.c-btn__wrap + .c-sentence {
  margin-top: 1.3rem;
}
.c-btn__wrap.-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.c-btn__wrap.-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.c-btn__wrap.-vertical_only_desktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-vertical_only_desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn__wrap.-right_only_desktop {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-right_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn__wrap.-left_only_desktop {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_mobile {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

/* table */
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  font-size: 0.9rem;
  border-bottom: 1px solid #E8E8E8;
  padding: 1rem 0;
}
.c-table th {
  width: 9.4rem;
  color: #2C60BD;
  font-weight: 400;
}
.c-table td a {
  text-decoration: underline;
}
.c-table td p + p {
  margin-top: 1.5em;
}
.c-table td ul + p {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
  .c-table th {
    padding: 1em 0 0;
    border-bottom: none;
  }
  .c-table td {
    padding: 0.25em 0 1em;
  }
}

/* list */
.c-dot-list li {
  position: relative;
  padding: 0 0 0 1em;
}
.c-dot-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/* pager */
.c-pager__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.c-pager__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  width: 1.9rem;
  height: 1.9rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-pager__item.current {
  color: #2C60BD;
  font-weight: 700;
}
.c-pager__item.prev, .c-pager__item.next {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2C60BD;
  font-size: 1.1rem;
  font-weight: 500;
}
.c-pager__item.prev i, .c-pager__item.next i {
  height: 3.1rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#6199ff), to(#000099)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #6199ff, #000099) border-box;
  border-radius: 50%;
}
.c-pager__item.prev i::before, .c-pager__item.next i::before {
  content: "";
  display: inline-block;
  height: 0.8rem;
  aspect-ratio: 14/13;
  background: url(../img/cmn/arrow_next_bl.svg) no-repeat center center/contain;
}
.c-pager__item.prev {
  margin: 0 2.5rem 0 0;
}
.c-pager__item.prev i::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-pager__item.next {
  margin: 0 0 0 2.5rem;
}
.c-pager__item:hover {
  opacity: 0.7;
}
.c-pager .screen-reader-text {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-pager__item.prev, .c-pager__item.next {
    font-size: 1rem;
  }
  .c-pager__item.prev i, .c-pager__item.next i {
    height: 2.5rem;
  }
  .c-pager__item.prev i::before, .c-pager__item.next i::before {
    height: 0.6rem;
  }
  .c-pager__item.prev {
    margin: 0 0.6rem 0 0;
  }
  .c-pager__item.next {
    margin: 0 0 0 0.6rem;
  }
}

/* breadcrumbs */
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}
.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  white-space: nowrap;
}
.c-breadcrumbs__item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  height: 0.5em;
  aspect-ratio: 1/1;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 1em;
}

/* category box */
.c-category-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem 2.3rem;
}
.c-category-box__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.c-category-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.c-category-box__item {
  min-width: 6.9rem;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  background-color: #EFF7FF;
  padding: 1em;
  cursor: pointer;
  border-radius: 9999px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-category-box__item.is-active {
  color: #fff;
  background-color: #2C60BD;
}
.c-category-box__item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-category-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .c-category-box__list {
    overflow-x: auto;
    gap: 0.3rem 0.3rem;
  }
  .c-category-box__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 5.6rem;
  }
}

/* MW WP Form */
.mwform-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mwform-item__col--label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.1rem;
  padding: 0.8rem 2.5rem 0.8rem 0;
}
.mwform-item__col--controls {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8rem 0;
}
.mwform-item__label {
  min-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.mwform-item__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem 0.6rem;
}
.mwform-item__controls.-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.mwform-item__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0.3rem;
}
.mwform-item__block:not(:last-of-type) {
  margin-bottom: 0.6rem;
}
.mwform-item.-required .mwform-item__label::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "必須";
  color: #2C60BD;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 500;
  border: 1px solid #2C60BD;
  border-radius: 9999px;
  padding: 0.25em 0.5em;
}
.mwform-item.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mwform-item.-vertical .mwform-item__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mwform-item.-pb0 .mwform-item__col--controls {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .mwform-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mwform-item__col {
    width: 100%;
  }
  .mwform-item__col--label {
    padding: 0 0 0.6rem;
  }
  .mwform-item__col--controls {
    padding: 0 0 1.5rem;
  }
  .mwform-item__label {
    min-height: initial;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0 1.3rem;
    font-size: 1rem;
  }
  .mwform-item__controls {
    font-size: 0.9rem;
  }
  .mwform-item__controls.-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mwform-item__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .mwform-item.-required .mwform-item__label::after {
    font-size: 0.8rem;
  }
}

.mwform-text-field__control {
  width: 100%;
  height: 4rem;
  border: 1px solid #E8E8E8;
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .mwform-text-field__control {
    height: 3.1rem;
    border-color: rgba(0, 0, 0, 0.6);
  }
}

.mwform-textarea-field__control {
  width: 100%;
  height: 13.1rem;
  border: 1px solid #E8E8E8;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .mwform-textarea-field__control {
    height: 9.4rem;
    border-color: rgba(0, 0, 0, 0.6);
  }
}

.mwform-select-field {
  position: relative;
  max-width: 25rem;
  width: 100%;
}
.mwform-select-field__control {
  width: 100%;
  height: 4rem;
  border: 1px solid #E8E8E8;
  padding: 0 1em;
}
.mwform-select-field__toggle {
  position: absolute;
  top: 1.4rem;
  right: 1.3rem;
}
.mwform-select-field__toggle::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .mwform-select-field__control {
    height: 3.1rem;
    border-color: rgba(0, 0, 0, 0.6);
  }
  .mwform-select-field__toggle {
    top: 0.9rem;
    right: 0.9rem;
  }
}

.mwform-checkboxes-field__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}

.mwform-checkbox-field {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 1rem;
}
.mwform-checkbox-field__control {
  position: relative;
  width: 1.3rem;
  height: 1.3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff;
  border: 1px solid #2C60BD;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
}
.mwform-checkbox-field__control::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.3rem;
  right: 0;
  left: 0.3rem;
  display: inline-block;
  width: 1.4rem;
  aspect-ratio: 22/10;
  border-left: 2px solid #2C60BD;
  border-bottom: 2px solid #2C60BD;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.mwform-checkbox-field__control:checked::before {
  opacity: 1;
}
.mwform-checkbox-field__label {
  font-weight: 500;
}
.mwform-checkbox-field__label a {
  text-decoration: underline;
}

.mwform-radio-field {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 1rem;
}
.mwform-radio-field__control {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0;
  border: 1px solid #c8c8c8;
  background-color: #fff;
}
.mwform-radio-field__label a {
  text-decoration: underline;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mwform-privacy {
  padding: 3.8rem 0 0;
}
.mwform-privacy__desc {
  text-align: center;
  margin: 0 0 1rem;
}
.mwform-privacy__desc a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .mwform-privacy {
    padding: 1rem 0 0;
  }
  .mwform-privacy__desc {
    font-size: 0.9rem;
    text-align: left;
  }
}

.mwform-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem 1.3rem;
  margin: 2.5rem 0 0;
}
.mwform-button-field {
  width: 17.5rem;
  height: 5rem;
  padding: 0;
}
.mwform-button-field__control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 3.8rem 0 1.9rem;
}
.mwform-button-field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.9rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1em;
  aspect-ratio: 14/13;
  background: url(../img/cmn/arrow_next_bl.svg?0320) no-repeat center center/contain;
}
.mwform-button-field:not(:has(.mwform-button-field__control)) {
  display: none;
}
.mwform-button-field.-back .mwform-button-field__control {
  padding: 0 1.9rem 0 3.8rem;
}
.mwform-button-field.-back::after {
  right: initial;
  left: 1.9rem;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .mwform-button-field {
    width: 15rem;
    height: 3.4rem;
  }
  .mwform-button-field__control {
    min-width: initial;
  }
  .mwform-button-field__control::after {
    right: 1.3rem;
  }
}

.mw_wp_form_confirm .-confirm_hidden {
  display: none;
}
.mw_wp_form_confirm .mwform-item__col {
  border-bottom: 1px solid #E8E8E8;
}
.mw_wp_form_confirm .mwform-item__label {
  min-height: initial;
}
.mw_wp_form_confirm .mwform-select-field__toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .mwform-item__col--label {
    border-bottom: none;
  }
  .mw_wp_form_confirm .mwform-item__col--controls {
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
  }
}

/* media object */
.c-media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.3rem 2.5rem;
}
.c-media-object__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48%;
  aspect-ratio: 480/310;
  border-radius: 2.5rem;
  overflow: hidden;
}
.c-media-object__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .c-media-object {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-media-object__img {
    width: 100%;
  }
}
.c-media-object.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .c-media-object.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* news list */
.c-news-list {
  border-top: 1px solid #E8E8E8;
}
.c-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 2.5rem;
  border-bottom: 1px solid #E8E8E8;
  padding: 1.3rem 0;
}
.c-news-list__meta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5rem;
}
.c-news-list__category {
  min-width: 5.6rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: #2C60BD;
}
.c-news-list__title {
  font-size: 1rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .c-news-list__date {
    font-size: 0.9rem;
  }
  .c-news-list__category {
    font-size: 0.8rem;
  }
  .c-news-list__title {
    font-size: 0.9rem;
  }
}

/* work card */
.c-works-card__thumb {
  width: 100%;
  aspect-ratio: 380/420;
  border-radius: 1.9rem;
  overflow: hidden;
  margin: 0 0 2.5rem;
}
.c-works-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0;
}
.c-works-card__category {
  color: #2C60BD;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid #2C60BD;
  border-radius: 9999px;
  padding: 0.25em 1em;
}
.c-works-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-works-card__thumb {
    border-radius: 0.9rem;
    margin: 0 0 0.6rem;
  }
  .c-works-card__title {
    font-size: 0.9rem;
  }
  .c-works-card__category {
    font-size: 0.8rem;
  }
}

.c-works-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.8rem 1.9rem;
}
.c-works-card__wrap .c-works-card {
  width: calc((100% - 3.8rem) / 3);
}
@media screen and (max-width: 768px) {
  .c-works-card__wrap {
    gap: 1.9rem 1.3rem;
  }
  .c-works-card__wrap .c-works-card {
    width: calc(50% - 0.7rem);
  }
}

/* voice card */
.c-voice-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 1.9rem;
  overflow: hidden;
  -webkit-box-shadow: 0.3rem 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0.3rem 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.15);
}
.c-voice-card__thumb {
  width: 100%;
  aspect-ratio: 370/360;
  overflow: hidden;
}
.c-voice-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 7.5rem;
  position: relative;
  padding: 1.5rem;
}
.c-voice-card__catch {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
.c-voice-card__name {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 4.4rem 0 0;
  margin: 0 0 0.6rem;
}
.c-voice-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 4.4rem 0 0;
}
.c-voice-card__meta span:not(:first-of-type)::before {
  content: "/";
  margin: 0 0.5em;
}
.c-voice-card__ico {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  height: 4.4rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 2px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#000099), to(#6199ff)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #000099, #6199ff) border-box;
}
.c-voice-card__arrow {
  height: 25.7142857143%;
  aspect-ratio: 14/13;
  color: #2C60BD;
}
.c-voice-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-voice-card {
    border-radius: 1.3rem;
  }
  .c-voice-card__thumb {
    aspect-ratio: 258/146;
  }
  .c-voice-card__content {
    min-height: initial;
    padding: 1.1rem;
  }
  .c-voice-card__catch {
    font-size: 0.9rem;
    margin: 0 0 0.6rem;
  }
  .c-voice-card__name {
    font-size: 1rem;
    padding: 0 1.9rem 0 0;
    margin: 0 0 0.3rem;
  }
  .c-voice-card__meta {
    font-size: 0.8rem;
    padding: 0 1.9rem 0 0;
  }
  .c-voice-card__ico {
    bottom: 1.1rem;
    right: 1.1rem;
    height: 1.9rem;
    border-width: 1px;
  }
}

.c-voice-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 2.8rem;
}
.c-voice-card__wrap .c-voice-card {
  width: calc((100% - 5.6rem) / 3);
}
@media screen and (max-width: 768px) {
  .c-voice-card__wrap .c-voice-card {
    width: 100%;
  }
}

/* lower link */
.c-lower-link__img-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 1.3rem;
}
.c-lower-link__img {
  width: calc(100% - 0.6rem);
  aspect-ratio: 368/260;
  border-radius: 1.3rem;
  overflow: hidden;
  -webkit-box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
}
.c-lower-link__ico {
  position: absolute;
  bottom: -0.6rem;
  right: 0;
  height: 4rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 2px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#000099), to(#6199ff)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #000099, #6199ff) border-box;
  border-radius: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
}
.c-lower-link__arrow {
  height: 37.5%;
  aspect-ratio: 14/13;
  color: #2C60BD;
}
.c-lower-link__title {
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-lower-link__img-wrap {
    margin: 0 0 1rem;
  }
  .c-lower-link__img {
    border-radius: 1rem;
  }
  .c-lower-link__ico {
    height: 2.5rem;
  }
  .c-lower-link__title {
    font-size: 1.1rem;
  }
}

.c-lower-link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 2.3rem;
}
.c-lower-link__wrap .c-lower-link {
  width: 23.8rem;
}
@media screen and (max-width: 768px) {
  .c-lower-link__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-lower-link__wrap .c-lower-link {
    width: 100%;
  }
}

/* faq list */
.c-faq-list__item {
  padding: 0 0 1.9rem;
  border-bottom: 1px solid #E8E8E8;
}
.c-faq-list__item:not(:last-of-type) {
  margin-bottom: 1.9rem;
}
.c-faq-list__header, .c-faq-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 0 0.6rem;
}
.c-faq-list__header::before, .c-faq-list__content::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.3rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.c-faq-list__header {
  margin: 0 0 0.6rem;
}
.c-faq-list__header::before {
  content: "Q";
  color: #2C60BD;
}
.c-faq-list__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  font-weight: 600;
}
.c-faq-list__content::before {
  content: "A";
}
@media screen and (max-width: 768px) {
  .c-faq-list__item {
    padding: 0 0 1.3rem;
  }
  .c-faq-list__item:not(:last-of-type) {
    margin-bottom: 1.3rem;
  }
  .c-faq-list__header, .c-faq-list__content {
    gap: 0 0.3rem;
  }
  .c-faq-list__header::before, .c-faq-list__content::before {
    font-size: 1.3rem;
  }
  .c-faq-list__header {
    margin: 0 0 0.3rem;
  }
  .c-faq-list__question {
    font-size: 1.3rem;
  }
  .c-faq-list__answer {
    font-size: 0.9rem;
  }
}

/* CTA */
.c-cta {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: calc(100% - 5rem);
  color: #fff;
  background: url(../img/cmn/cta_bg.jpg) no-repeat center center/cover;
  border-radius: 2.5rem 2.5rem 0 0;
  overflow: hidden;
  padding: 7.5rem 0;
  margin: 6.3rem auto 0;
}
.c-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.9rem 3.1rem;
}
.c-cta__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-cta__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cta__heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 3.1rem;
}
.c-cta__heading::before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.c-cta__heading span {
  display: inline-block;
  border-top: 1px solid #fff;
  padding: 0.9rem 0 0;
  margin: 0.6rem 0 0;
}
.c-cta:has(+ .l-footer) {
  margin-bottom: -13.1rem;
}
.c-cta + .l-footer {
  padding-top: 17.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta {
    width: calc(100% - 2.5rem);
    border-radius: 1.3rem 1.3rem 0 0;
    background: url(../img/cmn/cta_bg_sp.jpg) no-repeat center center/cover;
    padding: 3.8rem 0;
    margin: 3.8rem auto 0;
  }
  .c-cta__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-cta__header {
    width: 100%;
  }
  .c-cta__heading {
    font-size: 1rem;
    margin: 0 0 2.5rem;
  }
  .c-cta__heading::before {
    font-size: 3.8rem;
  }
  .c-cta:has(+ .l-footer) {
    margin-bottom: -11.3rem;
  }
  .c-cta + .l-footer {
    padding-top: 15rem;
  }
}

.c-recruit-cta {
  color: #fff;
  background: url(../img/cmn/recruit-cta_bg.jpg?0319) no-repeat center center/cover;
  padding: 6.3rem 0;
  margin: 5rem 0 0;
}
.c-recruit-cta__heading {
  margin: 0 0 1.3rem;
}
.c-recruit-cta__heading span {
  display: none;
}
.c-recruit-cta__desc {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta {
    background: url(../img/cmn/recruit-cta_bg_sp.jpg) no-repeat center center/cover;
    padding: 3.8rem 0;
  }
  .c-recruit-cta__desc {
    font-size: 0.9rem;
    font-weight: 400;
  }
}

/* ================================
Page
================================ */
.p-page-content {
  padding: 5.6rem 0 0;
}
.p-page-content__editable-area h2 {
  color: #2C60BD;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1em 0 0.25em;
}
.p-page-content__editable-area h3 {
  color: #2C60BD;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1em 0 0.25em;
}
.p-page-content__editable-area p {
  line-height: 1.6;
}
.p-page-content__editable-area p + p {
  margin-top: 1.6em;
}
.p-page-content__editable-area .wp-block-separator {
  height: 1px;
  border-top: 1px solid #c8c8c8;
  margin: 3.8rem 0;
}
.p-page-content__editable-area ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 1.3rem 0;
}
.p-page-content__editable-area ul li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.p-page-content__editable-area ul li:not(:last-child) {
  margin-bottom: 0.25em;
}
.p-page-content__editable-area ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin: 1.3rem 0;
}
.p-page-content__editable-area ol li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.p-page-content__editable-area ol li:not(:last-child) {
  margin-bottom: 0.25em;
}
@media screen and (max-width: 768px) {
  .p-page-content {
    padding: 3.8rem 0 0;
  }
  .p-page-content__editable-area h2 {
    font-size: 1.3rem;
    margin: 1em 0 0.5em;
  }
  .p-page-content__editable-area h3 {
    font-size: 1rem;
    margin: 1em 0 0.5em;
  }
  .p-page-content__editable-area ul,
  .p-page-content__editable-area ol {
    margin: 1rem 0;
  }
}

.p-page-breadcrumbs {
  padding: 3.1rem 0 0;
}
.p-page-breadcrumbs + .p-page-header {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .p-page-breadcrumbs {
    padding: 1.3rem 0 0;
  }
  .p-page-breadcrumbs + .p-page-header {
    margin-top: 2rem;
  }
}

.p-page-header__title {
  margin: 0;
}
.p-page-header__desc {
  font-size: 1.3rem;
  margin: 1.3rem 0 0;
}
.p-page-header:has(+ .p-page-nav) {
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 768px) {
  .p-page-header {
    margin: 0;
  }
  .p-page-header__desc {
    font-size: 0.9rem;
  }
  .p-page-header:has(+ .p-page-nav) {
    margin-bottom: 1.9rem;
  }
}

.p-page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 2.3rem;
}
.p-page-nav__item {
  position: relative;
  width: calc((100% - 4.6rem) / 3);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  color: #2C60BD;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 1rem 1.3rem;
}
.p-page-nav__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2C60BD), to(#6199FF));
  background: linear-gradient(to right, #2C60BD, #6199FF);
}
.p-page-nav__item::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  height: 0.875em;
  aspect-ratio: 19/18;
  background: url(../img/cmn/arrow_next_bl.svg) no-repeat center center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .p-page-nav__list {
    gap: 0.6rem 1.3rem;
  }
  .p-page-nav__item {
    width: calc(50% - 0.7rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.6rem 0;
  }
  .p-page-nav__item::before {
    height: 2px;
  }
}

.p-page-sec__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem 3.1rem;
}
.p-page-sec__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24.4rem;
}
.p-page-sec__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-page-sec__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-page-sec__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-sec__header {
    width: 100%;
  }
  .p-page-sec__img {
    width: 100%;
  }
}

/* ================================
Top
================================ */
.p-top-btn {
  position: relative;
  min-width: 15rem;
  height: 4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  color: #000099;
  font-weight: 500;
  padding: 0 1.3rem 0 1.9rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#000099), to(#6199ff)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #000099, #6199ff) border-box;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-top-btn__ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 2.3rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#000099), to(#6199FF));
  background: linear-gradient(to right, #000099, #6199FF);
  border-radius: 50%;
}
.p-top-btn__arrow {
  height: 36.1111111111%;
  aspect-ratio: 14/13;
}
.p-top-btn.-bl {
  color: #fff;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#000099), to(#6199FF));
  background: linear-gradient(to right, #000099, #6199FF);
}
.p-top-btn.-bl .p-top-btn__ico {
  background: #fff;
  color: #2C60BD;
}
@media screen and (max-width: 768px) {
  .p-top-btn {
    height: 3.4rem;
  }
  .p-top-btn__ico {
    height: 1.9rem;
  }
}

.p-top-heading {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 3.1rem;
}
.p-top-heading::before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#000099), to(#6199FF));
  background: linear-gradient(to right, #000099, #6199FF);
  -webkit-background-clip: text;
          background-clip: text;
  text-transform: uppercase;
  white-space: nowrap;
}
.p-top-heading span {
  display: inline-block;
  border-top: 1px solid #000099;
  padding: 0.9rem 0 0;
  margin: 0.6rem 0 0;
}
.p-top-heading.-wh {
  color: #fff;
}
.p-top-heading.-wh::before {
  color: #fff;
  background: none;
}
.p-top-heading.-wh span {
  border-top-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-heading {
    font-size: 1rem;
    margin: 0 0 2.5rem;
  }
  .p-top-heading::before {
    font-size: 3.8rem;
  }
}

.p-top-sec__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem 3.1rem;
}
.p-top-sec__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
      align-self: center;
}
.p-top-sec__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-sec__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-top-sec__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-sec__header {
    width: 100%;
  }
}

.p-top-recruit {
  position: relative;
  z-index: 0;
  background-color: #EFF7FF;
  padding: 1.9rem 0 6.3rem;
}
.p-top-recruit::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 3.6vw;
  left: -3.9vw;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  display: block;
  width: 100.7vw;
  aspect-ratio: 1373/985;
  background: url(../img/top/recruit_object.svg) no-repeat center center/contain;
}
.p-top-recruit__img {
  border-radius: 1.9rem 0 0 1.9rem;
  overflow: hidden;
  margin: 0 -6.3rem 0 0;
}
.p-top-recruit__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5rem;
  margin: 3.1rem 0 0;
}
.p-top-recruit__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-top-recruit {
    padding: 5rem 0;
  }
  .p-top-recruit::before {
    bottom: -5.9rem;
    left: -10rem;
    width: 33.8rem;
    -webkit-transform: rotate(22deg) scale(-1, 1);
            transform: rotate(22deg) scale(-1, 1);
  }
  .p-top-recruit__img {
    width: calc(100% + 1.3rem);
    border-radius: 1.3rem 0 0 1.3rem;
    margin: 0 -1.3rem 0 0;
  }
  .p-top-recruit__link-wrap {
    width: 100vw;
    overflow-x: auto;
    gap: 0 1.3rem;
    padding: 0 1.3rem;
    margin: 3.1rem calc(50% - 50vw) 0;
  }
  .p-top-recruit__link-wrap::-webkit-scrollbar {
    display: none;
  }
  .p-top-recruit__link {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 15.5rem;
  }
}

.p-top-company {
  padding: 6.3rem 0;
}
.p-top-company__header {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 25rem;
  padding: 6.3rem 0 0;
}
.p-top-company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #EFF7FF;
  border-radius: 1.9rem 0 0 1.9rem;
  padding: 6.3rem;
  margin: 0 -6.3rem 0 0;
}
.p-top-company__link-list {
  width: 28.1rem;
  margin: 0 0 3.1rem;
}
.p-top-company__link-list li {
  position: relative;
  font-size: 1.3rem;
}
.p-top-company__link-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#000099), to(#6199FF));
  background: linear-gradient(to right, #000099, #6199FF);
}
.p-top-company__link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  padding: 1.3rem;
}
.p-top-company__link-list li a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  height: 0.9em;
  aspect-ratio: 19/18;
  background: url(../img/cmn/arrow_next_dbl.svg) no-repeat center center/contain;
}
.p-top-company__img {
  width: 100%;
  max-width: 42.8rem;
  border-radius: 1.9rem;
  overflow: hidden;
  margin: -13.8rem auto 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-company {
    padding: 5rem 0;
  }
  .p-top-company__header {
    width: 100%;
    padding: 0;
  }
  .p-top-company__content {
    width: 100vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 1.3rem 1.3rem 0 0;
    padding: 1.3rem 1.3rem 10.6rem;
    margin: 0 calc(50% - 50vw);
  }
  .p-top-company__link-list {
    width: 100%;
    margin: 0 0 2.5rem;
  }
  .p-top-company__link-list li {
    font-size: 1.1rem;
  }
  .p-top-company__img {
    border-radius: 1.3rem;
    margin: -8.8rem 0 0;
  }
}

.p-top-service {
  background-color: #EFF7FF;
  padding: 6.3rem 0;
}
.p-top-service__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4.4rem 3.1rem;
}
.p-top-service__header {
  width: auto;
}
.p-top-service__item {
  background-color: #fff;
  border-radius: 1.3rem;
  overflow: hidden;
  -webkit-box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
}
.p-top-service__img {
  width: 100%;
  aspect-ratio: 365/340;
}
.p-top-service__title {
  font-size: 1.3rem;
  font-weight: 400;
  padding: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top-service {
    padding: 5rem 0;
  }
  .p-top-service__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.3rem 0;
    margin: 0 0 2.5rem;
  }
  .p-top-service__header {
    width: 100%;
    margin: 0 0 1.3rem;
  }
  .p-top-service__item {
    width: 100%;
  }
  .p-top-service__img {
    aspect-ratio: 335/180;
  }
  .p-top-service__title {
    min-height: 6.3rem;
    font-size: 1.1rem;
  }
}

.p-top-strength {
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 6.3rem 0;
  background: url(../img/top/strength_bg.jpg) no-repeat center center/cover;
}
.p-top-strength::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -11vw;
  left: -3.1vw;
  display: block;
  width: 51.1vw;
  aspect-ratio: 741/811;
  background: url(../img/top/strength_object.svg?0316) no-repeat center center/contain;
  -webkit-transform: rotate(156deg);
          transform: rotate(156deg);
}
.p-top-strength__body {
  gap: 2.5rem 6.9rem;
}
.p-top-strength__header {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 27.5rem;
}
.p-top-strength__item {
  border: 2px solid #fff;
  border-width: 2px 0 0 2px;
  border-radius: 0.6rem 0 0 0;
  padding: 1.3rem;
}
.p-top-strength__item:not(:last-of-type) {
  margin-bottom: 1.9rem;
}
.p-top-strength__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength {
    padding: 5rem 0;
  }
  .p-top-strength::before {
    left: -3.8rem;
    bottom: -6.3rem;
    width: 21.9rem;
  }
  .p-top-strength__body {
    margin: 0 0 2.5rem;
  }
  .p-top-strength__header {
    width: 100%;
  }
  .p-top-strength__item {
    padding: 1.9rem 0 1.3rem 1.9rem;
  }
  .p-top-strength__item:not(:last-of-type) {
    margin-bottom: 0.6rem;
  }
  .p-top-strength__title {
    font-size: 1.5rem;
  }
}

.p-top-works {
  padding: 6.3rem 0;
  background-color: #EFF7FF;
}
.p-top-works__body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem 5rem;
}
.p-top-works__header {
  width: 18.8rem;
}
.p-top-works__content {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: calc(100% - 18.8rem - 5rem + 6.3rem);
  margin: 0 -6.3rem 0 0;
}
.p-top-works__slider-wrap {
  position: relative;
  width: 100%;
}
.p-top-works__slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 4rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #fff;
}
.p-top-works__slider-arrow::before {
  content: "";
  display: block;
  height: 1.4rem;
  aspect-ratio: 19/18;
  background: url(../img/cmn/arrow_next_dbl.svg) no-repeat center center/contain;
}
.p-top-works__slider-arrow.-prev {
  left: -1.6rem;
}
.p-top-works__slider-arrow.-prev::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-top-works__slider-arrow.-next {
  right: 4rem;
}
.p-top-works__slider .slick-list {
  padding: 0.9rem 0;
}
.p-top-works__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.3rem;
}
.p-top-works__slide {
  width: 25rem;
  aspect-ratio: 400/440;
  border-radius: 1.9rem;
  overflow: hidden;
  -webkit-box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0.3rem 0.3rem 0.9rem 0 rgba(0, 0, 0, 0.17);
}
.p-top-works__slide img {
  max-height: initial;
  aspect-ratio: 400/440;
}
@media screen and (min-width: 1401px) {
  .p-top-works__content {
    width: 64vw;
    margin: 0 -7.1vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-works {
    padding: 5rem 0;
  }
  .p-top-works__body {
    margin: 0 0 2.5rem;
  }
  .p-top-works__header {
    width: 100%;
  }
  .p-top-works__content {
    width: calc(100% - 5rem);
    margin: 0 auto;
  }
  .p-top-works__slider .slick-list {
    overflow: visible;
  }
  .p-top-works__slide {
    width: 15.6rem;
  }
  .p-top-works__slider-arrow {
    height: 2.5rem;
  }
  .p-top-works__slider-arrow::before {
    height: 0.9rem;
  }
  .p-top-works__slider-arrow.-prev {
    left: -1.9rem;
  }
  .p-top-works__slider-arrow.-next {
    right: -1.9rem;
  }
}

.p-top-news {
  padding: 6.3rem 0;
}
.p-top-news__body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 6.9rem;
}
.p-top-news__header {
  width: 18.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding: 5rem 0;
  }
  .p-top-news__body {
    margin: 0 0 2.5rem;
  }
  .p-top-news__header {
    width: 100%;
  }
}

.p-top-faq {
  padding: 5rem 0;
  background-color: #EFF7FF;
}
.p-top-faq__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.9rem 3.1rem;
}
.p-top-faq__heading {
  margin: 0;
}
.p-top-faq__heading span {
  display: none;
}
.p-top-faq__content {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
@media screen and (max-width: 768px) {
  .p-top-faq {
    padding: 3.1rem 0;
  }
  .p-top-faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-faq__header {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ================================
Post
================================ */
.p-page-header:has(+ .p-post-category) {
  margin-bottom: 2.5rem;
}

.p-post-archive__footer {
  margin: 5rem 0 0;
}

.p-post-single__footer {
  margin: 5.6rem 0 0;
}
.p-post-single__pager {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "prev-btn back-btn next-btn";
  grid-template-columns: 1fr 15.6rem 1fr;
  gap: 0 5rem;
  margin: 0 auto;
}
.p-post-single__pager-item.-prev .c-pager__item i, .p-post-single__pager-item.-next .c-pager__item i {
  height: 3.8rem;
  border-width: 2px;
}
.p-post-single__pager-item.-prev {
  grid-area: prev-btn;
  margin: 0 auto 0 0;
}
.p-post-single__pager-item.-back {
  grid-area: back-btn;
  min-width: initial;
}
.p-post-single__pager-item.-back .c-arrow-btn__ico {
  right: initial;
  left: 1.5em;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-post-single__pager-item.-next {
  grid-area: next-btn;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-post-single__footer {
    margin: 2.5rem 0 0;
  }
  .p-post-single__pager {
    grid-template-areas: "prev-btn next-btn" "back-btn back-btn";
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.3rem;
  }
  .p-post-single__pager-item.-prev .c-pager__item i, .p-post-single__pager-item.-next .c-pager__item i {
    height: 2.5rem;
    border-width: 1px;
  }
  .p-post-single__pager-item.-back {
    width: 15rem;
    margin: 0 auto;
  }
}

.p-post-article__header {
  margin: 0 0 3.8rem;
}
.p-post-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.9rem;
}
.p-post-article__date {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}
.p-post-article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.p-post-article__category {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 9999px;
  border: 1px solid #2C60BD;
  background-color: #2C60BD;
  padding: 0.5em 1em;
}
.p-post-article__title {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 1.3rem 0 3.1rem;
}
.p-post-article__thumb {
  width: 100%;
  border-radius: 3.1rem;
  overflow: hidden;
}
.p-post-article__editable-area h2 {
  color: #2C60BD;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1em 0 0.25em;
}
.p-post-article__editable-area h3 {
  color: #2C60BD;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1em 0 0.25em;
}
.p-post-article__editable-area p {
  line-height: 1.7;
}
.p-post-article__editable-area p:has(img) {
  margin: 1.9rem 0;
}
.p-post-article__editable-area p a {
  text-decoration: underline;
}
.p-post-article__editable-area p + p {
  margin-top: 1.7em;
}
.p-post-article__editable-area ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 1.3rem 0;
}
.p-post-article__editable-area ul li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.p-post-article__editable-area ul li:not(:last-child) {
  margin-bottom: 0.25em;
}
.p-post-article__editable-area ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin: 1.3rem 0;
}
.p-post-article__editable-area ol li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.p-post-article__editable-area ol li:not(:last-child) {
  margin-bottom: 0.25em;
}
.p-post-article__category-box {
  margin: 3.8rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-post-article__header {
    margin: 0 0 1.3rem;
  }
  .p-post-article__meta {
    gap: 0 1.3rem;
  }
  .p-post-article__categories {
    gap: 0.3rem 0.3rem;
  }
  .p-post-article__title {
    font-size: 1.5rem;
    margin: 1.3rem 0 1.9rem;
  }
  .p-post-article__thumb {
    border-radius: 1.9rem;
  }
  .p-post-article__editable-area p {
    font-size: 0.9rem;
  }
  .p-post-article__editable-area h2 {
    font-size: 1.3rem;
    margin: 1em 0 0.5em;
  }
  .p-post-article__editable-area h3 {
    font-size: 1rem;
    margin: 1em 0 0.5em;
  }
  .p-post-article__editable-area ul,
  .p-post-article__editable-area ol {
    margin: 1rem 0;
  }
}

/* ================================
会社概要
================================ */
@media screen and (min-width: 769px) {
  .p-company-nav__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-company-philo {
  padding: 0 0 5rem;
}
.p-company-philo__img {
  width: 25rem;
  aspect-ratio: 400/250;
  border-radius: 1.9rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-company-philo {
    padding: 0 0 3.8rem;
  }
  .p-company-philo__img {
    width: 100%;
  }
}

.p-company-message {
  padding: 5rem 0;
  background-color: #EFF7FF;
}
.p-company-message__img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 24.7rem;
  border-radius: 3.1rem;
  overflow: hidden;
}
.p-company-message__catch {
  color: #2C60BD;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.9rem;
}
.p-company-message__sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.3rem 0;
  text-align: right;
  margin: 1.9rem 0 0;
}
.p-company-message__sign .-name {
  width: 8.1rem;
  aspect-ratio: 130/29;
}
@media screen and (max-width: 768px) {
  .p-company-message {
    padding: 3.8rem 0;
  }
  .p-company-message__img {
    width: 100%;
    border-radius: 1.9rem;
  }
  .p-company-message__catch {
    margin: 0 0 1.3rem;
  }
  .p-company-message__sign {
    gap: 0.6rem 0;
    font-size: 0.9rem;
    margin: 1.3rem 0 0;
  }
  .p-company-message__sign .-name {
    width: 6.3rem;
  }
}

.p-company-policy {
  position: relative;
  z-index: 0;
  padding: 6.3rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#2c60bd), to(#6199ff));
  background: linear-gradient(to right, #2c60bd, #6199ff);
}
.p-company-policy::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -15.7vw;
  left: -9.3vw;
  display: block;
  width: 78.3vw;
  aspect-ratio: 995/1226;
  background: url(../img/company/policy_object.svg) no-repeat center center/contain;
  -webkit-transform: rotate(174deg);
          transform: rotate(174deg);
}
.p-company-policy__list {
  counter-reset: number 0;
}
.p-company-policy__item {
  position: relative;
  z-index: 0;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "ico title" "ico desc";
  gap: 1rem 1.3rem;
  background-color: #EFF7FF;
  border-radius: 2.5rem;
  overflow: hidden;
  padding: 2.2rem 3.1rem;
}
.p-company-policy__item::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 2.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: "Open Sans", sans-serif;
  color: #e3edff;
  font-size: 8.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-style: italic;
}
.p-company-policy__item:not(:last-of-type) {
  margin-bottom: 0.9rem;
}
.p-company-policy__ico {
  grid-area: ico;
  aspect-ratio: 1/1;
}
.p-company-policy__title {
  grid-area: title;
  align-self: end;
  color: #2C60BD;
  font-size: 1.5rem;
  font-weight: 600;
}
.p-company-policy__desc {
  grid-area: desc;
  align-self: start;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-company-policy {
    padding: 3.8rem 0;
  }
  .p-company-policy::before {
    bottom: -6.3rem;
    left: -6.3rem;
    width: 31.9rem;
  }
  .p-company-policy__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.6rem 0;
    border-radius: 1.3rem;
    padding: 1.9rem 1.3rem;
  }
  .p-company-policy__item::before {
    top: -0.3rem;
    right: 0.9rem;
    -webkit-transform: none;
            transform: none;
    font-size: 6.3rem;
  }
  .p-company-policy__ico {
    height: 4.6rem;
  }
  .p-company-policy__title {
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 1.3rem;
    text-align: center;
  }
  .p-company-policy__desc {
    font-size: 0.9rem;
  }
}

.p-company-outline {
  padding: 6.3rem 0;
}
@media screen and (max-width: 768px) {
  .p-company-outline {
    padding: 3.8rem 0;
  }
}

.p-company-access {
  background-color: #EFF7FF;
  padding: 6.3rem 0;
}
.p-company-access__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
}
.p-company-access__map {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 576/354;
  border-radius: 3.1rem;
  overflow: hidden;
}
.p-company-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-company-access {
    padding: 3.8rem 0;
  }
  .p-company-access__title {
    font-size: 1rem;
    margin: 0 0 1.3rem;
  }
  .p-company-access__map {
    width: 100%;
    border-radius: 1.9rem;
  }
}

.p-company-history {
  color: #fff;
  background: url(../img/company/history_bg.jpg) no-repeat center center/cover;
  padding: 11.3rem 0;
}
.p-company-history__body {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-company-history__list {
  position: relative;
}
.p-company-history__list::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  display: block;
  width: 1px;
  height: calc(100% - 1.9rem);
  background-color: #fff;
}
.p-company-history__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.3rem;
  padding: 0 0 0 3.8rem;
}
.p-company-history__item::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: #fff;
}
.p-company-history__item:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-company-history__year {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.p-company-history__desc {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-company-history {
    padding: 3.8rem 0;
  }
  .p-company-history__list::before {
    height: calc(100% - 2.9rem);
  }
  .p-company-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-company-history__item:not(:last-of-type) {
    margin-bottom: 1.3rem;
  }
  .p-company-history__year {
    font-size: 1rem;
  }
  .p-company-history__desc {
    font-size: 0.9rem;
  }
}

.p-company-service {
  padding: 6.3rem 0;
}
.p-company-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 6.3rem;
  margin: 0 0 3.1rem;
}
.p-company-service__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.p-company-service__heading + .c-sentence {
  margin-top: 0;
}
.p-company-service__slider-wrap {
  position: relative;
}
.p-company-service__slider .slick-list {
  overflow: visible;
}
.p-company-service__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 3.8rem;
}
.p-company-service__slide {
  width: 56.3rem;
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 1.3rem 2.5rem;
  padding: 3.1rem;
  border-radius: 1.9rem;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#2C60BD), to(#6199FF));
  background: linear-gradient(to right, #2C60BD, #6199FF);
}
.p-company-service__img {
  width: 24.1rem;
  aspect-ratio: 385/360;
  border-radius: 1.9rem;
  overflow: hidden;
}
.p-company-service__content {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
.p-company-service__title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1.3rem;
}
.p-company-service__slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2rem;
  margin: 3.1rem 0 0;
}
.p-company-service__slider-dots {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.5rem;
  margin: 0 auto 0 0;
}
.p-company-service__slider-dots li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
  font-size: 0;
  width: 0.9rem;
  aspect-ratio: 1/1;
  border: 1px solid #2C60BD;
  background-color: #fff;
  border-radius: 50%;
}
.p-company-service__slider-dots li.slick-active {
  background-color: #2C60BD;
}
.p-company-service__slider-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  height: 4.4rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid transparent;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#2c60bd), to(#6199ff)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #2c60bd, #6199ff) border-box;
  overflow: hidden;
}
.p-company-service__slider-arrow::before {
  content: "";
  display: block;
  height: 1.1rem;
  aspect-ratio: 19/18;
  background: url(../img/cmn/arrow_next_bl.svg) no-repeat center center/contain;
}
.p-company-service__slider-arrow.-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-company-service__slider-arrow.-prev::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-company-service__slider-arrow.-next {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-company-service {
    padding: 3.8rem 0;
  }
  .p-company-service__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 1.9rem;
  }
  .p-company-service__slider-control {
    margin: 1.9rem 0 0;
  }
  .p-company-service__slider-arrow {
    position: absolute;
    z-index: 5;
    top: 8.4rem;
    height: 3.1rem;
    border-width: 2px;
  }
  .p-company-service__slider-arrow::before {
    height: 0.8rem;
  }
  .p-company-service__slider-arrow.-prev {
    left: -0.6rem;
  }
  .p-company-service__slider-arrow.-next {
    right: -0.6rem;
  }
  .p-company-service__slider-dots {
    gap: 0 1.5rem;
    margin: 0 auto;
  }
  .p-company-service__slider-dots li {
    width: 0.6rem;
  }
  .p-company-service__slide {
    width: 20.9rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.3rem;
    border-radius: 1.3rem;
  }
  .p-company-service__img {
    width: 100%;
    border-radius: 1.3rem;
  }
  .p-company-service__content {
    width: 100%;
    font-size: 0.9rem;
  }
  .p-company-service__title {
    font-size: 1.3rem;
    margin: 0 0 1.3rem;
  }
}

.p-company-plan {
  background-color: #EFF7FF;
  padding: 6.3rem 0;
}
.p-company-plan__period {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.6rem;
  font-size: 0.9rem;
  background-color: #cfe0ff;
  border-radius: 9999px;
  padding: 0.6rem 1.3rem 0.6rem 0.6rem;
  margin: 2.3rem 0 3.1rem;
}
.p-company-plan__period .-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #2C60BD;
  padding: 0 0.75em;
  border-radius: 9999px;
}
.p-company-plan__slider .slick-list {
  overflow: visible;
}
.p-company-plan__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 2.2rem;
}
.p-company-plan__slide {
  width: 23.5rem;
  height: auto;
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 4.4rem 1.5rem;
}
.p-company-plan__count {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2C60BD;
  font-size: 0.9rem;
  padding: 0 1em;
  border: 1px solid #2C60BD;
  border-radius: 9999px;
  margin: 0 0 1.3rem;
}
.p-company-plan__title {
  color: #2C60BD;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.3rem;
}
.p-company-plan__item:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
.p-company-plan__year {
  color: #2C60BD;
  font-weight: 400;
  margin: 0 0 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-company-plan {
    padding: 3.8rem 0;
  }
  .p-company-plan__slide {
    width: 20.9rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.3rem;
    border-radius: 1.3rem;
  }
  .p-company-plan__item:not(:last-of-type) {
    margin-bottom: 0.6rem;
  }
  .p-company-plan__title {
    font-size: 1.3rem;
    margin: 0 0 1.3rem;
  }
}

/* ================================
実績紹介
================================ */
.p-works-article__header {
  margin: 0 0 2.5rem;
}
.p-works-article__category {
  color: #2C60BD;
  background-color: #fff;
}

.p-works-outline {
  margin: 0 0 5rem;
}
.p-works-outline__catch {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1.3rem;
}
.p-works-outline__table-wrap {
  background-color: #EFF7FF;
  border-radius: 3.8rem;
  padding: 3.1rem 3.8rem;
  margin: 4.4rem 0 0;
}
.p-works-outline__table {
  width: 100%;
}
.p-works-outline__table th {
  white-space: nowrap;
  font-weight: 400;
  padding: 0.5em 2em 0.5em 0;
  border-bottom: 1px solid #E8E8E8;
}
.p-works-outline__table td {
  width: 100%;
  padding: 0.5em 0;
  border-bottom: 1px solid #E8E8E8;
}
.p-works-outline__table tr:last-child th,
.p-works-outline__table tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-works-outline {
    margin: 0 0 5rem;
  }
  .p-works-outline__catch {
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
  }
  .p-works-outline__table-wrap {
    padding: 0.6rem 1.3rem;
    border-radius: 1.9rem;
    margin: 1.3rem 0 0;
  }
  .p-works-outline__table th {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    border-bottom: none;
    padding: 0.5em 0 0;
  }
  .p-works-outline__table td {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.25em 0 0.5em;
  }
}

.p-works-point {
  margin: 0 0 5rem;
}
.p-works-point__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6rem 2.5rem;
}
.p-works-point__block:not(:last-of-type) {
  margin-bottom: 3.8rem;
}
.p-works-point__img {
  width: 49%;
  aspect-ratio: 490/276;
  border-radius: 3.1rem;
  overflow: hidden;
}
.p-works-point__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
}
.p-works-point__title {
  font-size: 1.5rem;
  margin: 0 0 1.3rem;
}
@media screen and (min-width: 769px) {
  .p-works-point__block.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .p-works-point {
    margin: 0 0 3.8rem;
  }
  .p-works-point__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-works-point__block:not(:last-of-type) {
    margin-bottom: 1.9rem;
  }
  .p-works-point__img {
    width: 100%;
    border-radius: 1.9rem;
  }
  .p-works-point__title {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
  }
  .p-works-point__title br {
    display: none;
  }
}

.p-works-gallery {
  background-color: #EFF7FF;
  padding: 5rem 0;
}
.p-works-gallery__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem 1.3rem;
}
.p-works-gallery__img {
  width: calc(50% - 0.7rem);
  aspect-ratio: 490/276;
  border-radius: 3.1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-works-gallery {
    padding: 3.8rem 0;
  }
  .p-works-gallery__wrap {
    gap: 0.6rem 0;
  }
  .p-works-gallery__img {
    width: 100%;
    border-radius: 1.9rem;
  }
}

/* ================================
採用情報
================================ */
.recruit .l-content-container {
  padding-top: 0;
}

.p-recruit-mv {
  position: relative;
  z-index: 0;
  height: 40rem;
}
.p-recruit-mv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-recruit-mv__breadcrumbs {
  position: absolute;
  top: 10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
}
.p-recruit-mv__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-mv {
    height: 17.2rem;
  }
  .p-recruit-mv__breadcrumbs {
    top: 5rem;
  }
  .p-recruit-mv__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 0 0 3rem;
  }
}

.p-recruit-nav {
  position: relative;
  z-index: 1;
}

.p-recruit-intro {
  position: relative;
  z-index: 0;
  padding: 6.9rem 0 14.4rem;
}
.p-recruit-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -2.5rem;
  left: -6.3rem;
  display: block;
  width: 65.4rem;
  aspect-ratio: 1046/685;
  background: url(../img/recruit/intro_object.svg) no-repeat center center/contain;
  -webkit-transform: rotate(-18deg);
          transform: rotate(-18deg);
}
.p-recruit-intro__catch {
  color: #2C60BD;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-intro {
    padding: 3.8rem 0 8.8rem;
  }
  .p-recruit-intro::before {
    bottom: 0;
    left: -5rem;
    width: 24.4rem;
  }
  .p-recruit-intro__catch {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1.3rem;
  }
}

.p-recruit-message {
  background-color: transparent;
  padding: 0;
  margin: 0 0 5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-message {
    margin: 0 0 3.8rem;
  }
}

.p-recruit-env {
  margin: 0 0 5rem;
}
.p-recruit-env__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem 2.3rem;
  margin: 0 0 5rem;
}
.p-recruit-env__item {
  width: calc((100% - 4.6rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 0;
  color: #fff;
  background-color: #2C60BD;
  border-radius: 2.5rem;
  padding: 3.1rem 1.5rem;
}
.p-recruit-env__ico {
  height: 6.9rem;
  aspect-ratio: 1/1;
}
.p-recruit-env__ico img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-recruit-env__title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.p-recruit-env__link .c-lower-link__title {
  color: #2C60BD;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-env {
    margin: 0 0 3.8rem;
  }
  .p-recruit-env__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 3.8rem;
  }
  .p-recruit-env__item {
    width: 100%;
    border-radius: 2.5rem;
    padding: 1.9rem 0.9rem;
  }
  .p-recruit-env__ico {
    height: 3.8rem;
  }
  .p-recruit-env__title {
    font-size: 1.3rem;
  }
  .p-recruit-env__link .c-lower-link__title {
    font-size: 1.3rem;
  }
  .p-recruit-env__link .c-lower-link__ico {
    height: 3.8rem;
  }
}

.p-recruit-voice {
  background: -webkit-gradient(linear, left top, right top, from(#2C60BD), to(#6199FF));
  background: linear-gradient(to right, #2C60BD, #6199FF);
  padding: 3.1rem 0 5rem;
}
.p-recruit-voice__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 3.8rem;
}
.p-recruit-voice__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
.p-recruit-voice__heading {
  margin: 0 0 1.9rem;
}
.p-recruit-voice__slider .slick-list {
  overflow: visible;
  padding: 0 0 0.9rem;
}
.p-recruit-voice__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.8rem;
}
.p-recruit-voice__slide {
  width: 23.1rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-voice {
    padding: 3.8rem 0;
  }
  .p-recruit-voice__header {
    margin: 0 0 1.9rem;
  }
  .p-recruit-voice__heading::before {
    content: "SENIOR’S\aVOICE";
    white-space: pre;
  }
  .p-recruit-voice__slider {
    margin: 0 0 2.5rem;
  }
  .p-recruit-voice__slider .slick-track {
    gap: 0 1.3rem;
  }
  .p-recruit-voice__slide {
    width: 16.3rem;
  }
}

.p-recruit-talk {
  background: #EFF7FF;
  padding: 3.1rem 0 5rem;
  margin: 0 0 5rem;
}
.p-recruit-talk__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 3.8rem;
}
.p-recruit-talk__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-recruit-talk__heading {
  margin: 0 0 1.9rem;
}
.p-recruit-talk__slider .slick-list {
  overflow: visible;
}
.p-recruit-talk__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5rem;
}
.p-recruit-talk__slide {
  position: relative;
  width: 46.3rem;
}
.p-recruit-talk__thumb {
  width: 100%;
  aspect-ratio: 744/394;
  border-radius: 3.8rem;
  overflow: hidden;
  -webkit-box-shadow: 0.3rem 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0.3rem 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.15);
  margin: 0 0 1.9rem;
}
.p-recruit-talk__title {
  color: #2C60BD;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-recruit-talk__ico {
  position: absolute;
  top: 21.6rem;
  right: 2.5rem;
  height: 5.6rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 2px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#000099), to(#6199ff)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #000099, #6199ff) border-box;
}
.p-recruit-talk__arrow {
  height: 25.5555555556%;
  aspect-ratio: 14/13;
  color: #2C60BD;
}
@media screen and (max-width: 768px) {
  .p-recruit-talk {
    padding: 3.8rem 0;
    margin: 0 0 3.8rem;
  }
  .p-recruit-talk__header {
    margin: 0 0 1.9rem;
  }
  .p-recruit-talk__slider {
    margin: 0 0 2.5rem;
  }
  .p-recruit-talk__slider .slick-track {
    gap: 0 1.3rem;
  }
  .p-recruit-talk__slide {
    width: 18.4rem;
  }
  .p-recruit-talk__thumb {
    aspect-ratio: 295/157;
    border-radius: 1.9rem;
    margin: 0 0 1rem;
  }
  .p-recruit-talk__title {
    font-size: 1rem;
  }
  .p-recruit-talk__ico {
    top: 8.1rem;
    right: 0;
    height: 3.8rem;
  }
}

.p-recruit-req {
  margin: 0 0 5rem;
}
.p-recruit-req__tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
}
.p-recruit-req__tab {
  width: 11.9rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2C60BD;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #EFF7FF;
  border-radius: 2.5rem 2.5rem 0 0;
  cursor: pointer;
}
.p-recruit-req__tab:nth-of-type(2) {
  color: #fff;
  background-color: #2C60BD;
}
.p-recruit-req__tab:nth-of-type(3) {
  color: #fff;
  background-color: #000099;
}
.p-recruit-req__content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0 3.8rem;
  background-color: #EFF7FF;
}
.p-recruit-req__content:nth-of-type(2) {
  color: #fff;
  background-color: #2C60BD;
}
.p-recruit-req__content:nth-of-type(3) {
  color: #fff;
  background-color: #000099;
}
.p-recruit-req__content.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 3.8rem;
}
.p-recruit-req__content.is-active .p-recruit-req__table-wrap {
  line-height: initial;
}
.p-recruit-req__intro {
  margin: 0 0 2.5rem;
}
.p-recruit-req__table-wrap {
  line-height: 0;
}
.p-recruit-req__table th {
  color: currentColor;
}
@media screen and (max-width: 768px) {
  .p-recruit-req {
    margin: 0 0 3.8rem;
  }
  .p-recruit-req__tab-area {
    gap: 0 0.3rem;
  }
  .p-recruit-req__tab {
    width: 6.9rem;
    height: 4rem;
    font-size: 1rem;
    border-radius: 1.3rem 1.3rem 0 0;
  }
  .p-recruit-req__content {
    padding: 0 1.3rem;
  }
  .p-recruit-req__content.is-active {
    padding: 2.5rem 1.3rem;
  }
  .p-recruit-req__intro {
    margin: 0 0 1.9rem;
  }
  .p-recruit-req__table th {
    font-size: 1rem;
    font-weight: 700;
  }
}

.p-recruit-flow {
  padding: 0 0 6.3rem;
}
.p-recruit-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
  margin: 0 0 6.3rem;
}
.p-recruit-flow__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 10.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem 0;
  color: #2C60BD;
  background-color: #EFF7FF;
  padding: 0 1.9rem 0 1rem;
  clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%);
}
.p-recruit-flow__item:last-of-type {
  color: #fff;
  background-color: #2C60BD;
  clip-path: none;
  text-align: center;
}
.p-recruit-flow__table {
  width: 100%;
}
.p-recruit-flow__table th,
.p-recruit-flow__table td {
  color: #2C60BD;
  white-space: nowrap;
  line-height: 1.2;
  vertical-align: middle;
}
.p-recruit-flow__table th {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem 0.3rem 0;
}
.p-recruit-flow__table td {
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.3rem 0;
}
.p-recruit-flow__title {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-recruit-flow__item:nth-of-type(3) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-recruit-flow__item:last-of-type {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 0;
  }
  .p-recruit-flow__entry-btn {
    width: 26.3rem;
    height: 7.5rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-flow {
    padding: 0 0 3.8rem;
  }
  .p-recruit-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem 0;
    margin: 0 0 2.5rem;
  }
  .p-recruit-flow__item {
    width: 100%;
    gap: 0.6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.9rem), 50% 100%, 0 calc(100% - 1.9rem));
    padding: 1.3rem 1.3rem 2.5rem;
  }
  .p-recruit-flow__item:last-of-type {
    padding: 1.3rem;
  }
  .p-recruit-flow__title {
    font-size: 1.3rem;
  }
  .p-recruit-flow__table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ================================
採用情報 - 数字で見る新光電機
================================ */
.p-numbers {
  background-color: #EFF7FF;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .p-numbers {
    padding: 2.5rem 0;
  }
}

.p-numbers-item {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem 0;
  background-color: #fff;
  border-radius: 3.8rem;
  overflow: hidden;
  padding: 3.1rem 2.5rem;
}
.p-numbers-item__title {
  grid-area: title;
  color: #2C60BD;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.p-numbers-item__title small {
  color: #000;
  font-size: 0.9rem;
}
.p-numbers-item__text {
  grid-area: text;
}
.p-numbers-item__count-wrap {
  position: relative;
  z-index: 0;
}
.p-numbers-item__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.p-numbers-item__count .-unit {
  font-size: 2.5rem;
  margin: 0 0 0 1px;
}
.p-numbers-item__count .-colon {
  font-size: 3.8rem;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 0.3rem;
}
.p-numbers-item__note {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin: 1.3rem 0 0;
}
.p-numbers-item__img {
  grid-area: img;
}
.p-numbers-item__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-numbers-item {
    gap: 0.9rem 0;
    border-radius: 1.5rem;
    padding: 1.3rem;
  }
  .p-numbers-item__title {
    font-size: 1rem;
  }
  .p-numbers-item__title small {
    font-size: 0.6rem;
  }
  .p-numbers-item__count {
    font-size: 2.4rem;
  }
  .p-numbers-item__count .-unit {
    font-size: 1rem;
  }
  .p-numbers-item__count .-colon {
    font-size: 1.5rem;
  }
  .p-numbers-item__note {
    font-size: 0.7rem;
    margin: 1.3rem 0 0;
  }
}

.p-numbers-item01 .p-numbers-item__count {
  background: url(../img/numbers/item01_frame.png) no-repeat top center/contain;
  padding: 0.2em 0.5em;
}
@media screen and (max-width: 768px) {
  .p-numbers-item01 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.p-numbers-item02 .p-numbers-item__img {
  position: absolute;
  z-index: -1;
  bottom: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  max-width: 18.4rem;
}
.p-numbers-item02 .p-numbers-item__count {
  text-stroke: 0.6rem #fff;
  -webkit-text-stroke: 0.6rem #fff;
  paint-order: stroke fill;
}
@media screen and (max-width: 768px) {
  .p-numbers-item02 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-numbers-item02 .p-numbers-item__img {
    bottom: 1.3rem;
  }
  .p-numbers-item02 .p-numbers-item__count {
    text-stroke: 0.3rem #fff;
    -webkit-text-stroke: 0.3rem #fff;
  }
}

.p-numbers-item03 .p-numbers-item__img {
  position: absolute;
  z-index: -1;
  bottom: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
  max-width: 15.3rem;
}
.p-numbers-item03 .p-numbers-item__count {
  text-stroke: 0.6rem #fff;
  -webkit-text-stroke: 0.6rem #fff;
  paint-order: stroke fill;
}
@media screen and (max-width: 768px) {
  .p-numbers-item03 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .p-numbers-item03 .p-numbers-item__img {
    bottom: 1.3rem;
  }
  .p-numbers-item03 .p-numbers-item__count {
    text-stroke: 0.3rem #fff;
    -webkit-text-stroke: 0.3rem #fff;
  }
}

.p-numbers-item04 .p-numbers-item__count {
  font-size: 4rem;
  text-align: center;
  line-height: 1.2;
}
.p-numbers-item04 .p-numbers-item__img {
  max-width: 9.6rem;
  margin: -1.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-numbers-item04 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: grid;
    grid-template-areas: "title img" "text img";
    grid-template-columns: 1fr 6.3rem;
    gap: 0.6rem 1.3rem;
  }
  .p-numbers-item04 .p-numbers-item__title {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .p-numbers-item04 .p-numbers-item__count {
    font-size: 1.5rem;
  }
  .p-numbers-item04 .p-numbers-item__text {
    margin: 0;
    -ms-flex-item-align: start;
        align-self: start;
  }
  .p-numbers-item04 .p-numbers-item__img {
    width: 80%;
    margin: 0 auto;
  }
}

.p-numbers-item05 {
  display: grid;
  grid-template-areas: "title title" "text img";
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
  gap: 2.5rem 1.5rem;
  padding-right: 0;
}
.p-numbers-item05 .p-numbers-item__title {
  -ms-flex-item-align: start;
      align-self: start;
}
.p-numbers-item05 .p-numbers-item__text {
  -ms-flex-item-align: start;
      align-self: start;
  margin: 5.6rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-numbers-item05 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    grid-template-areas: "title img" "text img";
    grid-template-columns: 1fr 8.1rem;
    gap: 0.6rem 1.3rem;
    padding: 1.3rem 0 1.3rem 1.3rem;
  }
  .p-numbers-item05 .p-numbers-item__title {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .p-numbers-item05 .p-numbers-item__text {
    margin: 0;
  }
}

.p-numbers-item06 {
  gap: 1.9rem 0;
}
.p-numbers-item06 .p-numbers-item__img {
  max-width: 7.3rem;
  margin: -1.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-numbers-item06 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    display: grid;
    grid-template-areas: "title img" "text img";
    grid-template-columns: 1fr 6.3rem;
    gap: 0.6rem 1.3rem;
  }
  .p-numbers-item06 .p-numbers-item__title {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .p-numbers-item06 .p-numbers-item__text {
    margin: 0;
    -ms-flex-item-align: start;
        align-self: start;
  }
  .p-numbers-item06 .p-numbers-item__img {
    width: auto;
  }
}

.p-numbers-item07 .p-numbers-item__count-wrap {
  padding: 3.1rem 0 0 4rem;
}
.p-numbers-item07 .p-numbers-item__ico {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 6.3rem;
}
@media screen and (max-width: 768px) {
  .p-numbers-item07 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    gap: 1.3rem 0;
  }
  .p-numbers-item07 .p-numbers-item__count-wrap {
    padding: 1.3rem 0 0 1.6rem;
  }
  .p-numbers-item07 .p-numbers-item__ico {
    width: 2.6rem;
  }
}

.p-numbers-item08 .p-numbers-item__count-wrap {
  padding: 0 0 0 2.5rem;
}
.p-numbers-item08 .p-numbers-item__count {
  text-stroke: 0.6rem #fff;
  -webkit-text-stroke: 0.6rem #fff;
  paint-order: stroke fill;
}
.p-numbers-item08 .p-numbers-item__ico {
  position: absolute;
  z-index: -1;
  top: -1.3rem;
  left: -1.9rem;
  width: 8.4rem;
}
@media screen and (max-width: 768px) {
  .p-numbers-item08 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
    gap: 1.3rem 0;
  }
  .p-numbers-item08 .p-numbers-item__count-wrap {
    padding: 0 0 0 1rem;
  }
  .p-numbers-item08 .p-numbers-item__ico {
    top: -0.5rem;
    left: -0.8rem;
    width: 3.5rem;
  }
  .p-numbers-item08 .p-numbers-item__count {
    text-stroke: 0.3rem #fff;
    -webkit-text-stroke: 0.3rem #fff;
  }
}

.p-numbers-item09 .p-numbers-item__count-wrap {
  padding: 0.6rem 0 0.8rem 4.6rem;
}
.p-numbers-item09 .p-numbers-item__ico {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 6.3rem;
}
.p-numbers-item09 .p-numbers-item__count .-num {
  text-stroke: 1rem #fff;
  -webkit-text-stroke: 1rem #fff;
  paint-order: stroke fill;
}
@media screen and (max-width: 768px) {
  .p-numbers-item09 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
    gap: 1.5rem 0;
  }
  .p-numbers-item09 .p-numbers-item__count-wrap {
    padding: 0.3rem 0 0 1.9rem;
  }
  .p-numbers-item09 .p-numbers-item__count .-num {
    text-stroke: 0.8rem #fff;
    -webkit-text-stroke: 0.8rem #fff;
  }
  .p-numbers-item09 .p-numbers-item__ico {
    width: 2.6rem;
  }
}

.p-numbers-item10 .p-numbers-item__count-wrap {
  padding: 0 0 0 4.6rem;
}
.p-numbers-item10 .p-numbers-item__count .-num {
  text-stroke: 0.6rem #fff;
  -webkit-text-stroke: 0.6rem #fff;
  paint-order: stroke fill;
}
.p-numbers-item10 .p-numbers-item__ico {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-numbers-item10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
    gap: 1.5rem 0;
  }
  .p-numbers-item10 .p-numbers-item__count-wrap {
    padding: 0 0 0 2.6rem;
  }
  .p-numbers-item10 .p-numbers-item__ico {
    width: 2.3rem;
  }
}

.p-numbers-item11 .p-numbers-item__count-wrap {
  padding: 0.6rem 0 0 5.8rem;
}
.p-numbers-item11 .p-numbers-item__ico {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 6.3rem;
}
.p-numbers-item11 .p-numbers-item__count .-num {
  text-stroke: 1rem #fff;
  -webkit-text-stroke: 1rem #fff;
  paint-order: stroke fill;
}
@media screen and (max-width: 768px) {
  .p-numbers-item11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
    gap: 1.5rem 0;
  }
  .p-numbers-item11 .p-numbers-item__count-wrap {
    padding: 0.3rem 0 0 2.5rem;
  }
  .p-numbers-item11 .p-numbers-item__count .-num {
    text-stroke: 0.5rem #fff;
    -webkit-text-stroke: 0.5rem #fff;
  }
  .p-numbers-item11 .p-numbers-item__ico {
    width: 2.6rem;
  }
}

.p-numbers-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 1.9rem;
}
@media screen and (min-width: 769px) {
  .p-numbers-item__wrap .p-numbers-item {
    width: calc(50% - 1rem);
    min-height: 36.5rem;
  }
  .p-numbers-item__wrap .p-numbers-item.-col3 {
    width: calc((100% - 3.8rem) / 3);
    min-height: 23.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-numbers-item__wrap {
    gap: 0.6rem 0.8rem;
  }
  .p-numbers-item__wrap .p-numbers-item {
    width: 100%;
    min-height: 11.9rem;
  }
  .p-numbers-item__wrap .p-numbers-item.-col2_only_mobile {
    width: calc(50% - 0.4rem);
    min-height: 10rem;
  }
}

/* ================================
採用情報 - 先輩の声
================================ */
@media screen and (max-width: 768px) {
  .post-type-archive-voice .p-page-header__title::before {
    content: "SENIOR’S\aVOICE";
    white-space: pre;
  }
}

.p-voice-article {
  margin: 0 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-voice-article {
    margin: 0 0 3.8rem;
  }
}

.p-voice-mv {
  height: 38.1rem;
  margin: 0 0 5rem;
}
.p-voice-mv__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem 1.9rem;
}
.p-voice-mv__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
}
.p-voice-mv__catch {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
}
.p-voice-mv__meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.6rem 1.5rem;
}
.p-voice-mv__name {
  font-size: 1.5rem;
  font-weight: 500;
}
.p-voice-mv__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9rem;
}
.p-voice-mv__meta span:not(:first-of-type)::before {
  content: "/";
  margin: 0 0.5em;
}
.p-voice-mv__thumb {
  width: 54%;
  border-radius: 3.1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-voice-mv {
    height: auto;
    margin: 0 0 2.5rem;
  }
  .p-voice-mv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-voice-mv__content {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
  .p-voice-mv__thumb {
    width: 100%;
    border-radius: 1.9rem;
  }
  .p-voice-mv__catch {
    font-size: 1.5rem;
    margin: 0 0 1.3rem;
  }
  .p-voice-mv__name {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 769px) {
  .p-voice-nav__item {
    width: calc((100% - 4.6rem) / 3);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-voice-interview {
  padding: 5rem 0;
}
.p-voice-interview__heading {
  margin: 0 0 5rem;
}
.p-voice-interview__block:not(:last-of-type) {
  margin-bottom: 5rem;
}
.p-voice-interview__item:not(:last-of-type) {
  margin-bottom: 3.1rem;
}
.p-voice-interview__question {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 0 0 2.5rem;
  margin: 0 0 1.5rem;
}
.p-voice-interview__question::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  display: block;
  width: 1.3rem;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2C60BD), to(#6199FF));
  background: linear-gradient(to right, #2C60BD, #6199FF);
}
@media screen and (max-width: 768px) {
  .p-voice-interview {
    padding: 3.8rem 0;
  }
  .p-voice-interview__heading {
    margin: 0 0 1.3rem;
  }
  .p-voice-interview__block {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .p-voice-interview__block:not(:last-of-type) {
    margin-bottom: 3.1rem;
  }
  .p-voice-interview__item:not(:last-of-type) {
    margin-bottom: 1.9rem;
  }
  .p-voice-interview__question {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
  }
  .p-voice-interview__question::before {
    top: 1rem;
  }
}

.p-voice-career {
  background-color: #EFF7FF;
  padding: 5rem 0;
}
.p-voice-career__item:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-voice-career__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.9rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #2C60BD;
  border-radius: 9999px;
  padding: 1.3rem 2.5rem;
  margin: 0 0 1.5rem;
}
.p-voice-career__title .-count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-voice-career__desc {
  padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-voice-career {
    padding: 3.8rem 0;
  }
  .p-voice-career__item:not(:last-of-type) {
    margin-bottom: 1.9rem;
  }
  .p-voice-career__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.1rem;
    border-radius: 0.6rem;
    padding: 0.6rem 1.3rem;
    margin: 0 0 0.6rem;
  }
  .p-voice-career__desc {
    padding: 0;
  }
}

.p-voice-schedule {
  padding: 5rem 0;
}
.p-voice-schedule__intro {
  font-size: 1.3rem;
  margin: 0 0 3.1rem;
}
.p-voice-schedule__item {
  min-height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EFF7FF;
  border-radius: 2.5rem;
  padding: 1.9rem 2.5rem;
}
.p-voice-schedule__item:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
.p-voice-schedule__time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11.3rem;
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.p-voice-schedule__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-voice-schedule__title {
  font-size: 1.3rem;
  font-weight: 700;
}
.p-voice-schedule__desc {
  margin: 1rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-voice-schedule {
    padding: 3.8rem 0;
  }
  .p-voice-schedule__intro {
    font-size: 0.9rem;
    margin: 0 0 1.9rem;
  }
  .p-voice-schedule__item {
    border-radius: 1.3rem;
    padding: 1.5rem 1.3rem;
  }
  .p-voice-schedule__item:not(:last-of-type) {
    margin-bottom: 0.6rem;
  }
  .p-voice-schedule__time {
    width: 7.5rem;
    font-size: 1.9rem;
  }
  .p-voice-schedule__title {
    font-size: 1rem;
  }
  .p-voice-schedule__desc {
    margin: 0.3rem 0 0;
  }
}

/* ================================
採用情報 - 座談会
================================ */
.p-talk-mv {
  height: auto;
}
.p-talk-mv__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-talk-mv__thumb {
  aspect-ratio: 3/2;
}

/* ================================
新光電機の強み
================================ */
.p-strength-sec__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 2.5rem;
  margin: 0 0 2.5rem;
}
.p-strength-sec__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #2C60BD;
  font-size: 2.5rem;
  font-weight: 600;
}
.p-strength-sec__img {
  width: 100%;
  aspect-ratio: 1200/450;
  border-radius: 3.1rem;
  overflow: hidden;
  margin: 0 0 3.8rem;
}
.p-strength-sec:not(:last-of-type) {
  margin-bottom: 6.3rem;
}
@media screen and (max-width: 768px) {
  .p-strength-sec__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 1.9rem;
  }
  .p-strength-sec__heading {
    font-size: 1.5rem;
  }
  .p-strength-sec__img {
    aspect-ratio: 335/198;
    border-radius: 1.9rem;
    margin: 0 0 2.5rem;
  }
  .p-strength-sec:not(:last-of-type) {
    margin-bottom: 3.8rem;
  }
}

.p-strength-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 2.5rem;
}
.p-strength-point__item {
  width: calc(50% - 1.3rem);
  display: grid;
  grid-template-areas: "img title" "img desc";
  grid-template-columns: 11.3rem 1fr;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
  gap: 1rem 1.3rem;
  background-color: #EFF7FF;
  padding: 1.9rem;
}
.p-strength-point__img {
  grid-area: img;
  aspect-ratio: 1/1;
}
.p-strength-point__title {
  grid-area: title;
  color: #2C60BD;
  font-size: 1.4rem;
  font-weight: 600;
}
.p-strength-point__desc {
  grid-area: desc;
  align-self: start;
}
@media screen and (max-width: 768px) {
  .p-strength-point__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.3rem 0;
  }
  .p-strength-point__item {
    width: 100%;
    grid-template-areas: "img title" "desc desc";
    grid-template-columns: 8.1rem 1fr;
    gap: 0.6rem 1.3rem;
    padding: 1.3rem;
  }
  .p-strength-point__title {
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 1.3rem;
  }
  .p-strength-point__desc {
    font-size: 0.9rem;
  }
}

/* ================================
プライバシーポリシー
================================ */
@media screen and (max-width: 768px) {
  .p-page-header.-privacy-policy .p-page-header__title::before {
    content: "Privacy\aPlicy";
    white-space: pre;
  }
}

.p-privacy-policy__list01 {
  margin: 0.25em 0 0 2rem !important;
}
.p-privacy-policy__list01 > li {
  list-style: none;
}
.p-privacy-policy__list01 > li > ol {
  list-style-type: lower-alpha;
  margin: 0.25em 1em;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__list01 {
    margin: 0.25em 0 0 0 !important;
  }
}

/* ================================
サイトマップ
================================ */
.p-sitemap-nav__menu-item > a::after {
  background: url(../img/cmn/arrow_next.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-sitemap-nav {
    display: block;
  }
  .p-sitemap-nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

/* ================================
Adjistment
================================ */
.u-fit--contain {
  text-align: center;
}
.u-fit--contain img,
.u-fit--contain source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.u-color--main {
  color: #2C60BD;
}
.u-color--main_pale {
  color: #B1CDFF;
}
.u-color--sub {
  color: #2f48ab;
}
.u-color--wh {
  color: #fff;
}
.u-color--gd {
  color: #2C60BD;
}
.u-color--rd {
  color: #FF4B4B;
}

.u-align--center {
  text-align: center;
}
.u-align--right {
  text-align: right;
}
.u-align--left {
  text-align: left;
}

.u-display_ib {
  display: inline-block;
}
.u-display_ib--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_ib--sm {
    display: inline-block;
  }
}

.u-display--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display--lg {
    display: block;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}

.u-display_flex--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display_flex--lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display_flex--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_flex--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1200px) {
  .u-hidden--lg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}