.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:flex;height:2em;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
@charset "UTF-8";
/**
 * Micromodal スタイル
 *
 * このファイルはMicromodalの基本スタイルを提供します。
 * プロジェクトに応じてカスタマイズしてください。
 */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.modal__container {
  max-width: 500px;
  max-height: 100vh;
  padding: 30px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.modal__close::before {
  content: "✕";
  font-size: 1.5rem;
}

.modal__content {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__footer {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.modal__btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: #e6e6e6;
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.modal__btn:hover {
  background-color: #d4d4d4;
}
.modal__btn-primary {
  color: #fff;
  background-color: #00449e;
}
.modal__btn-primary:hover {
  background-color: #00337a;
}

.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide .modal__overlay {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.micromodal-slide.is-open .modal__overlay {
  opacity: 1;
}
.micromodal-slide .modal__container {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.micromodal-slide.is-open .modal__container {
  opacity: 1;
  transform: translateY(0);
}
@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #0c415a;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
body * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  overflow-wrap: break-word;
}

form * input,
form * textarea,
form * select,
form * button {
  -webkit-appearance: auto;
}

a {
  color: #0c415a;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

b,
strong {
  font-weight: 600;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.l-header {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1.9375rem 0 0.25rem;
  background-color: #0c415a;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-header-main {
    flex-direction: row;
    padding: 0.6875rem 0.9375rem 0.75rem;
  }
}
.l-header-main__left, .l-header-main__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-header-main__left {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-header-main__right {
    display: none;
  }
}
.l-header-main__menuButton {
  display: block;
  width: 2.3125rem;
  height: auto;
  aspect-ratio: 37 / 49;
  height: auto;
  padding: 0;
  margin: 0;
  background-image: url("../images/common/icon_menu.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header-main__menuButton {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-header-main__menuButton:hover {
    opacity: 0.6;
  }
}
.l-header-main__menuButton span {
  display: block;
}
.l-header-main__logo {
  display: block;
  width: 2.4375rem;
  margin: 2.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-main__logo {
    width: 14.6875rem;
    margin: 0.1875rem 0 0;
  }
}
.l-header-main__logo a,
.l-header-main__logo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header-main__logo a {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-header-main__logo a:hover {
    opacity: 0.6;
  }
}
.l-header-main__copyright {
  display: block;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin: 0;
  writing-mode: vertical-lr;
}
.l-header-main__sns {
  display: block;
  width: 100%;
  margin: 0.9375rem 0 0;
  padding: 0;
}
.l-header-main__snsItem {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  height: auto;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .l-header-main__snsItem {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-header-main__snsItem:hover {
    opacity: 0.6;
  }
}
.l-header-main__snsItem {
  color: #ffffff;
}
.l-header-main__snsItem--instagram {
  background-image: url("../images/common/icon_instagram_white.svg");
  background-size: 2.25rem auto;
}
.l-header-navigation {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-color: #0c415a;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .l-header-navigation {
    top: 4.4375rem;
    left: 0;
    height: calc(100% - 4.4375rem);
    padding-bottom: 2.5rem;
  }
}
.l-header-navigation.js-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header-navigation.js-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header-navigation__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  padding: 1.25rem 0.9375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-header-navigation__inner {
    padding: 1.25rem 0.9375rem;
  }
}
.l-header-navigation__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 23.5rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header-navigation__menu {
    width: 100%;
  }
}
.l-header-navigation__menuList {
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header-navigation__menuItem {
  display: block;
  width: 100%;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 0.875rem;
  line-height: 1.8461538462;
  letter-spacing: -0.004em;
  text-align: center;
}
.l-header-navigation__menuItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .l-header-navigation__menuItem a {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-header-navigation__menuItem a:hover {
    opacity: 0.6;
  }
}
.l-header-navigation__button {
  display: block;
  width: 100%;
  margin: 2.375rem 0 0;
}
.l-header-navigation__buttonItem {
  display: block;
  max-width: 13.125rem;
  margin: 0 auto;
}

.l-footer__inner {
  display: block;
  margin: 9.25rem auto 0;
  padding: 13.875rem 1.25rem 6.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    margin-top: 5rem;
    padding: 7.5rem 1.25rem 3.125rem;
  }
}
.l-footer__inner::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 10rem;
  border-left: 0.03125rem solid #0c415a;
  position: absolute;
  top: 0;
  left: calc(50% + 0.015625rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-footer__inner::before {
    height: 5rem;
  }
}
.l-footer__logo {
  display: block;
  width: 11.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 8.75rem;
  }
}
.l-footer__logo a,
.l-footer__logo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__logo a {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo a:hover {
    opacity: 0.6;
  }
}

.l-aside-left {
  display: block;
  width: 5.625rem;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 85;
}
@media screen and (max-width: 767px) {
  .l-aside-left {
    width: 100%;
    height: auto;
  }
}
.l-aside-left__inner {
  display: block;
  width: 100%;
  height: 100%;
}

.l-aside-right {
  display: block;
  color: #ffffff;
  background-color: #0c415a;
}
@media screen and (min-width: 768px) {
  .l-aside-right {
    width: calc(100% - 5.625rem - 23.4375rem);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 75;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-right {
    width: 100%;
  }
}
.l-aside-right__video {
  display: block;
  width: 100%;
  height: calc(100svh - 10.6875rem);
}
@media screen and (max-width: 767px) {
  .l-aside-right__video {
    height: auto;
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
.l-aside-right__video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-aside-right__slider {
  display: block;
  width: 100%;
  height: 100%;
}
.l-aside-right__slider .splide__track,
.l-aside-right__slider .splide__list,
.l-aside-right__slider .splide__slide {
  height: 100%;
}
.l-aside-right__slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-aside-right__slider .splide__pagination {
  bottom: 0.75rem;
}
.l-aside-right__topics {
  display: block;
  padding: 0.875rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .l-aside-right__topics {
    padding: 0.9375rem 1.25rem 1.5625rem;
  }
}
.l-aside-right__topicsTitle {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-aside-right__topicsTitle {
    font-size: 1.625rem;
  }
}
.l-aside-right__topicsList {
  display: block;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .l-aside-right__topicsList {
    margin-top: 1rem;
  }
}
.l-aside-right__topicsItem {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .l-aside-right__topicsItem {
    margin-top: 0.875rem;
  }
}
.l-aside-right__topicsItem a {
  display: flex;
  align-items: center;
  gap: 0 0.8125rem;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-aside-right__topicsItem a {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-aside-right__topicsItem a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-right__topicsItem a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem 0;
  }
}
.l-aside-right__topicsItemTime {
  display: block;
  min-width: 6.4375rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: #0c415a;
  background-color: #ffffff;
  text-align: center;
  padding: 0.0625rem 0.75rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .l-aside-right__topicsItemTime {
    min-width: 4.75rem;
    font-size: 0.75rem;
    padding: 0.0625rem 0.25rem 0.1875rem;
    opacity: 0.9;
  }
}
.l-aside-right__topicsItemTitle {
  width: calc(100% - 6.4375rem);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .l-aside-right__topicsItemTitle {
    width: 100%;
  }
}

.l-wrapper {
  display: block;
  width: 100%;
  padding-left: 5.625rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-top: 4.4375rem;
    padding-left: 0;
  }
}
.l-wrapper.js-loading::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
}
.l-wrapper.js-loading.is-show {
  opacity: 1;
  visibility: visible;
}
.l-wrapper.js-loading.is-show::after {
  animation: show_loading 0s ease-in-out forwards;
  animation-delay: 0.4s;
  transition: 0s ease-in-out;
}

.l-aside-center {
  display: block;
  width: 23.4375rem;
  position: relative;
  z-index: 80;
}
.l-main__inner > :first-child {
  margin-top: 0;
}
.l-main__inner > :last-child {
  margin-bottom: 0;
}

@keyframes show_loading {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.l-headline-01 {
  display: block;
  width: 100%;
  padding: 3.3125rem 0 0;
  position: relative;
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01 {
    padding: 2.5rem 0 0;
    margin-bottom: 2.5rem;
  }
}
.l-headline-01__head {
  display: block;
  width: 100%;
  padding: 0 1.25rem 11.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-headline-01__head {
    padding: 0 1.25rem 8.75rem;
  }
}
.l-headline-01__logo {
  display: block;
  width: 11.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-headline-01__logo {
    width: 8.75rem;
  }
}
.l-headline-01__logo a,
.l-headline-01__logo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-headline-01__logo a {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-headline-01__logo a:hover {
    opacity: 0.6;
  }
}
.l-headline-01__sitename {
  font-size: 1.5rem;
  line-height: 1.4583333333;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-headline-01__sitename {
    font-size: 1.375rem;
  }
}
.l-headline-01__title {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.85;
  display: inline;
  color: #ffffff;
  background-color: #0c415a;
  padding: 0 1.25rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .l-headline-01__title {
    font-size: 1.375rem;
    line-height: 1.9545454545;
  }
}
.l-headline-01__label {
  display: block;
  font-weight: 500;
  font-size: 5.125rem;
  line-height: 1;
  text-align: right;
  writing-mode: sideways-lr;
  white-space: nowrap;
  opacity: 0.07;
  position: absolute;
  top: 19.1875rem;
  right: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01__label {
    font-size: 4.25rem;
    top: auto;
    bottom: -1.25rem;
  }
}
.l-headline-01--noborder .l-headline-01__head {
  padding-bottom: 0;
}
.l-headline-01--noborder .l-headline-01__head::before {
  display: none;
}
.l-wpblock-news h2 {
  font-size: 1.75rem;
  line-height: 1.55;
  font-weight: 600;
  margin: 3.75rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5625rem;
  }
}
.l-wpblock-news h3 {
  font-size: 1.5rem;
  line-height: 1.55;
  font-weight: 600;
  margin: 3.125rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news h3 {
    font-size: 1.375rem;
    margin: 1.875rem 0 1.25rem;
  }
}
.l-wpblock-news h4,
.l-wpblock-news h5,
.l-wpblock-news h6 {
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 600;
  margin: 2.5rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news h4,
  .l-wpblock-news h5,
  .l-wpblock-news h6 {
    font-size: 1.125rem;
    margin: 1.5625rem 0 1.25rem;
  }
}
.l-wpblock-news p {
  font-size: 1rem;
  margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news p {
    font-size: 0.875rem;
    margin: 0.875rem 0;
  }
}
.l-wpblock-news ul,
.l-wpblock-news ol {
  margin: 1rem 0;
  padding: 0 0 0 1.4em;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news ul,
  .l-wpblock-news ol {
    margin: 0.875rem 0;
  }
}
.l-wpblock-news ul li,
.l-wpblock-news ol li {
  font-size: 1rem;
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news ul li,
  .l-wpblock-news ol li {
    font-size: 0.875rem;
    margin: 0.375rem 0;
  }
}
.l-wpblock-news .wp-block-image {
  margin: 2.1875rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news .wp-block-image {
    margin: 1.875rem 0;
  }
}
.l-wpblock-news .wp-block-table {
  width: 100%;
  margin: 2.1875rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news .wp-block-table {
    margin: 1.875rem 0;
    overflow: auto;
    padding-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-wpblock-news .wp-block-table::after {
    content: "※横にスクロールできます";
    display: block;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    opacity: 0.6;
  }
}
.l-wpblock-news .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news .wp-block-table table {
    min-width: 50rem;
  }
}
.l-wpblock-news .wp-block-table table th,
.l-wpblock-news .wp-block-table table td {
  font-size: 1rem;
  border: 1px solid #868686;
  padding: 0.875rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-wpblock-news .wp-block-table table th,
  .l-wpblock-news .wp-block-table table td {
    font-size: 0.875rem;
    padding: 0.75rem 0.625rem;
  }
}
.l-wpblock-news .wp-block-table table th {
  text-align: left;
  font-weight: 600;
  background-color: #f5f5f5;
}

.l-wpform-01__table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.l-wpform-01__table th,
.l-wpform-01__table td {
  display: block;
  width: 100%;
  font-size: 0.9375rem;
  text-align: left;
}
.l-wpform-01__table th {
  font-weight: 500;
  padding: 1.9375rem 0 0.0625rem;
}
@media screen and (max-width: 767px) {
  .l-wpform-01__table th {
    padding: 1.25rem 0 0.0625rem;
  }
}
.l-wpform-01__label--require::after {
  content: "*";
  display: inline-block;
}
.l-wpform-01 input,
.l-wpform-01 textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4285714286;
  letter-spacing: -0.004em;
  color: #0c415a;
  background-color: #dbdbe3;
  border-radius: 0.375rem;
  border: none;
  resize: none;
  padding: 0.5625rem 0.75rem;
}
.l-wpform-01 label {
  font-size: 1rem;
  line-height: 1.4285714286;
  letter-spacing: -0.004em;
}
.l-wpform-01 .cf7_submit {
  display: block;
  width: 100%;
  max-width: 15.9375rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  color: #ffffff;
  background-color: #0c415a;
  text-align: center;
  border-radius: 2.1875rem;
  padding: 1.375rem 0.625rem 1.4375rem;
  margin: 4.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .l-wpform-01 .cf7_submit {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-wpform-01 .cf7_submit:hover {
    opacity: 0.6;
  }
}
.l-wpform-01 .cf7_submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.l-wpform-01 .wpcf7-form-control-wrap {
  display: block;
}
.l-wpform-01 .wpcf7-list-item {
  margin: 0;
}
.l-wpform-01 .wpcf7-spinner {
  width: 100%;
  height: 0;
  padding: 0;
  margin: 0;
  background: none;
}
.l-wpform-01 .wpcf7-spinner::before {
  display: none;
}
.l-wpform-01 .wpcf7-spinner::after {
  content: "送信処理中です... そのまましばらくお待ちください。";
  display: block;
  width: 100%;
  font-size: 0.875rem;
  opacity: 0.75;
  text-align: center;
  margin: 0.8125rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-wpform-01 .wpcf7-spinner::after {
    font-size: 0.8125rem;
  }
}
.l-wpform-01 .wpcf7-response-output {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 1.125rem 0 0 !important;
  padding: 0.75rem !important;
}
.l-wpform-01 .wpcf7 form.invalid .wpcf7-response-output,
.l-wpform-01 .wpcf7 form.unaccepted .wpcf7-response-output,
.l-wpform-01 .wpcf7 form.payment-required .wpcf7-response-output,
.l-wpform-01 .wpcf7 form.sent .wpcf7-response-output,
.l-wpform-01 .wpcf7-response-output {
  border: none !important;
}
.l-wpform-01 .wpcf7-not-valid-tip {
  display: block;
  color: #ff0000;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0.375rem 0 0;
}
.l-wpform-01 .wpcf7-acceptance {
  display: block;
  width: 100%;
  margin: 1.9375rem 0 0;
}
.l-wpform-01 .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  justify-content: center;
}
.l-wpform-01 .wpcf7-acceptance .wpcf7-list-item label {
  position: relative;
}
.l-wpform-01 .wpcf7-acceptance input[type=checkbox] {
  display: none;
}
.l-wpform-01 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  letter-spacing: -0.004em;
  padding: 0 0 0 2rem;
}
.l-wpform-01 .wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.25rem;
  background: #efefef;
  position: absolute;
  left: 0;
  top: 0.0625rem;
  box-sizing: border-box;
}
.l-wpform-01 .wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.4375rem;
  border-top: 0.1875rem solid #0c415a;
  border-right: 0.1875rem solid #0c415a;
  transform: rotate(135deg);
  position: absolute;
  left: 0.25rem;
  top: 0.375rem;
}
.l-wpform-01 .wpcf7-radio {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: none;
  padding: 0.4375rem 0 0;
  gap: 0.9375rem 1.25rem;
}
.l-wpform-01 .wpcf7-radio label > span {
  display: block;
  padding: 0 0 0 1.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-wpform-01 .wpcf7-radio label > span {
    min-width: none;
  }
}
.l-wpform-01 .wpcf7-radio label > span::before, .l-wpform-01 .wpcf7-radio label > span::after {
  content: "";
  display: block;
  border-radius: 100%;
  position: absolute;
  transform: translateY(-50%);
  top: calc(50% - 0rem);
}
.l-wpform-01 .wpcf7-radio label > span::before {
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  left: 0;
  background-color: #fff;
  border: 0.0625rem solid #0c415a;
}
.l-wpform-01 .wpcf7-radio label > span::after {
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1/1;
  left: 0.25rem;
  background-color: #0c415a;
  opacity: 0;
}
.l-wpform-01 .wpcf7-radio label > input {
  display: none;
}
.l-wpform-01 .wpcf7-radio label > input:checked + span::after {
  opacity: 1;
}

