@charset "UTF-8";
/* Reset
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main, article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --break-point: 1023px;
}

:root {
  --vw: 1vw;
}

@media screen and (min-width: 1024px) {
  :root {
    --content-width: min(calc(var(--vw) * 70 ),1000px);
    --content-width--l: min(calc(var(--vw) * 80 ),1200px);
    --content-width--xl: min(calc(var(--vw) * 86 ),1280px);
    --content-width--xxl: calc(var(--vw) * 90 );
    --neg-margin--l: calc((var(--content-width--l) - var(--content-width)) / -2);
    --neg-margin--xl: calc((var(--content-width--xl) - var(--content-width)) / -2);
    --neg-margin--xxl: calc((var(--content-width--xxl) - var(--content-width)) / -2);
    --content-padding: calc((var(--vw) * 100 - var(--content-width--xxl)) / 2);
    --content-padding--l: calc((var(--vw) * 100 - var(--content-width--xl)) / 2);
    --content-padding--xl: calc((var(--vw) * 100 - var(--content-width--l)) / 2);
    --content-padding--xxl: calc((var(--vw) * 100 - var(--content-width)) / 2);
  }
}
@media screen and (max-width: 1023px) {
  :root {
    --content-width: calc(var(--vw) * 80 );
    --content-width--l: calc(var(--vw) * 80 );
    --content-width--xl: calc(var(--vw) * 87 );
    --content-width--xxl: calc(var(--vw) * 93 );
    --neg-margin--xxl: calc((var(--content-width--xxl) - var(--content-width--xl)) / -2);
    --content-padding: calc((var(--vw) * 100 - var(--content-width--xxl)) / 2);
    --content-padding--l: calc((var(--vw) * 100 - var(--content-width--xl)) / 2);
    --content-padding--xl: calc((var(--vw) * 100 - var(--content-width--l)) / 2);
  }
}
.article-body .image.breaking-out--bg {
  margin-inline: calc(50% - var(--vw) * 50);
  padding-inline: calc(var(--vw) * 50 - 50%);
}

/* Fonts
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
:lang(ja) {
  font-family: YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

:lang(en) {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  /*font-variant-ligatures: none;*/
}

html {
  font-size: 62.5%;
}

body {
  line-height: 2.3;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0;
  /* font-feature-settings: "palt"; */
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
    line-height: 2;
  }
}
/* common
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html {
  height: 100%;
}

body {
  background: #FFF;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p, ul, ol, dl {
  margin: 0 0 30px;
}

h1, h2, h3, h4, h5 {
  line-height: 1.5;
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 3rem;
}

li {
  margin: 0 0 0 2.2em;
}

ul {
  list-style: disc;
}
ul ul {
  list-style: circle;
}
ul.no-style {
  list-style: none;
}
ul.no-style > li {
  margin-left: 0;
}

ol {
  list-style: decimal;
}
ol ol {
  counter-reset: number-child-list;
}
ol ol li {
  counter-increment: number-child-list;
  list-style: none;
  margin-left: 2.5em;
}
ol ol li::before {
  content: "(" counter(number-child-list) ")";
  width: 2.5em;
  display: inline-block;
  margin-left: -2.5em;
}
ol.parentheses {
  counter-reset: parentheses-list;
}
ol.parentheses li {
  counter-increment: parentheses-list;
  margin-left: 2.5em;
  list-style: none;
}
ol.parentheses li::before {
  content: "(" counter(parentheses-list) ")";
  width: 2.5em;
  display: inline-block;
  margin-left: -2.5em;
}

.hidden {
  display: none;
}

table {
  width: 100%;
  margin: 60px 0;
  padding: 20px 0;
  border-collapse: collapse;
}
table th, table td {
  padding: 30px;
  text-align: left;
}
table th p, table th ul, table th ol, table th dl, table td p, table td ul, table td ol, table td dl {
  margin: 0 0 20px;
}
table th :not(input):not(select):not(textarea):not(span):last-child, table td :not(input):not(select):not(textarea):not(span):last-child {
  margin-bottom: 0 !important;
}
table th {
  width: 30%;
  font-weight: 700;
  letter-spacing: 0.15em;
}
table tbody tr.combine > td {
  border-top: none;
  border-bottom-style: dashed;
}
table tbody tr:last-child > th, table tbody tr:last-child > td {
  border-bottom: none;
}
table tbody th[rowspan] ~ td {
  border-bottom-style: dashed;
}
table thead th {
  width: auto;
  text-align: center;
  border-top: none;
}
table tfoot th,
table tfoot td {
  border-bottom: none;
}
table caption {
  font-weight: bold;
  text-align: left;
}

hr {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border: none;
  vertical-align: bottom;
  pointer-events: none;
}

i {
  font-style: normal;
}

em {
  font-style: normal;
  color: #0072BC;
  font-weight: 700;
}

strong {
  font-weight: bold;
}

sup {
  vertical-align: top;
  line-height: 1.8;
  font-size: x-small;
}

ins {
  color: #C00;
}

a {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #000;
  text-decoration: none;
}
@media (hover: hover) {
  a:where(:-moz-any-link, :enabled, summary):hover {
    color: #000;
  }
  a:where(:any-link, :enabled, summary):hover {
    color: #000;
  }
}
a:hover span {
  cursor: pointer;
}
a.inactive, .inactive a {
  cursor: default;
  pointer-events: none;
}
a:not([class]) {
  text-decoration: underline;
  color: #0072BC;
}
@media (hover: hover) {
  a:not([class]):where(:-moz-any-link, :enabled, summary):hover {
    color: #0072BC;
  }
  a:not([class]):where(:any-link, :enabled, summary):hover {
    color: #0072BC;
  }
}
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    color: #000;
    text-decoration: none;
    pointer-events: none;
  }
}

input,
select,
textarea,
button {
  font-family: YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  overflow: visible;
}

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

figcaption {
  text-align: left;
}

.italic {
  font-style: italic;
}

.note {
  color: #676767;
  line-height: 1.8;
}

.flow-root {
  display: flow-root;
}

.float-clear {
  clear: both;
}

.align-right {
  text-align: right;
}

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

@media screen and (max-width: 1023px) {
  p, ul, ol, dl {
    margin: 0 0 20px;
  }
  h1, h2, h3, h4, h5 {
    margin: 0 0 20px;
    font-size: 1.8rem;
  }
  table {
    margin: 40px 0;
    padding: 0;
  }
  table th, table td {
    padding: 15px 5px;
    font-size: 1.3rem;
    width: auto;
  }
  .btn-area {
    margin: 40px 0;
  }
  input,
  select,
  textarea,
  button {
    font-size: 1.4rem;
  }
  .note {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1024px) {
  .mob {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
  .mob {
    display: block;
  }
  br.mob {
    display: inline;
  }
}
.wrapper {
  overflow: hidden;
}

.contents {
  display: flow-root;
  position: relative;
  background: url(../../assets/images/bg_main.png);
  background-size: 100% auto;
  padding-top: 150px;
}
@media screen and (max-width: 1023px) {
  .contents {
    padding-top: 75px;
  }
}
.contents::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 17, 43, 0);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.page-header {
  width: var(--content-width--xl);
  margin: 0 auto 100px;
}
.page-title {
  font-size: 4.6rem;
  color: #0072BC;
}
@media screen and (max-width: 1023px) {
  .page-header {
    margin: 0 auto 50px;
  }
  .page-title {
    font-size: 2.6rem;
  }
}

.section {
  width: var(--content-width);
  margin: 0 auto 100px;
}
.section-heading {
  font-size: 3.2rem;
  color: #0072BC;
  margin: 0 0 50px;
}
.section-child-heading {
  font-size: 2.4rem;
  margin: 50px 0 30px;
}
.section-child-2-heading {
  font-size: 2.2rem;
}
.section ul, .section ol {
  margin-left: max(5%, 20px);
}
.section .without-bullets li {
  list-style: none;
  margin: 15px 0;
}
.section .without-bullets .arrow-s-icon {
  margin-left: 10px;
  vertical-align: middle;
}
.section .without-bullets .arrow-s-icon::before {
  -webkit-mask-size: 15px auto;
          mask-size: 15px auto;
}
.section .e-mail {
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .section {
    width: var(--content-width--xl);
    margin: 0 auto 60px;
  }
  .section-heading {
    font-size: 2.2rem;
    margin: 0 0 30px;
  }
  .section-child-heading {
    font-size: 1.8rem;
    margin: 30px 0 20px;
  }
  .section-child-2-heading {
    font-size: 1.6rem;
  }
}

.modal {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: visibility 0.4s, opacity 0.4s;
  transition: visibility 0.4s, opacity 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}
.modal-mode body {
  overflow: hidden !important;
}
.modal.is-opened {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.modal-inner {
  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;
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  z-index: 2;
  border-radius: 10px;
  background: #FFF;
}
.modal-section {
  width: var(--content-width--xl);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.modal-section > *:last-child {
  margin-bottom: 0;
}
.modal.video-modal .modal-inner {
  background: transparent;
  padding: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  inset: 0;
  margin: auto;
  aspect-ratio: 16/9;
  width: min(80%, 800px);
  height: auto;
}
.modal.video-modal .modal-section {
  width: 100%;
  margin: auto;
}
.modal.video-modal .modal-section .video {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.modal-heading {
  font-size: 1.8rem;
  margin: 0 0 30px;
}
.modal-heading:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .modal-inner {
    top: 73px;
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .modal-heading {
    font-size: 1.4rem;
    margin: 0 0 20px;
  }
  .modal-heading:not(:first-child) {
    margin-top: 30px;
  }
  .modal.video-modal .modal-inner {
    width: auto;
    max-height: min(80%, 100% - 100px);
    inset: 0 5%;
  }
}

.close-button {
  position: fixed;
  z-index: 3;
  top: 45px;
  right: 60px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.close-button-label {
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.close-button .close-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.close-button .close-icon::before, .close-button .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid #000;
  width: 45px;
  -webkit-transform: translate(-50%, -50%) rotate(-20deg);
          transform: translate(-50%, -50%) rotate(-20deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.video-modal .close-button .close-icon::before, .video-modal .close-button .close-icon::after {
  border-top-color: #FFF;
}

.close-button .close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(20deg);
          transform: translate(-50%, -50%) rotate(20deg);
}
@media screen and (max-width: 1023px) {
  .close-button {
    top: 20px;
    right: var(--content-padding);
    width: 40px;
    height: 40px;
  }
  .close-button .close-icon::before, .close-button .close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-top-width: 1px;
    width: 32px;
    -webkit-transform: translate(-50%, -50%) rotate(-20deg);
            transform: translate(-50%, -50%) rotate(-20deg);
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    border-top-color: #FFF;
  }
  .close-button .close-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(20deg);
            transform: translate(-50%, -50%) rotate(20deg);
  }
}

.arrow-icon, .swiper-controller .next-icon,
.swiper-controller .prev-icon, .arrow-s-icon {
  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;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #0072BC;
  background: #0072BC;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.arrow-icon::before, .swiper-controller .next-icon::before,
.swiper-controller .prev-icon::before, .arrow-s-icon::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #FFF;
  -webkit-mask-image: url(../../assets/images/icn_arrow.svg);
          mask-image: url(../../assets/images/icn_arrow.svg);
  -webkit-mask-size: 11px auto;
          mask-size: 11px auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (max-width: 1023px) {
  .arrow-icon, .swiper-controller .next-icon,
  .swiper-controller .prev-icon, .arrow-s-icon {
    width: 28px;
    height: 28px;
  }
}

.arrow-s-icon {
  width: 15px;
  height: 15px;
  background: transparent;
  border-radius: 0;
  border: none;
}
.arrow-s-icon::before {
  background-color: #0072BC;
  -webkit-mask-image: url(../../assets/images/icn_arrow_s.svg);
          mask-image: url(../../assets/images/icn_arrow_s.svg);
}
a[target=_blank] .arrow-s-icon::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swiper-controller .swiper-button-prev,
.swiper-controller .swiper-button-next {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media (hover: hover) {
  .swiper-controller .swiper-button-prev:where(:-moz-any-link, :enabled, summary):hover .next-icon, .swiper-controller .swiper-button-prev:where(:-moz-any-link, :enabled, summary):hover .prev-icon, .swiper-controller .swiper-button-next:where(:-moz-any-link, :enabled, summary):hover .next-icon, .swiper-controller .swiper-button-next:where(:-moz-any-link, :enabled, summary):hover .prev-icon {
    background: #FFF;
    border-color: #0072BC;
  }
  .swiper-controller .swiper-button-prev:where(:any-link, :enabled, summary):hover .next-icon,
  .swiper-controller .swiper-button-prev:where(:any-link, :enabled, summary):hover .prev-icon,
  .swiper-controller .swiper-button-next:where(:any-link, :enabled, summary):hover .next-icon,
  .swiper-controller .swiper-button-next:where(:any-link, :enabled, summary):hover .prev-icon {
    background: #FFF;
    border-color: #0072BC;
  }
  .swiper-controller .swiper-button-prev:where(:-moz-any-link, :enabled, summary):hover .next-icon::before, .swiper-controller .swiper-button-prev:where(:-moz-any-link, :enabled, summary):hover .prev-icon::before, .swiper-controller .swiper-button-next:where(:-moz-any-link, :enabled, summary):hover .next-icon::before, .swiper-controller .swiper-button-next:where(:-moz-any-link, :enabled, summary):hover .prev-icon::before {
    background-color: #0072BC;
  }
  .swiper-controller .swiper-button-prev:where(:any-link, :enabled, summary):hover .next-icon::before,
  .swiper-controller .swiper-button-prev:where(:any-link, :enabled, summary):hover .prev-icon::before,
  .swiper-controller .swiper-button-next:where(:any-link, :enabled, summary):hover .next-icon::before,
  .swiper-controller .swiper-button-next:where(:any-link, :enabled, summary):hover .prev-icon::before {
    background-color: #0072BC;
  }
}
.swiper-controller .swiper-button-prev {
  right: auto;
  left: 0;
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
.swiper-controller .swiper-button-label {
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
.tag-item {
  margin: 0;
  list-style: none;
}
.tag-link, .article-filter-reset-button, .article-filter-button {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #0D112B;
  background: #FFF;
  border-radius: 30px;
  padding: 0.4em 1.8em;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .tag-link:where(:-moz-any-link, :enabled, summary):hover, .article-filter-reset-button:where(:-moz-any-link, :enabled, summary):hover, .article-filter-button:where(:-moz-any-link, :enabled, summary):hover {
    background: #9F9F9F;
    color: #FFF;
  }
  .tag-link:where(:any-link, :enabled, summary):hover, .article-filter-reset-button:where(:any-link, :enabled, summary):hover, .article-filter-button:where(:any-link, :enabled, summary):hover {
    background: #9F9F9F;
    color: #FFF;
  }
}

.cookie-consent {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFF;
  background: rgba(13, 17, 43, 0.85);
  visibility: hidden;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-transition: 0.4s 0.2s ease;
  transition: 0.4s 0.2s ease;
}
.cookie-consent.is-visible {
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.cookie-consent-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: var(--content-width--l);
  margin: 0 auto;
  padding: 20px 0;
}
.cookie-consent-description {
  font-size: 1.2rem;
  line-height: 1.8em;
  -webkit-box-flex: 2;
      -ms-flex: 2 2 auto;
          flex: 2 2 auto;
  margin: 0;
}
.cookie-consent-description a {
  color: #D4E7FE;
}
.cookie-consent-accept-button {
  width: 190px;
  height: 50px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: #0072BC;
}
@media (hover: hover) {
  .cookie-consent-accept-button:where(:-moz-any-link, :enabled, summary):hover {
    color: #FFF;
    background: #0072BC;
  }
  .cookie-consent-accept-button:where(:any-link, :enabled, summary):hover {
    color: #FFF;
    background: #0072BC;
  }
}
.cookie-consent-close-button {
  text-indent: -100vw;
  overflow: hidden;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
}
.cookie-consent-close-button::before, .cookie-consent-close-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  border-top: 1px solid;
  color: #FFF;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.cookie-consent-close-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.cookie-consent-close-button:hover::before, .cookie-consent-close-button:hover::after {
  width: 40px;
}
@media screen and (max-width: 1023px) {
  .cookie-consent-inner {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-consent-description {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .cookie-consent-accept-button {
    width: 170px;
    height: 40px;
    font-size: 1.5rem;
  }
  .cookie-consent-close-button {
    width: 20px;
    height: 20px;
    top: 7px;
    right: 10px;
  }
  .cookie-consent-close-button::before, .cookie-consent-close-button::after {
    width: 20px !important;
  }
}

@media print {
  .scroll-motion, .article-body .image {
    translate: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .cookie-consent {
    display: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 var(--content-padding);
  background: #FFF;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 76px;
  }
}
.on-scroll .header {
  height: 80px;
}
@media screen and (max-width: 1023px) {
  .on-scroll .header {
    height: 50px;
  }
}

.header .site-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin: 0;
}
.header .site-title-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 31px;
}
.header .site-title-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header .site-title-logo-image {
  width: 260px;
  height: auto;
  vertical-align: top;
}
.header .site-title-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2733;
}
@media screen and (max-width: 1023px) {
  .header .site-title-link {
    gap: 0 12px;
  }
  .header .site-title-logo-image {
    width: 120px;
  }
  .header .site-title-text {
    font-size: 1rem;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
    white-space: nowrap;
  }
}
.header .recruit-info-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 30px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
  width: 206px;
  height: 53px;
  border-radius: 30px;
  background: #0072BC;
  color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0072BC;
  border: 1px solid #0072BC;
}
.header .recruit-info-button-wrap {
  margin: 0 50px 0 auto;
}
@media (hover: hover) {
  .header .recruit-info-button:where(:-moz-any-link, :enabled, summary):hover {
    background: #FFF;
    color: #0072BC;
  }
  .header .recruit-info-button:where(:any-link, :enabled, summary):hover {
    background: #FFF;
    color: #0072BC;
  }
  .header .recruit-info-button:where(:-moz-any-link, :enabled, summary):hover .arrow-icon::before {
    background-color: #0072BC;
  }
  .header .recruit-info-button:where(:any-link, :enabled, summary):hover .arrow-icon::before {
    background-color: #0072BC;
  }
}
.header .recruit-info-button .arrow-icon {
  margin: 0 8px 0 auto;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 1023px) {
  .header .recruit-info-button {
    padding: 0 0 0 10px;
    font-size: 1.1rem;
    width: 90px;
    height: 33px;
  }
  .header .recruit-info-button-wrap {
    margin: 0 10px 0 auto;
  }
  .header .recruit-info-button .arrow-icon {
    margin: 0 3px 0 auto;
  }
}
.header .recruit-info-modal-section {
  position: relative;
  padding-left: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto 0;
}
.header .recruit-info-heading {
  position: absolute;
  top: 0;
  left: -30px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.header .recruit-info-heading-en {
  font-size: 5.8rem;
  font-weight: normal;
  line-height: 1.1;
  color: #0F0F0F;
}
.header .recruit-info-heading-ja {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #0D112B;
}
.header .recruit-info-lead {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.header .recruit-info-list {
  width: auto;
}
.header .recruit-info-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10%;
  border-radius: 5px;
  padding: 13px;
  background: #FAFAFA;
}
.header .recruit-info-link .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .recruit-info-link .thumbnail--right {
  -o-object-position: right;
     object-position: right;
}
.header .recruit-info-link .thumbnail-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 85px;
  height: 85px;
  border-radius: 5px;
  overflow: hidden;
}
.header .recruit-info-link .thumbnail-wrap::before {
  display: none;
}
@media (hover: hover) {
  .header .recruit-info-link:where(:-moz-any-link, :enabled, summary):hover {
    background: #EAEAEA;
  }
  .header .recruit-info-link:where(:any-link, :enabled, summary):hover {
    background: #EAEAEA;
  }
}
.header .recruit-info-company-name {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  color: #0D112B;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .header .recruit-info-modal-section {
    padding-left: 0;
  }
  .header .recruit-info-heading {
    position: relative;
    top: auto;
    left: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin: 0 0 20px;
  }
  .header .recruit-info-heading-en {
    font-size: 3.4rem;
  }
  .header .recruit-info-heading-ja {
    font-size: 1.4rem;
  }
  .header .recruit-info-lead {
    font-size: 1.2rem;
  }
  .header .recruit-info-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
  .header .recruit-info-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 19px;
    padding: 9px;
  }
  .header .recruit-info-link .thumbnail-wrap {
    width: 42px;
    height: 42px;
  }
  .header .recruit-info-company-name {
    font-size: 1.2rem;
  }
}

.nav {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.nav-mode body {
  overflow: hidden !important;
}
.nav-button {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
}
.nav-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid #000;
  width: 45px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-button-inner {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  border-radius: 100px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-button-inner::before, .nav-button-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid #000;
  width: 45px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  margin: -8px 0 0;
}
.nav-button-inner::after {
  margin: 8px 0 0;
}
.nav-inner {
  visibility: hidden;
  position: fixed;
  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;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 0;
  background-color: #0072BC;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, opacity 0.4s ease;
  overflow: auto;
  pointer-events: none;
}
.nav.is-opened .nav-inner {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
.nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--content-width);
  gap: 0 12%;
}
.nav-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  width: 45%;
  gap: 5vh 0;
  margin: 0;
}
.nav-item {
  margin: 0;
}
.nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  color: #FFF;
}
@media (hover: hover) {
  .nav-link:where(:-moz-any-link, :enabled, summary):hover {
    color: #FFF;
  }
  .nav-link:where(:any-link, :enabled, summary):hover {
    color: #FFF;
  }
}
.nav-link .arrow-icon {
  margin: 0 0 0 auto;
  border-color: #FFF;
}
@media (hover: hover) {
  .nav-link:where(:-moz-any-link, :enabled, summary):hover .nav-label-en::after {
    right: 0;
    opacity: 1;
  }
  .nav-link:where(:any-link, :enabled, summary):hover .nav-label-en::after {
    right: 0;
    opacity: 1;
  }
  .nav-link:where(:-moz-any-link, :enabled, summary):hover .arrow-icon {
    transform: translate(15px, 0);
  }
  .nav-link:where(:any-link, :enabled, summary):hover .arrow-icon {
    -webkit-transform: translate(15px, 0);
            transform: translate(15px, 0);
  }
}
.nav-label {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
}
.nav-label-en {
  position: relative;
  font-size: 3.4rem;
  font-weight: normal;
}
.nav-label-en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  right: 100%;
  border-bottom: 1px solid #FFF;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-label-ja {
  font-size: 1.8rem;
  font-weight: bold;
}
.nav-side-bar {
  -webkit-box-flex: 2;
      -ms-flex: 2 2 auto;
          flex: 2 2 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1px solid #FFF;
  color: #FFF;
  padding: 10vh 0;
  gap: 8vh 0;
}
.nav-side-bar .site-title {
  -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;
  gap: 25px 0;
}
.nav-side-bar .site-title-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.nav-side-bar .site-title-logo-image {
  width: 280px;
  height: auto;
}
.nav-side-bar .site-title-text {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #FFF;
}
.nav-side-bar .utility-nav {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  list-style: none;
  margin: 0;
  gap: 20px 0;
}
.nav-side-bar .utility-nav-item {
  margin: 0;
}
.nav-side-bar .utility-nav-link {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  font-size: 1.2rem;
}
.nav-side-bar .utility-nav-link .arrow-s-icon::before {
  background-color: #FFF;
}
.nav-side-bar .utility-nav-link[target=_blank] .arrow-s-icon::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover: hover) {
  .nav-side-bar .utility-nav-link:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
  .nav-side-bar .utility-nav-link:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
.nav-side-bar .copyright {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
}
.nav .close-button {
  top: 45px;
  right: var(--content-padding);
}
.nav .close-button .close-icon::before, .nav .close-button .close-icon::after {
  border-top-color: #FFF;
}
@media screen and (max-width: 1023px) {
  .nav-button {
    width: 40px;
    height: 40px;
    margin: 0 -4px 0 0;
  }
  .nav-button::before {
    border-top-width: 1px;
    width: 32px;
  }
  .nav-button-inner::before, .nav-button-inner::after {
    border-top-width: 1px;
    width: 32px;
    margin: -6px 0 0;
  }
  .nav-button-inner::after {
    margin: 6px 0 0;
  }
  .nav-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 100px;
  }
  .nav-content {
    -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;
    width: var(--content-width--l);
    gap: 8vh;
  }
  .nav-list {
    width: auto;
    gap: 5vh 0;
  }
  .nav-link .arrow-icon {
    width: 37px;
    height: 37px;
  }
  .nav-label-en {
    font-size: 2rem;
  }
  .nav-label-en::after {
    bottom: 0.2em;
  }
  .nav-label-ja {
    font-size: 1rem;
  }
  .nav-side-bar {
    border-right: none;
    border-top: 1px solid #FFF;
    color: #FFF;
    padding: 50px 0;
    gap: 20px 0;
  }
  .nav-side-bar .site-title {
    -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;
    gap: 30px 0;
    margin-bottom: 20px;
  }
  .nav-side-bar .site-title-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .nav-side-bar .site-title-logo-image {
    width: 230px;
    height: auto;
  }
  .nav-side-bar .site-title-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    -webkit-transform: none;
            transform: none;
  }
  .nav-side-bar .utility-nav {
    gap: 8px 0;
  }
  .nav .close-button {
    top: 20px;
    right: var(--content-padding--xl);
  }
  .nav .close-button .close-icon::before, .nav .close-button .close-icon::after {
    border-top-color: #FFF;
  }
}

.footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 60px;
  background: #0D112B;
  color: #FFF;
}
.footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: var(--content-width--xxl);
}
.footer .site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 73px;
  width: 100%;
  padding: 0 0 50px;
  border-bottom: 1px solid #616A83;
}
.footer .site-title-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.footer .site-title-logo-image {
  width: 361px;
  height: auto;
}
.footer .site-title-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #FFF;
}
.footer .utility-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  list-style: none;
  margin: 0;
  gap: 0 30px;
}
.footer .utility-nav-item {
  margin: 0;
}
.footer .utility-nav-link {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  font-size: 1.2rem;
}
.footer .utility-nav-link .arrow-s-icon::before {
  background-color: #FFF;
}
.footer .utility-nav-link[target=_blank] .arrow-s-icon::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover: hover) {
  .footer .utility-nav-link:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
  .footer .utility-nav-link:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
.footer .copyright {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 auto;
}
.footer .pagetop-button {
  position: absolute;
  bottom: 100%;
  right: 0;
}
.footer .pagetop-button-label {
  position: absolute;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.footer .pagetop-button-icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: #0D112B;
}
.footer .pagetop-button-icon::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #FFF;
  -webkit-mask-image: url(../../assets/images/icn_arrow.svg);
          mask-image: url(../../assets/images/icn_arrow.svg);
  -webkit-mask-size: 10.57px auto;
          mask-size: 10.57px auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 1023px) {
  .footer {
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 60px 0;
  }
  .footer .footer-inner {
    width: var(--content-width--l);
    gap: 30px 0;
  }
  .footer .site-title {
    -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;
    gap: 30px;
    width: 100%;
    padding: 0 0 40px;
    margin: 0;
    border-bottom: 1px solid #616A83;
  }
  .footer .site-title-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .footer .site-title-logo-image {
    width: 280px;
    height: auto;
  }
  .footer .site-title-text {
    font-size: 1.4rem;
  }
  .footer .utility-nav {
    -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;
    gap: 8px 0;
    margin-bottom: 20px;
  }
  .footer .copyright {
    margin: 0;
  }
  .footer .pagetop-button-icon {
    width: 52px;
    height: 52px;
  }
}

@media print {
  .header {
    position: absolute;
  }
}
.top {
  position: relative;
  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;
  margin: 0 0 200px;
  padding: 100px 0 0;
  background: #FFF;
}
.top-title-wrap {
  position: relative;
  z-index: 3;
  width: var(--content-width--xl);
}
.top-islands {
  position: absolute;
  top: -30px;
  right: calc((100% - var(--content-width--l)) / 2);
}
.top-islands-image {
  position: relative;
  z-index: 2;
}
.top-about-button {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #029CA3;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFF;
  font-weight: bold;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #029CA3;
  color: #FFF;
}
.top-about-button-wrap {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -10px;
}
@media (hover: hover) {
  .top-about-button:where(:-moz-any-link, :enabled, summary):hover {
    background: #FFF;
    color: #029CA3;
  }
  .top-about-button:where(:any-link, :enabled, summary):hover {
    background: #FFF;
    color: #029CA3;
  }
}
.top-slogan {
  font-weight: bold;
  font-size: 5rem;
  letter-spacing: 0.2em;
  line-height: 1.3;
  margin: 0 0 10px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.top-slogan span {
  display: inline-block;
  opacity: 0;
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) forwards;
}
@-webkit-keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.is-in .top-slogan {
  color: #FFF;
}

.top-site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0072BC;
  margin: 0 0 50px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .top-site-title {
  color: #FFF;
}

.top-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.top .loop-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-slider 80s infinite linear 1s both;
          animation: loop-slider 80s infinite linear 1s both;
}
.top .loop-slider-item {
  width: 307px;
}
@-webkit-keyframes loop-slider {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slider {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.top-company {
  position: absolute;
  z-index: 3;
  left: var(--content-padding);
  right: var(--content-padding);
  bottom: -80px;
  /* &-item.swiper-slide-active {
  	width: 237px !important;
  } */
}
.top-company-list {
  padding: 10px 0 !important;
}
.top-company .swiper-wrapper {
  margin-bottom: 0;
}
.top-company-item {
  width: 217px !important;
  height: 111px !important;
  list-style: none;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.top-company-link {
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 217px !important;
  height: 111px !important;
  margin: 0 auto;
  background: #FFF;
  -webkit-transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  overflow: hidden;
}
.top-company-link-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  gap: 5px;
  background: #0072BC;
  color: #FFF;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.top-company-link-hover .arrow-s-icon::before {
  background-color: #FFF;
}
@media (hover: hover) {
  .top-company-link:where(:-moz-any-link, :enabled, summary):hover .top-company-link-hover {
    opacity: 1;
  }
  .top-company-link:where(:any-link, :enabled, summary):hover .top-company-link-hover {
    opacity: 1;
  }
}
.top-company-item.swiper-slide-active .top-company-link {
  -webkit-transform: scale(1.09);
          transform: scale(1.09);
}
.top-company-logo {
  width: 140px;
  height: auto;
  -webkit-transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  margin: 0 0 6px;
}
.top .scroll-text {
  position: absolute;
  z-index: 3;
  top: 250px;
  right: var(--content-padding);
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.top .scroll-text .scroll-line {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  margin: 10px 0 0;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  width: 4px;
  height: 66px;
  overflow: hidden;
}
.top .scroll-text .scroll-line::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 50px;
  width: 6px;
  background: #0D112B;
  -webkit-animation: scrollLine 1.6s linear 0s normal infinite both;
          animation: scrollLine 1.6s linear 0s normal infinite both;
}
@-webkit-keyframes scrollLine {
  0% {
    top: -50px;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes scrollLine {
  0% {
    top: -50px;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .top {
    margin: 0 0 80px;
    padding: 50px 0 0;
    background: #FFF;
  }
  .top-title-wrap {
    position: relative;
    z-index: 3;
    width: var(--content-width--xxl);
  }
  .top-islands {
    position: absolute;
    top: 0;
    right: -25px;
    padding-left: 15vw;
  }
  .top-islands-image {
    position: relative;
    z-index: 2;
  }
  .top-about-button {
    width: 85px;
    height: 85px;
    font-size: 1.1rem;
  }
  .top-about-button-wrap {
    position: absolute;
    z-index: 3;
    top: auto;
    bottom: 10vw;
    right: auto;
    left: var(--content-padding);
  }
  .top-slogan {
    font-size: min(8vw, 3rem);
    letter-spacing: 0.2em;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .top-site-title {
    font-size: 1rem;
    margin: 0 0 20vw;
  }
  .top-hero-slide-image {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .top .loop-slider-item {
    width: 117px;
    height: 271px;
  }
  .top-company {
    bottom: -20px;
    /* &-item.swiper-slide-active {
    	width: 237px !important;
    } */
  }
  .top-company-list {
    padding: 10px 0 !important;
  }
  .top-company .swiper-wrapper {
    margin-bottom: 0;
  }
  .top-company-item {
    width: 124px !important;
    height: 52px !important;
    list-style: none;
    margin: 0;
    -webkit-transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .top-company-link {
    width: 124px !important;
    height: 52px !important;
    border-radius: 5px;
  }
  .top-company-link-hover {
    gap: 5px;
  }
  .top-company-item.swiper-slide-active .top-company-link {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  .top-company-logo {
    width: 80px;
    margin: -2px 0 3px;
  }
  .top-company-label {
    font-size: 1rem;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    white-space: nowrap;
    margin-bottom: -0.5em;
  }
  .top .scroll-text {
    top: auto;
    bottom: 300px;
    font-size: 1rem;
  }
  .top .scroll-text .scroll-line {
    margin: 8px 0 0;
    width: 2px;
    height: 45px;
  }
  .top .scroll-text .scroll-line::before {
    height: 35px;
    width: 4px;
  }
}

.home-section {
  margin: 0 0 200px;
  scroll-margin-top: 100px;
}
.home-section-heading {
  width: 58.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
.home-section-heading-en {
  font-size: 5.8rem;
  font-weight: normal;
  line-height: 1.1;
  color: #0F0F0F;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .home-section-heading-en {
  color: #FFF;
}

.home-section-heading-ja {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #0D112B;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .home-section-heading-ja {
  color: #FFF;
}

.home-section-heading-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--content-width--xl);
  margin: 0 auto 60px;
  padding: 0 0 30px;
}
.home-section-heading::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  border-left: 70px solid #0072BC;
  background: #C9C9C9;
}
.home-section-lead {
  width: 41.5%;
  margin: 0 0 0 auto;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #0D112B;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .home-section-lead {
  color: #FFF;
}

@media screen and (max-width: 1023px) {
  .home-section {
    margin: 0 0 100px;
    scroll-margin-top: 70px;
  }
  .home-section-heading {
    position: relative;
    padding: 0 0 10px;
    width: 100%;
  }
  .home-section-heading-en {
    font-size: 2.5rem;
  }
  .home-section-heading-ja {
    font-size: 1rem;
  }
  .home-section-heading-wrap {
    margin: 0 auto 30px;
    padding: 0;
  }
  .home-section-heading::after {
    border-left-width: 30px;
  }
  .home-section-lead {
    width: 100%;
    margin: 30px 0 0;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.article-list {
  width: var(--content-width--l);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 30px;
}
.article-card.is-disabled, .article-card.is-hidden {
  display: none;
}
.article-card .thumbnail {
  aspect-ratio: 480/295;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.article-card .thumbnail-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 20px;
}
.article-card-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 5px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .article-card-title {
  color: #FFF;
}

@media (hover: hover) {
  .article-card-link:where(:-moz-any-link, :enabled, summary):hover .thumbnail {
    transform: scale(1.1);
  }
  .article-card-link:where(:any-link, :enabled, summary):hover .thumbnail {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.article-card-link[href^="https://www.youtube.com/"] .thumbnail-wrap::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../../assets/images/icn_video.svg) center center no-repeat;
  background-size: 33px auto;
}
.article-card-date {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 15px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .article-card-date {
  color: #FFF;
}

.article-filter {
  width: var(--content-width--l);
  margin: 0 auto 90px;
}
.article-filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.article-filter-reset {
  margin: 0 0 25px;
}
.article-filter-reset-button {
  font-weight: normal;
  background: #0072BC;
  color: #FFF;
}
.article-filter-button {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.article-filter-button.is-active {
  background: #029CA3;
  color: #FFF;
}
@media screen and (max-width: 1023px) {
  .article-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
  .article-card-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  .article-filter {
    width: var(--content-width--xl);
    margin: 0 auto 40px;
  }
}

.pickup-heading-en {
  color: #0072BC;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .pickup-heading-en {
  color: #FFF;
}

.pickup-heading-ja {
  color: #0072BC;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .pickup-heading-ja {
  color: #FFF;
}

.pickup-heading::after {
  background: #A7D7F5;
}

.future {
  position: relative;
  width: var(--content-width--l);
  margin-right: auto;
  margin-left: auto;
}
.future-heading {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  color: #0072BC;
  font-size: 2.4rem;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.future-heading em {
  display: inline-block;
  position: relative;
  font-size: 8rem;
  letter-spacing: 0.2em;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.future-heading em .min-font {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 6rem;
  letter-spacing: 0;
  line-height: 1;
  height: 0.6em;
}
.future-heading em .min-font:first-of-type {
  position: absolute;
  top: -0.4em;
  left: -0.5em;
}
.future-heading em .min-font:last-of-type {
  position: absolute;
  bottom: -0.4em;
  right: -0.5em;
}
.is-in .future-heading em {
  color: #FFF;
}

.is-in .future-heading {
  color: #FFF;
}

.future-islands {
  position: relative;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -50px;
}
.future-islands-image {
  margin: 0 30px 0 0;
}
.future-slogan {
  width: 50%;
  margin-left: auto;
}
.future-slogan-en {
  position: absolute;
  left: 0;
  top: 250px;
  width: 100vw;
  font-size: 12rem;
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
  color: rgba(202, 219, 238, 0.38);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.future-slogan-en-inner {
  -webkit-animation: loop-slider 80s infinite linear 1s both;
          animation: loop-slider 80s infinite linear 1s both;
  padding-right: 1em;
}
.future-slogan-ja {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.3em;
  color: #0072BC;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .future-slogan-ja {
  color: #FFF;
}

.future-slogan-description {
  font-size: 1.8rem;
  color: #0072BC;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .future-slogan-description {
  color: #FFF;
}

@media screen and (max-width: 1023px) {
  .future {
    width: var(--content-width--xl);
    padding: 80px 0 0;
  }
  .future-heading {
    font-size: 1.1rem;
    top: 20px;
  }
  .future-heading em {
    font-size: 3.6rem;
  }
  .future-heading em .min-font {
    font-size: 2rem;
  }
  .future-heading em .min-font:first-of-type {
    top: -0.4em;
    left: -0.3em;
  }
  .future-heading em .min-font:last-of-type {
    bottom: -0.4em;
    right: -0.3em;
  }
  .future-islands {
    margin: 0 -5% 30px;
  }
  .future-islands-image {
    margin: 0;
  }
  .future-slogan {
    width: auto;
    margin-left: auto;
  }
  .future-slogan-en {
    display: none;
  }
  .future-slogan-ja {
    font-size: 1.8rem;
  }
  .future-slogan-description {
    font-size: 1.4rem;
  }
}

.more-button {
  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;
  gap: 0 30px;
  padding: 0 30px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5em;
  width: 340px;
  height: 65px;
  border-radius: 40px;
  background: #0072BC;
  color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0072BC;
  border: 1px solid #0072BC;
}
.more-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--content-width--l);
  margin: 115px auto 0;
}
.more-button:disabled {
  display: none;
}
@media (hover: hover) {
  .more-button:where(:-moz-any-link, :enabled, summary):hover {
    background: #FFF;
    color: #0072BC;
  }
  .more-button:where(:any-link, :enabled, summary):hover {
    background: #FFF;
    color: #0072BC;
  }
  .more-button:where(:-moz-any-link, :enabled, summary):hover .arrow-icon::before {
    background-color: #0072BC;
  }
  .more-button:where(:any-link, :enabled, summary):hover .arrow-icon::before {
    background-color: #0072BC;
  }
}
.more-button .arrow-icon {
  margin: 0;
  background-color: transparent;
  border: none;
}
.more-button .arrow-icon::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 1023px) {
  .more-button {
    -webkit-box-flex: 2;
        -ms-flex: 2 2 auto;
            flex: 2 2 auto;
    width: auto;
  }
  .more-button-wrap {
    width: var(--content-width--xl);
    margin: 60px auto 0;
  }
}

.recruit-info-list {
  width: var(--content-width--xl);
  gap: 15px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.recruit-info-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.recruit-info-link .thumbnail {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.recruit-info-link .thumbnail-wrap::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(123, 123, 123, 0.89);
  mix-blend-mode: multiply;
}
@media (hover: hover) {
  .recruit-info-link:where(:-moz-any-link, :enabled, summary):hover .thumbnail {
    transform: scale(1.1);
  }
  .recruit-info-link:where(:any-link, :enabled, summary):hover .thumbnail {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.recruit-info-company-name {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  color: #FFF;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .recruit-info-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-info-link {
    border-radius: 5px;
  }
  .recruit-info-company-name {
    font-size: 1.4rem;
  }
}

.is-in .contents::before {
  background: #0d112b;
}

.topic-path {
  position: relative;
  background: #000;
  margin-bottom: 100px;
}
.topic-path-list {
  padding: 15px 0;
  margin: 0 auto;
  width: var(--content-width--xxl);
  font-size: 1.1rem;
  line-height: 1.5;
}
.topic-path-item {
  display: inline;
  list-style: none;
  margin: 0;
  color: #FFF;
}
.topic-path-item:not(:first-child)::before {
  content: "/ ";
  padding: 0 0.5em;
}
.topic-path-link {
  text-decoration: none;
  color: #FFF !important;
}
@media (hover: hover) {
  .topic-path-link:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
  .topic-path-link:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1023px) {
  .topic-path {
    margin-bottom: 35px;
  }
}

.article-header {
  width: var(--content-width);
  margin: 0 auto;
}
.article-header-text {
  position: relative;
  margin: 0 0 50px;
}
.article-date {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 20px;
}
.article-title {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 20px;
}
.article .social-media {
  position: absolute;
  top: 100%;
  right: 107%;
}
.article .social-media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
}
.article .social-media-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: no-repeat 50% 50%;
  text-indent: 100%;
  overflow: hidden;
  width: 45px;
  white-space: nowrap;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
}
.article .social-media-link::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  height: 45px;
  width: 45px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.article .social-media-link[href^="https://twitter.com/"]::before {
  background-color: #000;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201200%201226.37%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20stroke-width%3A%200px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22m714.16%2C519.28L1160.89%2C0h-105.86l-387.89%2C450.89L357.33%2C0H0l468.49%2C681.82L0%2C1226.37h105.87l409.63-476.15%2C327.18%2C476.15h357.33l-485.86-707.09h.03Zm-145%2C168.54l-47.47-67.89L144.01%2C79.69h162.6l304.8%2C435.99%2C47.47%2C67.89%2C396.2%2C566.72h-162.6l-323.31-462.45v-.03Z%22%2F%3E%3C%2Fsvg%3E");
  background-size: auto 16px;
}
.article .social-media-link[href^="https://www.facebook.com/"]::before {
  background-color: #1578f2;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9Imljb25tb25zdHIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0IDI0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe2ZpbGw6I0ZGRkZGRjt9PC9zdHlsZT48cGF0aCBpZD0iZmFjZWJvb2stMSIgY2xhc3M9InN0MCIgZD0iTTksOEg2djRoM3YxMmg1VjEyaDMuNkwxOCw4aC00YzAsMCwwLTAuOSwwLTEuN2MwLTEsMC4yLTEuMywxLjEtMS4zQzE1LjksNSwxOCw1LDE4LDVWMGMwLDAtMy4yLDAtMy44LDBDMTAuNiwwLDksMS42LDksNC42QzksNy4zLDksOCw5LDh6Ii8+PC9zdmc+);
  background-size: auto 17px;
}
.article .social-media-link[href^="https://social-plugins.line.me/"]::before {
  background-color: #00b900;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IklDT04iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTA0LjMgOTkuNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTA0LjMgOTkuNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7fTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTEwNC4zLDQyLjNDMTA0LjMsMTksODAuOSwwLDUyLjIsMEMyMy40LDAsMCwxOSwwLDQyLjNjMCwyMC45LDE4LjYsMzguNSw0My42LDQxLjhjMS43LDAuNCw0LDEuMSw0LjYsMi42YzAuNSwxLjMsMC4zLDMuNCwwLjIsNC43YzAsMC0wLjYsMy43LTAuNyw0LjVjLTAuMiwxLjMtMSw1LjIsNC41LDIuOGM1LjYtMi4zLDMwLTE3LjcsNDEtMzAuM2gwQzEwMC43LDYwLjEsMTA0LjMsNTEuNywxMDQuMyw0Mi4zeiBNMzMuOCw1NC44YzAsMC42LTAuNSwxLTEsMUgxOC4xaDBjLTAuMywwLTAuNS0wLjEtMC43LTAuM2MwLDAsMCwwLDAsMGMwLDAsMCwwLDAsMGMtMC4yLTAuMi0wLjMtMC40LTAuMy0wLjd2MFYzMi4xYzAtMC42LDAuNS0xLDEtMWgzLjdjMC42LDAsMSwwLjUsMSwxdjE4LjFoOS45YzAuNiwwLDEsMC41LDEsMVY1NC44eiBNNDIuNiw1NC44YzAsMC42LTAuNSwxLTEsMWgtMy43Yy0wLjYsMC0xLTAuNS0xLTFWMzIuMWMwLTAuNiwwLjUtMSwxLTFoMy43YzAuNiwwLDEsMC41LDEsMVY1NC44eiBNNjcuOCw1NC44YzAsMC42LTAuNSwxLTEsMWgtMy43Yy0wLjEsMC0wLjIsMC0wLjMsMGMwLDAsMCwwLDAsMGMwLDAsMCwwLTAuMSwwYzAsMCwwLDAsMCwwYzAsMCwwLDAsMCwwYzAsMCwwLDAsMCwwYzAsMCwwLDAsMCwwYzAsMCwwLDAtMC4xLDBjMCwwLDAsMCwwLDBjLTAuMS0wLjEtMC4yLTAuMS0wLjMtMC4zTDUxLjgsNDEuM3YxMy41YzAsMC42LTAuNSwxLTEsMWgtMy43Yy0wLjYsMC0xLTAuNS0xLTFWMzIuMWMwLTAuNiwwLjUtMSwxLTFoMy43YzAsMCwwLDAsMCwwYzAsMCwwLDAsMC4xLDBjMCwwLDAsMCwwLjEsMGMwLDAsMCwwLDAsMGMwLDAsMCwwLDAuMSwwYzAsMCwwLDAsMCwwYzAsMCwwLDAsMC4xLDBjMCwwLDAsMCwwLDBjMCwwLDAsMCwwLjEsMGMwLDAsMCwwLDAsMGMwLDAsMCwwLDAuMSwwYzAsMCwwLDAsMCwwYzAsMCwwLDAsMC4xLDBjMCwwLDAsMCwwLDBjMCwwLDAsMCwwLjEsMGMwLDAsMCwwLDAsMGMwLDAsMCwwLDAuMSwwLjFjMCwwLDAsMCwwLDBjMCwwLDAuMSwwLjEsMC4xLDAuMWwxMC40LDE0LjFWMzIuMWMwLTAuNiwwLjUtMSwxLTFoMy43YzAuNiwwLDEsMC41LDEsMVY1NC44eiBNODgsMzUuN2MwLDAuNi0wLjUsMS0xLDFINzd2My44SDg3YzAuNiwwLDEsMC41LDEsMXYzLjdjMCwwLjYtMC41LDEtMSwxSDc3djMuOEg4N2MwLjYsMCwxLDAuNSwxLDF2My43YzAsMC42LTAuNSwxLTEsMUg3Mi4zaDBjLTAuMywwLTAuNS0wLjEtMC43LTAuM2MwLDAsMCwwLDAsMGMwLDAsMCwwLDAsMGMtMC4yLTAuMi0wLjMtMC40LTAuMy0wLjd2MFYzMi4xdjBjMC0wLjMsMC4xLTAuNSwwLjMtMC43YzAsMCwwLDAsMCwwYzAsMCwwLDAsMCwwYzAuMi0wLjIsMC40LTAuMywwLjctMC4zaDBIODdjMC42LDAsMSwwLjUsMSwxVjM1Ljd6Ii8+PC9zdmc+);
  background-size: auto 16px;
}
.article .social-media-link[href^="http://b.hatena.ne.jp/"]::before {
  background-color: #00a4de;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI3Mi44IDIyNy4zIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNzIuOCAyMjcuMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7fTwvc3R5bGU+PGc+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE2NC42LDEyMS43Yy05LjEtMTAuMS0yMS43LTE1LjgtMzcuOC0xN2MxNC40LTMuOSwyNC44LTkuNiwzMS40LTE3LjNzOS44LTE3LjgsOS44LTMwLjdjMC4yLTkuNS0yLjEtMTguOC02LjYtMjcuMWMtNC41LTcuOS0xMS4yLTE0LjMtMTkuMi0xOC42Yy03LjMtNC0xNi02LjktMjYuMi04LjZTODcuOSwwLDYyLjMsMEgwdjIyNy4yaDY0LjJjMjUuOCwwLDQ0LjQtMC45LDU1LjgtMi42YzExLjQtMS44LDIwLjktNC44LDI4LjYtOC45YzkuMy00LjgsMTYuOS0xMi4yLDIxLjktMjEuNGM1LjEtOS4yLDcuNy0xOS45LDcuNy0zMi4xQzE3OC4yLDE0NS4zLDE3My43LDEzMS44LDE2NC42LDEyMS43eiBNNTcuNiw1MC4zaDEzLjNjMTUuNCwwLDI1LjcsMS43LDMxLDUuMmM1LjMsMy41LDcuOSw5LjUsNy45LDE4cy0yLjksMTQtOC41LDE3LjRzLTE2LjEsNS0zMS40LDVINTcuNkw1Ny42LDUwLjNMNTcuNiw1MC4zeiBNMTEwLjQsMTgwLjZjLTYuMSwzLjctMTYuNSw1LjUtMzEuMSw1LjVINTcuNnYtNDkuNWgyMi42YzE1LDAsMjUuNCwxLjksMzAuOSw1LjdzOC40LDEwLjQsOC40LDIwcy0zLDE0LjctOS4yLDE4LjRMMTEwLjQsMTgwLjZ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTI0NCwxNjkuN2MtMTUuOSwwLTI4LjgsMTIuOS0yOC44LDI4LjhzMTIuOSwyOC44LDI4LjgsMjguOGMxNS45LDAsMjguOC0xMi45LDI4LjgtMjguOGMwLDAsMCwwLDAsMEMyNzIuOCwxODIuNiwyNTkuOSwxNjkuNywyNDQsMTY5Ljd6Ii8+PHJlY3QgeD0iMjE5IiBjbGFzcz0ic3QwIiB3aWR0aD0iNTAiIGhlaWdodD0iMTUxLjUiLz48L2c+PC9zdmc+);
  background-size: auto 13px;
}
.article .social-media-link[href^="https://getpocket.com/"]::before {
  background-color: #ef3f56;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTA2LjkgOTUuMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTA2LjkgOTUuMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGRkZGRkY7fTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTk3LDBIMTAuM0M0LjcsMCwwLDQuMywwLDkuOVY0MmMwLDI5LjEsMjQsNTMuMyw1My43LDUzLjNjMjkuNSwwLDUzLjMtMjQuMiw1My4zLTUzLjNWOS45QzEwNi45LDQuMywxMDIuNCwwLDk3LDB6IE04NC4xLDM5LjhsLTI1LjUsMjRjLTEuMywxLjUtMy40LDIuMS00LjksMi4xYy0xLjksMC0zLjgtMC42LTUuMy0yLjFsLTI1LjEtMjRjLTIuNi0yLjgtMy03LjUsMC0xMC41YzIuOC0yLjYsNy41LTMsMTAuMywwbDIwLjEsMTkuM2wyMC41LTE5LjNjMi42LTMsNy4zLTIuNiw5LjksMEM4Ni43LDMyLjMsODYuNywzNyw4NC4xLDM5Ljh6Ii8+PC9zdmc+);
  background-size: auto 13px;
}
.article-hero {
  margin: 0 0 80px;
  overflow: hidden;
}
.article-hero-image {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.article .play-video-button-label {
  position: absolute;
  left: 100%;
}
.article .play-video-button::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #0D112B;
  opacity: 0.1;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.article .play-video-button .play-video-icon {
  position: absolute;
  z-index: 3;
  inset: 0;
  margin: auto;
  width: 115px;
  height: 115px;
  background: no-repeat 50% 50%;
  background-size: 100% auto;
  background-image: url(../images/icn_play-video.svg);
  background-color: rgba(13, 17, 43, 0.3);
  border-radius: 50%;
}
@media (hover: hover) {
  .article .play-video-button:where(:-moz-any-link, :enabled, summary):hover::before {
    opacity: 0;
  }
  .article .play-video-button:where(:any-link, :enabled, summary):hover::before {
    opacity: 0;
  }
  .article .play-video-button:where(:-moz-any-link, :enabled, summary):hover img {
    transform: scale(1.1);
  }
  .article .play-video-button:where(:any-link, :enabled, summary):hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.article-introduction {
  position: relative;
  width: var(--content-width);
  margin: 0 auto 80px;
}
.article-introduction .image {
  margin: 50px 0;
}
@media screen and (max-width: 1023px) {
  .article-header {
    position: relative;
    width: var(--content-width--xl);
  }
  .article-header-text {
    position: static;
    margin: 0 0 30px;
  }
  .article-title {
    font-size: 2.6rem;
    margin: 0 0 20px;
  }
  .article .social-media {
    position: absolute;
    top: 100%;
    right: var(--neg-margin--xxl);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .article .social-media-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
  }
  .article-hero {
    margin: 0 var(--neg-margin--xxl) 80px;
  }
  .article .play-video-button .play-video-icon {
    width: 90px;
    height: 90px;
  }
  .article-introduction {
    width: var(--content-width--xl);
    margin-bottom: 50px;
  }
  .article-introduction .image {
    margin: 30px var(--neg-margin--xxl);
  }
}
.article-index {
  width: var(--content-width);
  margin: 0 auto 50px;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
  border-radius: 20px;
}
.article-index-heading {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 1px solid #D9D9D9;
}
.article-index-list {
  position: relative;
  display: flow-root;
  margin: 0;
}
.article-index-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 25px;
  list-style: none;
  margin: 0;
}
.article-index-item::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  color: #0072BC;
  width: 20px;
  height: 20px;
  -webkit-transform: scale(1, 0.6) rotate(45deg);
          transform: scale(1, 0.6) rotate(45deg);
}
.article-index-item::after {
  content: "";
  position: absolute;
  top: 2em;
  left: 15px;
  bottom: 0.3em;
  border-left: 1px solid;
  color: #0072BC;
}
.article-index-link {
  margin: 0 0 30px;
}
@media (hover: hover) {
  .article-index-link:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
  .article-index-link:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1023px) {
  .article-index {
    width: var(--content-width--xl);
    margin: 0 auto 45px;
    padding: 30px 15px;
    border-radius: 10px;
  }
  .article-index-heading {
    font-size: 1.8rem;
    padding: 0 0 10px;
  }
}
.article-body {
  width: var(--content-width);
  margin: 0 auto 100px;
}
.article-body h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  color: #0072BC;
  margin: 150px 0 50px;
}
.article-body .image {
  margin: 50px 0;
}
.article-body .image.breaking-out--bg {
  padding-block: 70px;
  background: #EAF3FD;
}
.article-body .diagram {
  margin-block: 120px;
}
@media screen and (max-width: 1023px) {
  .article-body .diagram {
    margin-block: 80px;
  }
}
.article-body .dialogue {
  position: relative;
  margin: 100px 0;
  padding: 0 100px;
}
.article-body .dialogue::before, .article-body .dialogue::after {
  position: absolute;
  font-size: 26rem;
  line-height: 1;
  color: #D4E7FE;
}
.article-body .dialogue::before {
  content: "“";
  top: -0.2em;
  left: -0.1em;
}
.article-body .dialogue::after {
  content: "”";
  bottom: -0.7em;
  right: -0.1em;
}
@media screen and (max-width: 1023px) {
  .article-body {
    width: var(--content-width--xl);
    margin: 0 auto 80px;
  }
  .article-body h2 {
    font-size: 2.6rem;
    margin: 80px 0 30px;
  }
  .article-body .image {
    margin: 30px var(--neg-margin--xxl);
  }
  .article-body .dialogue {
    margin: 80px 0;
    padding: 0 15px;
  }
  .article-body .dialogue::before, .article-body .dialogue::after {
    font-size: 17rem;
  }
  .article-body .dialogue::before {
    top: -0.4em;
    left: -0.1em;
  }
  .article-body .dialogue::after {
    bottom: -0.9em;
    right: -0.1em;
  }
}
.article .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin: 0 0 100px;
}
.article .profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  background: #EAF3FD;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
}
.article .profile-image-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 150px;
  margin: 0 0 20px;
}
.article .profile-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 18px;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 0 10px;
}
.article .profile-item:first-child:not(:last-child) .profile-name::before, .article .profile-item:nth-child(n+1) .profile-name::before {
  content: "";
  position: relative;
  top: 0.2em;
  display: block;
  width: 6px;
  height: 1.1em;
  border-radius: 3px;
  background: #00BB95;
}
.article .profile-item:nth-child(2) .profile-name::before {
  background: #F36970;
}
.article .profile-item:nth-child(3) .profile-name::before {
  background: #FFAF45;
}
.article .profile-item:nth-child(4) .profile-name::before {
  background: #69D7F3;
}
.article .profile-description {
  margin: 0 0 20px;
}
.article .profile-detail {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .article .profile {
    gap: 16px;
    margin: 0 0 80px;
  }
  .article .profile-item {
    -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 40px;
    padding: 30px 25px;
    border-radius: 10px;
  }
  .article .profile-image-wrap {
    width: 110px;
  }
  .article .profile-name {
    gap: 10px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.article-recruit-info {
  background: #E2F0FF;
  padding: 70px 0;
}
.article-recruit-info-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: var(--content-width--xl);
  margin: 0 auto 60px;
  padding: 0 0 30px;
  text-align: center;
}
.article-recruit-info-heading-en {
  font-size: 3.8rem;
  font-weight: normal;
  line-height: 1.1;
  color: #0F0F0F;
}
.article-recruit-info-heading-ja {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #0D112B;
}
.article-recruit-info-heading::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  border-left: 70px solid #0072BC;
  background: #C9C9C9;
}
.article-recruit-info-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px 0 60px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5em;
  width: 680px;
  height: 100px;
  border-radius: 50px;
  background: #0072BC;
  color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0072BC;
  border: 1px solid #0072BC;
}
@media (hover: hover) {
  .article-recruit-info-button:where(:-moz-any-link, :enabled, summary):hover {
    background: #FFF;
    color: #0072BC;
  }
  .article-recruit-info-button:where(:any-link, :enabled, summary):hover {
    background: #FFF;
    color: #0072BC;
  }
  .article-recruit-info-button:where(:-moz-any-link, :enabled, summary):hover .arrow-icon::before {
    background-color: #0072BC;
  }
  .article-recruit-info-button:where(:any-link, :enabled, summary):hover .arrow-icon::before {
    background-color: #0072BC;
  }
}
.article-recruit-info-button .arrow-icon {
  margin: 0 8px 0 auto;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 1023px) {
  .article-recruit-info-button {
    padding: 0 0 0 10px;
    font-size: 1.1rem;
    width: 90px;
    height: 33px;
  }
  .article-recruit-info-button-wrap {
    margin: 0 10px 0 auto;
  }
  .article-recruit-info-button .arrow-icon {
    margin: 0 3px 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .article-recruit-info {
    padding: 60px 0;
  }
  .article-recruit-info-heading {
    margin: 0 auto 50px;
    padding: 0 0 30px;
    text-align: center;
  }
  .article-recruit-info-heading-en {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.1;
    color: #0F0F0F;
  }
  .article-recruit-info-heading-ja {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #0D112B;
  }
  .article-recruit-info-heading::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    border-left: 70px solid #0072BC;
    background: #C9C9C9;
  }
  .article-recruit-info-button {
    padding: 0 30px 0 60px;
    font-size: 1.6rem;
    width: 100%;
    height: 65px;
  }
  .article-recruit-info-button-wrap {
    width: var(--content-width--xl);
    margin: 0 auto;
  }
  .article-recruit-info-button .arrow-icon {
    margin: 0 8px 0 auto;
    background-color: transparent;
    border: none;
  }
}

.discussion {
  counter-reset: discussion;
}
.discussion-heading {
  counter-increment: discussion;
}
.discussion-heading::before {
  content: counter(discussion, decimal-leading-zero);
  display: block;
  color: #DEF2FF;
  font-size: 10.3rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Arial", sans-serif;
}
.discussion-sub-heading {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: -40px;
}
.discussion-child-heading {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0072BC;
  margin: 150px 0 50px;
}
@media screen and (max-width: 1023px) {
  .discussion-heading::before {
    font-size: 8rem;
  }
  .discussion-sub-heading {
    font-size: 1.8rem;
    margin-top: -20px;
  }
  .discussion-child-heading {
    font-size: 2.6rem;
    margin: 80px 0 30px;
  }
}
.discussion .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 100px;
  gap: 48px;
}
.discussion .profile-item {
  padding: 60px;
  background: #EAF3FD;
  border-radius: 20px;
}
.discussion .profile-item:first-child:nth-last-child(2), .discussion .profile-item:last-child:nth-child(2) {
  -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;
}
.discussion .profile-item:last-child:nth-child(2) {
  background: #FDEAEB;
}
.discussion .profile-image {
  border-radius: 50%;
}
.discussion .profile-image-wrap {
  border-radius: 20px;
}
.discussion .profile-name::before {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .discussion .profile {
    padding: 0;
    border-radius: 0;
    margin: 80px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .discussion .profile-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    padding: 30px 25px;
    border-radius: 10px;
  }
}

.en-jp-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 !important;
}
.en-jp-heading-en {
  font-size: 5.8rem;
  font-weight: normal;
  line-height: 1.1;
  color: #0072BC;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .en-jp-heading-en {
  color: #FFF;
}

.en-jp-heading-ja {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #0072BC;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.is-in .en-jp-heading-ja {
  color: #FFF;
}

.en-jp-heading-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  margin: 0 var(--neg-margin--xl) 60px;
  padding: 0 0 30px;
}
.en-jp-heading::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  border-left: 70px solid #0072BC;
  background: #C9C9C9;
}
@media screen and (max-width: 1023px) {
  .en-jp-heading {
    padding: 0 0 10px;
  }
  .en-jp-heading-en {
    font-size: 2.5rem;
  }
  .en-jp-heading-ja {
    font-size: 1rem;
  }
  .en-jp-heading-wrap {
    margin: 0 0 30px;
    padding: 0;
  }
  .en-jp-heading::after {
    border-left-width: 30px;
  }
}