.c-button-01 {
  display: block;
  width: 100%;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.004em;
  color: #0c415a;
  background-color: rgba(12, 65, 90, 0.12);
  border-radius: 1.8125rem;
  text-align: center;
  border: 0.0625rem solid rgba(12, 65, 90, 0.12);
  padding: 0.4375rem 0.5625rem 0.625rem;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button-01:hover {
    color: #ffffff;
    background-color: #0c415a;
  }
}
@media screen and (max-width: 767px) {
  .c-button-01 {
    padding: 0.6875rem 0.75rem 0.75rem;
  }
}
.c-button-01--inversion {
  color: #ffffff;
  background-color: #0c415a;
  border: 0.0625rem solid #0c415a;
}
@media screen and (min-width: 768px) {
  .c-button-01--inversion:hover {
    color: #0c415a;
    background-color: rgba(12, 65, 90, 0.12);
  }
}
.c-button-02 {
  display: block;
  width: 100%;
  min-width: 11.25rem;
  text-align: center;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4615384615;
  letter-spacing: -0.004em;
  text-decoration: none;
  color: #ffffff;
  border: 0.0625rem solid #ffffff;
  background-color: #0c415a;
  padding: 0.5625rem 0.8125rem 0.625rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button-02:hover {
    color: #0c415a;
    background-color: #ffffff;
  }
}
.c-button-02--blank::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.8125rem;
  height: auto;
  aspect-ratio: 1 / 1;
  height: auto;
  background-image: url("../images/common/icon_blank_white.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-0.09375rem);
  margin-left: 0.5rem;
  transition: background-image 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button-02--blank:hover::after {
    background-image: url("../images/common/icon_blank_navy.svg");
  }
}
.c-button-03 {
  display: block;
  width: 100%;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  color: #0c415a;
  background-color: rgba(12, 65, 90, 0.12);
  border-radius: 1.8125rem;
  text-align: center;
  padding: 0.625rem 2.5rem 0.6875rem 1.25rem;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-button-03:hover {
    color: #ffffff;
    background-color: #0c415a;
  }
  .c-button-03:hover::after {
    background-image: url("../images/common/icon_arrow_right_white.svg");
    right: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button-03 {
    padding: 0.6875rem 0.75rem 0.75rem;
  }
}
.c-button-03::after {
  content: "";
  display: block;
  width: 1.4375rem;
  height: auto;
  aspect-ratio: 23 / 4;
  height: auto;
  background-image: url("../images/common/icon_arrow_right.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%);
  transition: background-image 0.3s ease, right 0.3s ease;
}

.c-slider-loop {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.c-slider-loop__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  padding-right: 1.875rem;
}
.c-slider-loop__img {
  display: block;
  width: 12.5rem;
  height: auto;
}
.c-banner-01 {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  width: 100%;
  max-width: 20.5625rem;
  margin: 4.6875rem auto 0;
}
.c-banner-01__link {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-banner-01__link {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .c-banner-01__link:hover {
    opacity: 0.6;
  }
}
.c-banner-01__link img {
  display: block;
  width: 100%;
}

.c-project {
  display: block;
  width: 100%;
  margin: 16.375rem auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-project {
    margin: 11.25rem auto 0;
  }
}
.c-project__head {
  display: block;
  width: 100%;
  position: relative;
}
.c-project__subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.c-project__subtitleInner {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: -0.004em;
  text-align: center;
  display: inline;
  color: #ffffff;
  background-color: #0c415a;
  padding: 0 1.9375rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.c-project__label {
  display: block;
  font-weight: 500;
  font-size: 5.125rem;
  line-height: 1;
  letter-spacing: -0.036em;
  text-align: right;
  writing-mode: sideways-lr;
  white-space: nowrap;
  opacity: 0.07;
  position: absolute;
  bottom: 0.3125rem;
  right: -0.375rem;
}
@media screen and (max-width: 767px) {
  .c-project__label {
    font-size: 5.125rem;
    bottom: 0rem;
  }
}
.c-project__text {
  display: block;
  width: 100%;
  margin: 1.6875rem auto 0;
  padding: 0 1.625rem;
}
.c-project__text p {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.053em;
  margin: 0.875rem 0 0;
}
.c-project__slider {
  display: block;
  width: 100%;
  margin: 3.5rem auto 0;
  padding: 0;
}
.c-project__slider.splide .splide__slide .c-project__card {
  transition: transform 0.3s ease;
  transform: scale(0.9);
}
.c-project__slider.splide .splide__slide.is-active .c-project__card {
  transform: scale(1);
}
.c-project__slider.splide .splide__arrows .splide__arrow {
  display: block;
  width: 1.75rem;
  height: auto;
  background: none;
  opacity: 1;
}
.c-project__slider.splide .splide__arrows .splide__arrow--prev {
  top: calc(50% - 0.875rem);
  left: calc(50% - 7.5rem);
  transform: translateX(-50%);
}
.c-project__slider.splide .splide__arrows .splide__arrow--next {
  top: calc(50% - 0.875rem);
  left: calc(50% + 7.5rem);
  transform: translateX(-50%);
}
.c-project__slider.splide .splide__arrows .splide__arrow img {
  display: block;
  width: 100%;
}
.c-project__card {
  width: 15.3125rem;
  height: 100%;
  border: 0.1875rem solid #0c415a;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 1.5rem 1.375rem;
}
.c-project__cardImg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 194 / 117;
  height: auto;
}
.c-project__cardImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-project__cardTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 900;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  min-height: 2.75rem;
  letter-spacing: -0.004em;
  margin: 1.25rem 0 0;
  text-align: center;
}
.c-project__cardText {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.053em;
  margin: 0.9375rem 0 0;
}
.c-project__cardLink {
  max-width: 8rem;
  margin: 1.1875rem auto 0;
}

.c-voice-list {
  display: block;
  width: 100%;
  margin: 1.9375rem auto 0;
  padding: 0 2.1875rem;
}
.c-voice-list__item {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 302 / 151;
  height: auto;
  margin: 1.0625rem auto 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-voice-list__item {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .c-voice-list__item:hover {
    opacity: 0.6;
  }
}
.c-voice-list__item {
  overflow: hidden;
  border-radius: 0.375rem;
  border: 0.0625rem solid #707070;
}
.c-voice-list__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-about {
  display: block;
  width: 100%;
  margin: 3.0625rem auto 0;
  padding: 0;
}
.p-home-about__head {
  display: block;
  width: 100%;
  padding: 0 1.25rem 22.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-about__head {
    padding-bottom: 10rem;
  }
}
.p-home-about__head::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 17.375rem;
  border-left: 0.03125rem solid #0c415a;
  position: absolute;
  bottom: 0rem;
  left: calc(50% + 0.015625rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-about__head::before {
    height: 7.5rem;
  }
}
.p-home-about__title {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.15em;
  margin: 0 auto;
  writing-mode: vertical-rl;
  text-align: right;
}
.p-home-about__title small {
  display: inline-block;
  font-size: 1.125rem;
  margin: 0.1875rem 0;
}
.p-home-about__label {
  display: block;
  font-weight: 500;
  font-size: 5.8125rem;
  line-height: 1.4516129032;
  letter-spacing: -0.036em;
  writing-mode: sideways-rl;
  white-space: nowrap;
  opacity: 0.07;
  position: absolute;
  top: 17.625rem;
  left: -1.75rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__label {
    font-size: 5.1875rem;
    line-height: 1.4;
    top: 8.125rem;
    left: -1.375rem;
  }
}
.p-home-about__subtitle {
  display: block;
  width: 100%;
  margin: 5.0625rem auto 2.1875rem;
  padding: 0 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home-about__subtitle {
    margin: 3.75rem auto 1.5625rem;
  }
}
.p-home-about__subtitleInner {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: -0.004em;
  text-align: center;
  display: inline;
  color: #ffffff;
  background-color: #0c415a;
  padding: 0 1.25rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .p-home-about__subtitleInner {
    font-size: 1.1875rem;
    line-height: 1.9545454545;
  }
}
.p-home-about__text {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.004em;
  margin: 1.25rem 0 0;
  padding: 0 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home-about__text {
    font-size: 0.875rem;
  }
}
.p-home-about__button {
  display: block;
  width: 100%;
  margin: 2.6875rem auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-home-about__button {
    margin-top: 2.1875rem;
  }
}
.p-home-about__buttonItem {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  max-width: 12.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-home-about__buttonItem {
    font-size: 1.125rem;
    max-width: 14.6875rem;
  }
}
.p-home-vision {
  display: block;
  width: 100%;
  margin: 16.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-vision {
    margin-top: 11.25rem;
  }
}
.p-home-vision__head {
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
  margin-top: 4.875rem;
}
.p-home-vision__subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.p-home-vision__subtitleInner {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: -0.004em;
  text-align: center;
  display: inline;
  color: #ffffff;
  background-color: #0c415a;
  padding: 0 1.9375rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-home-vision__label {
  display: block;
  font-weight: 500;
  font-size: 5.125rem;
  line-height: 1;
  letter-spacing: -0.036em;
  text-align: right;
  writing-mode: sideways-lr;
  white-space: nowrap;
  opacity: 0.07;
  position: absolute;
  bottom: -8.75rem;
  right: -0.375rem;
}
@media screen and (max-width: 767px) {
  .p-home-vision__label {
    bottom: -13.125rem;
  }
}
.p-home-vision__text {
  display: block;
  width: 100%;
  margin: 1.6875rem auto 0;
  padding: 0 1.6875rem;
}
.p-home-vision__text p {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.053em;
  margin: 1.25rem 0 0;
}
.p-home-vision__image {
  display: block;
  width: 19.90625rem;
  margin: 2.875rem auto 0;
  padding: 0;
}
.p-home-vision__image02 {
  display: block;
  width: 100%;
  max-width: 21.375rem;
  margin: 2.875rem auto 0;
  padding: 0;
}
.p-home-vision__messageTitle {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 3;
  letter-spacing: -0.053em;
  text-align: center;
  margin: 2.5rem auto 1.875rem;
}
.p-home-vision__messageTitle span {
  display: inline;
  background-color: rgba(12, 65, 90, 0.06);
  padding: 0.25rem 0.9375rem 0.375rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-home-vision__messageText {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8235294118;
  letter-spacing: -0.053em;
  margin: 1.25rem auto 0;
  padding: 0 2.625rem;
  text-align: center;
}
.p-home-vision__messageLogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin: 3.75rem auto 0;
  padding: 0 0.625rem;
}
.p-home-vision__messageLogo a,
.p-home-vision__messageLogo img {
  display: block;
  width: 6.625rem;
  height: auto;
}
.p-home-vision__slider {
  display: block;
  width: 100%;
  margin: 3.5rem 0 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-home-vision__slider {
    margin-top: 3.75rem;
  }
}
.p-home-vision__slider .splide__arrow {
  display: block;
  opacity: 1;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1/1;
  top: calc(50% - 0.875rem);
  transform: translateY(-50%);
  transform: none;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.p-home-vision__slider .splide__arrow img {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-vision__slider .splide__arrow--prev {
  background-image: url("../images/common/icon_slider_prev.svg");
  left: 2.8125rem;
}
.p-home-vision__slider .splide__arrow--next {
  background-image: url("../images/common/icon_slider_next.svg");
  right: 2.8125rem;
}
.p-home-vision__sliderSlide {
  display: block;
  width: calc(100% - 6rem);
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.p-home-vision__sliderSlide img {
  display: block;
  width: 100%;
}
.p-home-vision__ex {
  display: block;
  width: 100%;
  margin: 2.8125rem 0 0;
  padding: 0 1.25rem;
}
.p-home-vision__exTitle {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: -0.004em;
  margin: 1.25rem auto 0;
}
.p-home-vision__exTab {
  display: block;
  width: 100%;
  margin: 0.9375rem auto 0;
}
.p-home-vision__exTabTitle {
  display: flex;
  margin-bottom: -0.0625rem;
}
.p-home-vision__exTabTitle.js-home-vision-extabTitle .p-home-vision__exTabTitleItem {
  background-color: #ffffff;
  color: #0c415a;
}
.p-home-vision__exTabTitle.js-home-vision-extabTitle .p-home-vision__exTabTitleItem.is-active {
  color: #ffffff;
  background-color: #0c415a;
}
.p-home-vision__exTabTitleItem {
  width: 50%;
  border-radius: 0.5625rem 0.5625rem 0 0;
  border: 0.125rem solid #0c415a;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  text-align: center;
  letter-spacing: -0.004em;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
}
.p-home-vision__exTabContent.js-home-vision-extabContent .p-home-vision__exTabContentItem {
  display: none;
}
.p-home-vision__exTabContent.js-home-vision-extabContent .p-home-vision__exTabContentItem.is-active {
  display: block;
}
.p-home-vision__exTabContentItem {
  display: block;
  width: 100%;
  padding: 1.875rem;
  border-radius: 0 0 0.5625rem 0.5625rem;
  border: 0.125rem solid #0c415a;
}
.p-home-vision__exTabContentItem img {
  display: block;
  width: 100%;
  max-width: 16.5625rem;
  margin: 0 auto;
}
.p-home-vision__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.125rem;
  margin: 3.75rem auto 0;
  padding: 0 0.625rem;
}
.p-home-vision__buttonItem {
  max-width: 18.4375rem;
}

.p-privacypolicy-description {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: -0.004em;
  margin: 2.625rem 0 0;
  padding: 0 5.4375rem 0 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-description {
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }
}
.p-privacypolicy-description p {
  margin: 0.875rem 0 0;
}
.p-privacypolicy-content {
  display: block;
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0.039em;
  margin: 5.5rem 0 0;
  padding: 0 3.625rem 0 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-content {
    margin-top: 1.875rem;
    padding: 0 1.25rem;
  }
}
.p-privacypolicy-content__item {
  display: block;
  width: 100%;
  margin: 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-content__item {
    margin-top: 1.875rem;
  }
}
.p-privacypolicy-content__item p {
  margin: 0.8125rem 0 0;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.p-privacypolicy-content__item p::before {
  content: "⚫︎";
}
.p-privacypolicy-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.9375rem;
  width: 100%;
  margin: 7rem 0 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-button {
    margin-top: 3.125rem;
  }
}
.p-privacypolicy-button__item {
  max-width: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-button__item {
    max-width: 17.1875rem;
  }
}

.p-entry-description {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: -0.004em;
  margin: 2.625rem 0 0;
  padding: 0 5.4375rem 0 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-entry-description {
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }
}
.p-entry-description p {
  margin: 0.875rem 0 0;
}
.p-entry-form {
  display: block;
  width: max(15.9375rem, 100% - 7.5rem);
  margin: 1.3125rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-entry-form {
    width: 100%;
    padding: 0 1.25rem;
    margin-top: 0.9375rem;
  }
}
.p-entry-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.9375rem;
  width: 100%;
  margin: 4.4375rem 0 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-entry-button {
    margin-top: 3.125rem;
  }
}
.p-entry-button__item {
  max-width: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .p-entry-button__item {
    max-width: 17.1875rem;
  }
}

.p-voice-lead {
  display: block;
  width: 100%;
  margin: 4.0625rem auto 0;
  padding: 0 2.1875rem;
}
.p-voice-lead p {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.053em;
  margin: 0.875rem 0 0;
}
.p-voice-detail {
  display: block;
  width: 100%;
  margin: 2.5625rem auto 0;
  padding: 0 1.875rem;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
}
.p-voice-detail__head {
  display: block;
  width: 100%;
}
.p-voice-detail__headLabel {
  font-size: 0.75rem;
  line-height: 1.5833333333;
  letter-spacing: -0.004em;
}
.p-voice-detail__headTitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.p-voice-detail__headTitleInner {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: -0.004em;
  text-align: center;
  display: inline;
  color: #0c415a;
  background-color: #ededed;
  padding: 0 0.9375rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  margin: 0.375rem 0 0;
}
.p-voice-detail__headImage {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 309 / 180;
  height: auto;
  margin: 1.0625rem auto 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0.375rem;
  border: 0.0625rem solid #707070;
}
.p-voice-detail__headImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voice-detail__faq {
  margin: 0;
  padding: 0;
}
.p-voice-detail__faqItem {
  display: block;
  width: 100%;
  margin: 1.875rem auto 0;
}
.p-voice-detail__faqItemTitle {
  font-size: 1.0625rem;
  line-height: 1.5294117647;
  border-radius: 0.6875rem;
  padding: 0.8125rem 3.125rem 0.8125rem 0.8125rem;
  border: 0.0625rem solid #0c415a;
  position: relative;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}
.p-voice-detail__faqItemTitle::-moz-selection {
  background: none;
  color: inherit;
}
.p-voice-detail__faqItemTitle::selection {
  background: none;
  color: inherit;
}
.p-voice-detail__faqItemTitle.js-voice-detail-faq {
  cursor: pointer;
}
.p-voice-detail__faqItemTitle.js-voice-detail-faq::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 0.0625rem;
  background-color: #0c415a;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transform: translateY(-50%);
}
.p-voice-detail__faqItemTitle.js-voice-detail-faq::after {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 1.125rem;
  background-color: #0c415a;
  position: absolute;
  top: 50%;
  right: 1.625rem;
  transform: translateY(-50%);
}
.p-voice-detail__faqItemTitle.js-voice-detail-faq.is-active::after {
  display: none;
}
.p-voice-detail__faqItemTitle.js-voice-detail-faq + .p-voice-detail__faqItemBody {
  display: none;
}
.p-voice-detail__faqItemTitle.js-voice-detail-faq.is-active + .p-voice-detail__faqItemBody {
  display: block;
}
.p-voice-detail__faqItemBody {
  padding: 0;
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.004em;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}
.p-voice-detail__faqItemBody::-moz-selection {
  background: none;
  color: inherit;
}
.p-voice-detail__faqItemBody::selection {
  background: none;
  color: inherit;
}
.p-voice-detail__images {
  display: block;
  width: 100%;
  max-width: 19.3125rem;
  margin: 4.75rem auto 0;
  padding: 0;
}
.p-voice-detail__images img {
  display: block;
  width: 100%;
  margin-top: 1.1875rem;
}
.p-voice-detail__content {
  display: block;
  width: 100%;
  max-width: 19.5625rem;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  margin: 3.4375rem auto 0;
  position: relative;
  background-color: #f7f7f7;
  padding: 2.75rem 1.25rem 2.0625rem;
  border-radius: 0.75rem;
}
.p-voice-detail__contentTitle {
  display: block;
  width: 100%;
  max-width: 10.75rem;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  background-color: #0c415a;
  padding: 0.3125rem 0.625rem 0.375rem;
  color: #ffffff;
  border-radius: 0.4375rem;
  text-align: center;
  margin: 0;
}
.p-voice-detail__contentBody {
  display: block;
  width: 100%;
}
.p-voice-detail__contentBody > :first-child {
  margin-top: 0;
}
.p-voice-detail__contentBody > :last-child {
  margin-bottom: 0;
}
.p-voice-detail__contentBodyText {
  font-size: 0.75rem;
  line-height: 1.6153846154;
  letter-spacing: 0.027em;
  margin: 0.8125rem 0 0;
}
.p-voice-detail__contentBodyTimeline {
  display: block;
  width: 100%;
  padding: 1.125rem 1.125rem 0;
}
.p-voice-detail__contentBodyTimelineItem {
  display: block;
  width: 100%;
  padding-left: 1.625rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1.125rem;
}
.p-voice-detail__contentBodyTimelineItem::before {
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border: 0.0625rem solid #0c415a;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: -0.125rem;
  left: 0;
}
.p-voice-detail__contentBodyTimelineItem::after {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #0c415a;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0.46875rem;
}
.p-voice-detail__contentBodyTimelineItem:last-child::after {
  display: none;
}
.p-voice-detail__contentBodyTimelineItemTime {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.027em;
}
.p-voice-detail__contentBodyTimelineItemText {
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  letter-spacing: 0.027em;
  margin: 0.1875rem 0 0;
}
.p-voice-voiceList {
  margin: 2.375rem 0 0;
}
.p-voice-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.125rem;
  width: 100%;
  margin: 3.9375rem 0 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-voice-button {
    margin-top: 3.125rem;
  }
}
.p-voice-button__item {
  max-width: 15.8125rem;
}
@media screen and (max-width: 767px) {
  .p-voice-button__item {
    max-width: 17.1875rem;
  }
}

.p-jobdescription-headline__head {
  padding-bottom: 18.4375rem;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-headline__head {
    padding-bottom: 16.25rem;
  }
}
.p-jobdescription-job {
  display: block;
  width: 100%;
  margin: 0 auto 6.875rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-job {
    margin: 0 auto 3.4375rem;
  }
}
.p-jobdescription-job__slider {
  display: block;
  width: 100%;
  margin: 6.875rem 0 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-job__slider {
    margin-top: 3.75rem;
  }
}
.p-jobdescription-job__slider .splide__arrow {
  display: block;
  opacity: 1;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1/1;
  top: calc(50% - 0.875rem);
  transform: translateY(-50%);
  transform: none;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.p-jobdescription-job__slider .splide__arrow img {
  display: block;
  width: 100%;
  height: auto;
}
.p-jobdescription-job__slider .splide__arrow--prev {
  background-image: url("../images/common/icon_slider_prev.svg");
  left: 2.8125rem;
}
.p-jobdescription-job__slider .splide__arrow--next {
  background-image: url("../images/common/icon_slider_next.svg");
  right: 2.8125rem;
}
.p-jobdescription-job__sliderSlide {
  display: block;
  width: calc(100% - 6rem);
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.p-jobdescription-job__sliderSlide img {
  display: block;
  width: 100%;
}
.p-jobdescription-job__text {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0 2.1875rem;
}
.p-jobdescription-job__text p {
  font-size: 0.8125rem;
  line-height: 1.3076923077;
  letter-spacing: -0.004em;
}
.p-jobdescription-job__detail {
  display: block;
  width: 100%;
  margin: 2.6875rem auto 0;
  padding: 0 0 15.0625rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-job__detail {
    margin-top: 3.75rem;
    padding-bottom: 10rem;
  }
}
.p-jobdescription-job__detail::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 11.1875rem;
  border-left: 0.03125rem solid #0c415a;
  position: absolute;
  bottom: 0rem;
  left: calc(50% + 0.015625rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-jobdescription-job__detail::before {
    height: 7.5rem;
  }
}
.p-jobdescription-job__table {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-jobdescription-job__tableRow {
  display: flex;
  align-items: stretch;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-jobdescription-job__tableHead {
  display: flex;
  align-items: center;
  width: 4.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
  color: #0c415a;
  padding: 1rem 0 0.9375rem;
  margin: 0;
  border-bottom: 1px solid #0c415a;
}
.p-jobdescription-job__tableData {
  display: flex;
  align-items: center;
  width: calc(100% - 4.375rem - 1rem);
  min-height: 3.5rem;
  color: #3c3c3c;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  letter-spacing: 0.07em;
  padding: 1.0625rem 0.8125rem 1rem;
  border-bottom: 1px solid #0c415a;
  margin: 0;
}
.p-jobdescription-flow {
  display: block;
  width: 100%;
  margin: 7.5625rem auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow {
    margin: 5rem auto 0;
  }
}
.p-jobdescription-flow__head {
  display: block;
  width: 100%;
  padding: 0 1.25rem;
  position: relative;
}
.p-jobdescription-flow__subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.p-jobdescription-flow__subtitleInner {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: -0.004em;
  text-align: center;
  display: inline;
  color: #ffffff;
  background-color: #0c415a;
  padding: 0 1.9375rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-jobdescription-flow__label {
  display: block;
  font-weight: 500;
  font-size: 5.125rem;
  line-height: 1;
  letter-spacing: -0.036em;
  text-align: right;
  writing-mode: sideways-lr;
  white-space: nowrap;
  opacity: 0.07;
  position: absolute;
  top: -3.75rem;
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__label {
    font-size: 5.125rem;
    top: -4.0625rem;
    right: 0.75rem;
  }
}
.p-jobdescription-flow__list {
  display: block;
  width: 100%;
  padding: 0 2.3125rem;
  margin: 4.75rem auto 0;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__list {
    padding: 0 2.5rem;
    margin-top: 3.4375rem;
  }
}
.p-jobdescription-flow__item {
  display: flex;
  align-items: center;
  margin: 2.1875rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__item {
    margin-top: 1.5625rem;
  }
}
.p-jobdescription-flow__item::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: calc(100% + 2.1875rem);
  border-left: 0.125rem solid #00003e;
  position: absolute;
  top: -2.1875rem;
  left: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__item::before {
    height: calc(100% + 1.5625rem);
    top: -1.5625rem;
    left: 3.125rem;
  }
}
.p-jobdescription-flow__item:first-child::before {
  display: none;
}
.p-jobdescription-flow__item:last-child .p-jobdescription-flow__icon img {
  border: 0.0625rem solid #0c415a;
}
.p-jobdescription-flow__icon {
  width: 7rem;
  height: auto;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__icon {
    width: 6.25rem;
  }
}
.p-jobdescription-flow__icon img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 100%;
}
.p-jobdescription-flow__body {
  display: block;
  width: calc(100% - 7rem);
  padding: 0 0 0 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__body {
    width: calc(100% - 6.25rem);
    padding-left: 1.25rem;
  }
}
.p-jobdescription-flow__step {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__step {
    font-size: 1rem;
  }
}
.p-jobdescription-flow__text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
  color: #3c3c3c;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__text {
    font-size: 0.9375rem;
  }
}
.p-jobdescription-flow__button {
  display: block;
  width: 100%;
  margin: 4rem auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__button {
    margin-top: 3.4375rem;
  }
}
.p-jobdescription-flow__buttonItem {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 1.25rem;
  max-width: 15.8125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-flow__buttonItem {
    max-width: 17.1875rem;
  }
}
.p-jobdescription-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.125rem;
  width: 100%;
  margin: 3.9375rem 0 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-button {
    margin-top: 3.125rem;
  }
}
.p-jobdescription-button__item {
  max-width: 15.8125rem;
}
@media screen and (max-width: 767px) {
  .p-jobdescription-button__item {
    max-width: 17.1875rem;
  }
}

.p-data-lead {
  display: block;
  width: 100%;
  margin: 4.0625rem auto 0;
  padding: 0 2.1875rem;
}
.p-data-lead p {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.053em;
  margin: 0.875rem 0 0;
}
.p-data-content {
  display: block;
  width: 100%;
  margin: 2.5625rem auto 0;
  padding: 0 0.9375rem;
}
.p-data-content__title {
  max-width: 15.9375rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  border: 0.0625rem solid #0c415a;
  border-radius: 1.8125rem;
  margin: 5rem auto 0;
  padding: 0.6875rem 0.75rem 0.75rem;
  text-align: center;
}
.p-data-content__image {
  display: block;
  width: 100%;
  max-width: 20.375rem;
  margin: 1.625rem auto 0;
  padding: 0;
  transform: translateX(-0.625rem);
}
.p-data-voiceList {
  display: block;
  width: 100%;
  margin: 7.5rem auto 0;
}
.p-data-voiceList__head {
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
  margin-top: 4.875rem;
}
.p-data-voiceList__subtitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.p-data-voiceList__subtitleInner {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: -0.004em;
  text-align: center;
  display: inline;
  color: #ffffff;
  background-color: #0c415a;
  padding: 0 1.9375rem 0.125rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-data-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.125rem;
  width: 100%;
  margin: 3.9375rem 0 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-data-button {
    margin-top: 3.125rem;
  }
}
.p-data-button__item {
  max-width: 15.8125rem;
}
@media screen and (max-width: 767px) {
  .p-data-button__item {
    max-width: 17.1875rem;
  }
}

.p-careervision-lead {
  display: block;
  width: 100%;
  margin: 4.0625rem auto 0;
  padding: 0 2.1875rem;
}
.p-careervision-lead p {
  font-size: 0.875rem;
  line-height: 1.8461538462;
  letter-spacing: -0.004em;
  margin: 0.875rem 0 0;
}
.p-careervision-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.375rem;
  width: 100%;
  max-width: 10.75rem;
  margin: 3.875rem auto 0;
}
.p-careervision-anchor__item {
  display: block;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  margin: 0;
  padding: 0 0.75rem 0.0625rem;
  border-radius: 0.6875rem;
  text-align: center;
  text-decoration: none;
  color: #0c415a;
  background-color: #ffffff;
  border: 0.0625rem solid #0c415a;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-careervision-anchor__item:hover {
    color: #ffffff;
    background-color: #0c415a;
  }
}
.p-careervision-content {
  display: block;
  width: 100%;
  margin: 6.125rem auto 0;
}
.p-careervision-content__title {
  width: calc(100% - 3.25rem);
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.2352941176;
  letter-spacing: -0.053em;
  text-align: center;
  margin: 0 auto;
  background-color: rgba(12, 65, 90, 0.06);
  padding: 0.1875rem 0.9375rem 0.25rem;
}
.p-careervision-content__image {
  display: block;
  width: 100%;
  max-width: 18.875rem;
  margin: 0.75rem auto 0;
}
.p-careervision-content__ex {
  display: block;
  width: 100%;
  margin: 2.8125rem 0 0;
  padding: 0 1.25rem;
}
.p-careervision-content__text {
  display: block;
  width: 100%;
  margin: 1.3125rem 0 0;
  padding: 0 1.625rem;
}
.p-careervision-content__textParagraph {
  font-size: 0.875rem;
  line-height: 1.8461538462;
  letter-spacing: -0.004em;
  margin: 0.875rem 0 0;
}
.p-careervision-content__exTitle {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: -0.004em;
  margin: 1.25rem auto 0;
}
.p-careervision-content__exTab {
  display: block;
  width: 100%;
  margin: 0.9375rem auto 0;
}
.p-careervision-content__exTabTitle {
  display: flex;
  margin-bottom: -0.0625rem;
}
.p-careervision-content__exTabTitle.js-home-vision-extabTitle .p-careervision-content__exTabTitleItem {
  background-color: #ffffff;
  color: #0c415a;
}
.p-careervision-content__exTabTitle.js-home-vision-extabTitle .p-careervision-content__exTabTitleItem.is-active {
  color: #ffffff;
  background-color: #0c415a;
}
.p-careervision-content__exTabTitleItem {
  width: 50%;
  border-radius: 0.5625rem 0.5625rem 0 0;
  border: 0.125rem solid #0c415a;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  text-align: center;
  letter-spacing: -0.004em;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
}
.p-careervision-content__exTabContent.js-home-vision-extabContent .p-careervision-content__exTabContentItem {
  display: none;
}
.p-careervision-content__exTabContent.js-home-vision-extabContent .p-careervision-content__exTabContentItem.is-active {
  display: block;
}
.p-careervision-content__exTabContentItem {
  display: block;
  width: 100%;
  padding: 1.875rem;
  border-radius: 0 0 0.5625rem 0.5625rem;
  border: 0.125rem solid #0c415a;
}
.p-careervision-content__exTabContentItem img {
  display: block;
  width: 100%;
  max-width: 16.5625rem;
  margin: 0 auto;
}
.p-careervision-content__pattern {
  display: block;
  width: 100%;
  margin: 2.375rem 0 0;
  padding: 0;
}
.p-careervision-content__patternTitle {
  max-width: 14.75rem;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  margin: 1.5625rem auto 0;
  border: 0.0625rem solid #0c415a;
  padding: 0 0.75rem 0.125rem;
  text-align: center;
  border-radius: 0.6875rem;
}
.p-careervision-content__patternSlider {
  display: block;
  width: 100%;
  margin: 3.5rem 0 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-careervision-content__patternSlider {
    margin-top: 3.75rem;
  }
}
.p-careervision-content__patternSlider .splide__arrow {
  display: block;
  opacity: 1;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1/1;
  top: calc(50% - 0.1875rem);
  transform: translateY(-50%);
  transform: none;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.p-careervision-content__patternSlider .splide__arrow img {
  display: block;
  width: 100%;
  height: auto;
}
.p-careervision-content__patternSlider .splide__arrow--prev {
  background-image: url("../images/common/icon_slider_prev.svg");
  left: 5.625rem;
}
.p-careervision-content__patternSlider .splide__arrow--next {
  background-image: url("../images/common/icon_slider_next.svg");
  right: 5.625rem;
}
.p-careervision-content__patternSliderSlide {
  display: block;
  width: 10.9375rem;
  padding-right: 0.4375rem;
  padding-left: 0.4375rem;
}
.p-careervision-content__patternSliderSlide img {
  display: block;
  width: 100%;
}
.p-careervision-content__career {
  display: block;
  width: 100%;
  max-width: 19.5625rem;
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  margin: 4rem auto 0;
  position: relative;
  background-color: #f7f7f7;
  padding: 2.4375rem 0 1.9375rem;
  border-radius: 0.75rem;
}
.p-careervision-content__careerTitle {
  display: block;
  width: 100%;
  max-width: 10.75rem;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  background-color: #0c415a;
  padding: 0.3125rem 0.625rem 0.375rem;
  color: #ffffff;
  border-radius: 0.4375rem;
  text-align: center;
  margin: 0;
}
.p-careervision-content__careeDescription {
  display: flex;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  justify-content: center;
  align-items: center;
}
.p-careervision-content__careeDescriptionText {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: -0.004em;
  margin: 0;
}
.p-careervision-content__careeDescriptionIcon {
  display: block;
  width: 1.6875rem;
}
.p-careervision-content__careeDescriptionIcon--men {
  width: 2.375rem;
}
.p-careervision-content__careerImage {
  display: block;
  width: 100%;
  margin: 1.5625rem auto 0;
  padding: 0 1.5625rem;
}
.p-careervision-content__careerImage::after {
  content: "スクロールできます";
  display: block;
  width: 100%;
  text-align: right;
  font-size: 0.625rem;
  line-height: 1;
  padding: 0.25rem 1.1875rem 0 0;
  box-sizing: border-box;
}
.p-careervision-content__careerImageInner {
  display: block;
  width: 100%;
  overflow: auto;
}
.p-careervision-content__careerImageInner img {
  display: block;
  width: 46.875rem;
  max-width: none;
}
.p-careervision-content__careerText {
  font-size: 0.75rem;
  line-height: 1.5833333333;
  letter-spacing: 0.027em;
  padding: 0 1.0625rem;
  margin: 1.25rem 0 0;
}
.p-careervision-voiceList {
  display: block;
  width: 100%;
  margin: 4.0625rem auto 0;
  padding: 0 2.1875rem;
}
.p-careervision-voiceList__title {
  max-width: 15.9375rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: -0.004em;
  margin: 0;
  border: 0.0625rem solid #0c415a;
  border-radius: 1.8125rem;
  padding: 0.6875rem 0.75rem 0.75rem;
  text-align: center;
  margin: 2.75rem auto 0;
}
.p-careervision-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.125rem;
  width: 100%;
  margin: 3.9375rem 0 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-careervision-button {
    margin-top: 3.125rem;
  }
}
.p-careervision-button__item {
  max-width: 15.8125rem;
}
@media screen and (max-width: 767px) {
  .p-careervision-button__item {
    max-width: 17.1875rem;
  }
}

.p-404-content {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 6.25rem 1.5625rem 0;
}
.p-404-content__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3214285714;
  margin: 0;
}
.p-404-content__text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin: 0.875rem 0 0;
}

@media screen and (min-width: 768px) {
  .u-hidden--pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden--sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