.story {
  margin-block: 120px;
}
.story-heading {
  counter-increment: story;
}
.story-heading::before {
  content: "Story " counter(story, decimal-leading-zero);
  display: block;
  color: #FFF;
  background: #0072BC;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Arial", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4em 2em;
  border-radius: 0 2em 2em 0;
  margin: 0 0 30px;
}
@media screen and (max-width: 1023px) {
  .story {
    margin-block: 80px;
  }
  .story-heading::before {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.caption-profile {
  position: absolute;
  inset: auto 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  padding: 38px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
  width: max(48%, 400px);
}
.caption-profile-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 24px;
}
.caption-profile-name {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 10px;
}
.caption-profile::before {
  content: "";
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  top: 0.2em;
  display: block;
  width: 6px;
  border-radius: 3px;
}
.image:has(.caption-profile):nth-of-type(even) .caption-profile {
  inset: auto auto 0 0;
}
.image:has(.caption-profile):nth-of-type(1) .caption-profile::before {
  background: #00BB95;
}
.image:has(.caption-profile):nth-of-type(2) .caption-profile::before {
  background: #F36970;
}
.image:has(.caption-profile):nth-of-type(3) .caption-profile::before {
  background: #FFAF45;
}
.image:has(.caption-profile):nth-of-type(4) .caption-profile::before {
  background: #69D7F3;
}
.caption-profile-joining-year {
  margin: 0;
}
.caption-profile-description {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .caption-profile {
    position: relative;
    inset: 0;
    padding: 20px;
    width: 100%;
  }
  .caption-profile-inner {
    gap: 0 10px;
  }
  .caption-profile-name {
    font-size: 2rem;
    margin: 0 0 5px;
  }
}

.chat-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  margin: 0 0 90px;
}
.chat-box--right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.chat-box-speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 138px;
  text-align: center;
  font-weight: bold;
}
.chat-box-image {
  width: 100%;
  border-radius: 50%;
}
.chat-box p:last-child {
  position: relative;
  padding: 0 0 50px;
  margin-bottom: 0;
}
.chat-box p:last-child::after {
  position: absolute;
  inset: auto 0 0;
  content: "";
  color: #BFDDFF;
  border-left: 1px solid;
  border-bottom: 1px solid;
  height: 53px;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.chat-box--right p:last-child::after {
  border-left: none;
  border-right: 1px solid;
  border-bottom: 1px solid;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
@media screen and (max-width: 1023px) {
  .chat-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
    margin: 0 0 30px;
  }
  .chat-box-speaker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 10px;
  }
  .chat-box-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50px;
  }
  .chat-box p:last-child {
    padding-bottom: 0;
  }
  .chat-box p:last-child::after {
    display: none;
  }
}

.chart {
  width: calc((100% - 100px) / 3);
}
.chart-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 18px;
  font-size: 2.4rem;
  margin: 80px 0 50px;
}
.chart-heading::before {
  content: "";
  position: relative;
  top: 0.2em;
  width: 6px;
  height: 1.2em;
  border-radius: 3px;
  background: #0072BC;
}
.chart-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 50px;
  margin: 0 var(--neg-margin--xl) 50px;
}
.chart-wrap--wid-auto {
  margin-inline: 0;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}
.chart-wrap--wid-auto .chart {
  width: auto;
}
.chart figcaption {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 1023px) {
  .chart {
    width: auto;
  }
  .chart-heading {
    font-size: 2.2rem;
    margin: 50px 0 30px;
  }
  .chart-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px 0;
    margin: 0 var(--neg-margin--xxl);
  }
  .chart figcaption {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
}

.comment-box {
  position: relative;
  background: #E2FAFF;
  padding: 60px 94px;
  border-radius: 20px;
  margin: 100px 0;
}
.comment-box-heading {
  position: relative;
  z-index: 2;
  font-size: 2.6rem;
  font-weight: bold;
  color: #0072BC;
  margin: 0 0 30px;
}
.comment-box :last-child {
  margin-bottom: 0;
}
.comment-box::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  inset: 100% 0 0;
  margin: 0 auto;
  height: 60px;
  width: 100px;
  background: #E2FAFF;
  z-index: -1;
  clip-path: polygon(25% 0, 0 100%, 100% 0);
}
.comment-box::after {
  content: "”";
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 22rem;
  line-height: 1;
  color: #FFF;
}
@media screen and (max-width: 1023px) {
  .comment-box {
    padding: 65px 25px 30px;
    border-radius: 10px;
    margin: 50px var(--neg-margin--xxl);
  }
  .comment-box-heading {
    font-size: 2rem;
    margin: 0 0 20px;
  }
  .comment-box::before {
    height: 30px;
    width: 50px;
  }
  .comment-box::after {
    right: 10px;
    font-size: 17rem;
  }
}

.review {
  border: 1px solid #BCBCBC;
  padding: 50px;
  margin: 100px 0;
}
.review-heading {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.review p {
  margin: 0 0 10px;
}
.review :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .review {
    border: none;
    padding: 0;
    margin: 80px 0;
  }
  .review-heading {
    font-size: 2.4rem;
    text-align: left;
  }
}

.bottom-social-media {
  width: var(--content-width--xl);
  margin: 150px auto;
}
.bottom-social-media .social-media {
  position: relative;
  right: auto;
  top: auto;
  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: 26px 10px;
}
.bottom-social-media .social-media-item {
  width: min(25vw, 354px);
  height: auto;
}
.bottom-social-media .social-media-link {
  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;
  gap: 20px;
  background-color: #FFF;
  width: 100%;
  height: 72px;
  border-radius: 50px;
  text-indent: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.bottom-social-media .social-media-link::before {
  height: 25px;
  width: 25px;
  background-size: 25px auto !important;
  background-color: transparent !important;
}
.bottom-social-media .social-media-link[href^="https://twitter.com/"]::before {
  background-image: url(../../assets/images/icn_x.svg);
}
.bottom-social-media .social-media-link[href^="https://www.facebook.com/"]::before {
  background-image: url(../../assets/images/icn_fb.svg);
}
.bottom-social-media .social-media-link[href^="https://social-plugins.line.me/"]::before {
  background-image: url(../../assets/images/icn_line.svg);
}
.bottom-social-media .social-media-link[href^="http://b.hatena.ne.jp/"]::before {
  background-image: url(../../assets/images/icn_hatena.svg);
}
.bottom-social-media .social-media-link[href^="https://getpocket.com/"]::before {
  background-image: url(../../assets/images/icn_pocket.svg);
}
@media screen and (max-width: 1023px) {
  .bottom-social-media {
    width: var(--content-width--xl);
    margin: 80px auto;
  }
  .bottom-social-media .social-media {
    gap: 26px 10px;
  }
  .bottom-social-media .social-media-item {
    width: 100%;
  }
  .bottom-social-media .social-media-link {
    gap: 20px;
    font-size: 1.6rem;
    font-weight: bold;
  }
}

.index-button {
  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;
  gap: 20px;
  height: 110px;
  background: #FFF;
  border: 1px solid #D9D9D9;
  font-size: 1.6rem;
  font-weight: bold;
}
.index-button-wrap {
  margin: 100px auto;
  width: var(--content-width);
}
.index-button .index-icon {
  display: block;
  width: 14px;
  height: 14px;
  background-color: #E4ECF8;
  -webkit-mask-image: url(../../assets/images/icn_index.svg);
          mask-image: url(../../assets/images/icn_index.svg);
  -webkit-mask-size: 14px auto;
          mask-size: 14px auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 1023px) {
  .index-button {
    height: 75px;
    font-size: 1.6rem;
  }
  .index-button-wrap {
    margin: 60px auto 100px;
    width: var(--content-width--xl);
  }
}