@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

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

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

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

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

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

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

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

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}
@media screen and (any-hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: calcvw(28) !important;
  }
  textarea {
    width: 100%;
    font-size: calcvw(28) !important;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: 16px !important;
  }
  textarea {
    width: 100%;
    font-size: 16px !important;
  }
}
::-webkit-input-placeholder {
  color: #B7B7B7;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #B7B7B7;
}

/*$base-width: 1400px;*/
/*weight*/
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP tategaki";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-vertical.woff") format("woff");
  font-display: swap;
}
/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
small,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  font-size: 100%;
}

ul {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  vertical-align: top;
}

li {
  list-style-type: none;
  vertical-align: baseline;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------
　Base
---------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

a {
  color: #666666;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.ct {
  text-align: center;
}

.strong {
  font-weight: bold;
}

.f110 {
  font-size: 110%;
}

.f120 {
  font-size: 120%;
}

.f130 {
  font-size: 130%;
}

.f150 {
  font-size: 150%;
}

.f200 {
  font-size: 200%;
}

.f300 {
  font-size: 300%;
}

span.txt_bold {
  color: #F95D00;
  font-weight: 700;
}

span.marker {
  border-bottom: 2px solid #ECBF3F;
  font-weight: 700;
}

/*--------------------------------------------------------------------------
   Original Start
---------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1530px) {
  html {
    font-size: 0.6535947712vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #0D1319;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-fixed {
  pointer-events: none;
  overflow: hidden;
}

dl, ul, ol {
  margin: 0;
  padding: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
}

.safari img {
  image-rendering: auto;
}

label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}
a:link, a:active, a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  a:hover {
    opacity: 0.7;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
i {
  font-style: normal;
}

/*$base-width: 1400px;*/
/*weight*/
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

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

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

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

/* --------------------------------------------------
  decoration
-------------------------------------------------- */
/* --------------------------------------------------
  inview
-------------------------------------------------- */
.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(10rem);
          transform: translateY(10rem);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, transform 0.8s;
  transition: opacity 0.5s, transform 0.8s, -webkit-transform 0.8s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fadeUp.m-delay.is-inview {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.is-fixed .l-header {
  pointer-events: auto;
}
@media screen and (min-width: 767px) {
  .is-fixed .l-header-toggle {
    right: calc(2.5rem + var(--scrollbar-width));
  }
  .is-fixed .l-header-btns {
    right: calc(17rem + var(--scrollbar-width));
  }
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 2.5rem;
  height: 8rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 4.5rem;
    gap: 0;
  }
}
.l-header.is-active {
  opacity: 1;
  pointer-events: auto;
}
.l-header-btns {
  position: fixed;
  right: 17rem;
  top: 3rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  z-index: 103;
  background: #003E75;
  -webkit-transition: opacity 0.4s !important;
  transition: opacity 0.4s !important;
  border: solid 1px #2D8BDE;
}
@media screen and (max-width: 767px) {
  .l-header-btns {
    right: 0;
    position: relative;
    top: 0;
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}
.l-header-btns.is-hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn {
    height: 100%;
  }
}
.l-header-btns .-btn a {
  padding: 0 3.2rem;
  height: 4.5rem;
  cursor: pointer;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-btns .-btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn a {
    font-size: 1.1rem;
    padding: 0;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    text-align: center;
  }
}
.l-header-btns .-btn + .-btn {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn + .-btn {
    padding: 0 1rem;
  }
}
.l-header-btns .-btn + .-btn:before {
  content: "";
  width: 1px;
  height: 1.4rem;
  background: #2D8BDE;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn + .-btn:before {
    height: 1rem;
  }
}
.l-header-toggle {
  background: #003E75;
  position: fixed;
  right: 2.5rem;
  top: 3rem;
  z-index: 103;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 1.6rem;
  padding: 0 1.3rem 0 1rem;
  height: 4.5rem;
  -webkit-transition: opacity 0.4s !important;
  transition: opacity 0.4s !important;
  border: solid 1px #2D8BDE;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-toggle {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-toggle:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    height: 100%;
    width: 4.5rem;
  }
}
.l-header-toggle .-menu {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header-toggle .-menu {
    display: none;
  }
}
.l-header-toggle .-lines {
  display: block;
  position: relative;
  width: 4.2rem;
  height: 1.7rem;
}
@media screen and (max-width: 767px) {
  .l-header-toggle .-lines {
    width: 2.6rem;
    height: 1.7rem;
  }
}
.l-header-toggle .-lines span {
  display: inline-block;
  width: 100%;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header-toggle .-lines span:nth-child(1) {
  top: 0;
}
.l-header-toggle .-lines span:nth-child(2) {
  top: 50%;
}
.l-header-toggle .-lines span:nth-child(3) {
  top: 100%;
}
.l-header-toggle.is-active .-lines span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(25deg);
          transform: translateY(0.8rem) rotate(25deg);
}
@media screen and (max-width: 767px) {
  .l-header-toggle.is-active .-lines span:nth-child(1) {
    -webkit-transform: translateY(0.8rem) rotate(35deg);
            transform: translateY(0.8rem) rotate(35deg);
  }
}
.l-header-toggle.is-active .-lines span:nth-child(2) {
  display: none;
}
.l-header-toggle.is-active .-lines span:nth-child(3) {
  -webkit-transform: translateY(-0.9rem) rotate(-25deg);
          transform: translateY(-0.9rem) rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .l-header-toggle.is-active .-lines span:nth-child(3) {
    -webkit-transform: translateY(-0.9rem) rotate(-35deg);
            transform: translateY(-0.9rem) rotate(-35deg);
  }
}
.l-header-menu {
  position: fixed;
  right: -57.7rem;
  top: 0;
  width: 57.7rem;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  padding: 10rem 0 7rem;
  background-color: #005BAC;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 102;
  border-left: 1px solid #0D1319;
}
.l-header-menu::-webkit-scrollbar {
  display: none; /* Webkit系ブラウザ */
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    right: -100%;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 7.5rem 0 9rem 0;
  }
}
.l-header-menu.is-active {
  right: 0;
}
.l-header-menu .-logo {
  width: 27.2rem;
  position: absolute;
  left: 3rem;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-logo {
    width: 22.2rem;
    height: 5.1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 2rem;
  }
}
.l-header-menu .-bnr {
  width: 49.4rem;
  height: 15.5rem;
  position: relative;
  background: url(img/common_menu_bnr.png) no-repeat center center/cover;
  margin: 2rem auto;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-menu .-bnr {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-menu .-bnr:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr {
    width: 34.5rem;
    height: 10.8rem;
    margin: 2rem auto 0;
  }
}
.l-header-menu .-bnr a {
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr a {
    padding: 0 2rem;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-menu .-bnr a:hover {
    opacity: 1;
  }
}
.l-header-menu .-bnr .txt {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr .txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.l-header-menu .-bnr .txt .small {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr .txt .small {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.l-header-nav {
  margin: 5rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    margin-top: 1rem;
  }
}
.l-header-nav li {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .l-header-nav li {
    font-size: 1.4rem;
  }
}
.l-header-nav li .categoryttl br, .l-header-nav li .categorylink br, .l-header-nav li .undernav li br {
  display: none;
}
.l-header-nav li .categoryttl {
  font-size: 1.6rem;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5rem 4rem 0.6rem 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-nav li .categoryttl:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categoryttl {
    padding: 1.5rem 4rem 1.5rem 0rem;
    border-bottom: 1px solid #2D8BDE;
  }
}
.l-header-nav li .categoryttl:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.3rem;
  height: 0.4rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categoryttl:after {
    width: 1.9rem;
    height: 2rem;
    background: url(img/common_icn_plus.svg) no-repeat center center/contain;
  }
}
.l-header-nav li .categoryttl.is-active:after {
  background: url(img/common_icn_minus.svg) no-repeat center center/contain;
}
.l-header-nav li .undernav {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav {
    padding-bottom: 0.5rem;
    display: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}
.l-header-nav li .undernav li + li {
  margin-top: 1rem;
}
.l-header-nav li .undernav li a {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  padding: 0.2rem 4rem 0.2rem 0;
  position: relative;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav li a {
    font-size: 1.4rem;
    padding: 0.5rem 4rem 0.5rem 0;
  }
}
.l-header-nav li .undernav li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 0.4rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav li a:after {
    width: 1.5rem;
    height: 2rem;
    right: 0;
  }
}
.l-header-nav li .categorylink {
  font-size: 1.6rem;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5rem 4rem 0.6rem 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-nav li .categorylink:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categorylink {
    padding: 1.5rem 4rem 1.5rem 0;
    border-bottom: 1px solid #2D8BDE;
  }
}
.l-header-nav li .categorylink:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 0.4rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categorylink:after {
    width: 1.5rem;
    height: 2rem;
    right: 0;
  }
}
.l-header-indexnav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 2rem;
}
.l-header-indexnav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 5.5rem;
}
.l-header-indexnav ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0D1319;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-indexnav ul li a {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-indexnav ul li a:hover {
    opacity: 0.7;
  }
}

.ipad .l-header-btns .btn {
  -webkit-transition: none;
  transition: none;
}

.l-bg {
  width: 100vw;
  height: 100vh;
  background: #002E57;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-bg.is-show {
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.4;
}

/* --------------------------------------------------
    footerabout
-------------------------------------------------- */
.l-footerabout {
  position: relative;
  margin-top: -15rem;
  padding: 10rem 0 8rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-footerabout {
    padding: 4.5rem 0 3rem;
    margin-top: 7rem;
  }
}
.l-footerabout:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4rem;
  width: 100%;
  height: calc(100% + 4rem);
  clip-path: polygon(0% 0%, 100% 22.5rem, 100% 100%, 0% 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), to(rgb(45, 139, 222)));
  background: linear-gradient(to right, rgb(0, 91, 172), rgb(45, 139, 222));
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-footerabout:before {
    clip-path: polygon(0% 0%, 100% 5rem, 100% 100%, 0% 100%);
    top: 0;
  }
}
.l-footerabout .c-inner {
  padding-right: 45rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .c-inner {
    padding-right: 4%;
  }
}
.l-footerabout .-photo {
  position: absolute;
  right: calc(50% - 69rem);
  top: -11rem;
  width: 55rem;
  height: 56rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-photo {
    width: 34.5rem;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    margin: -7.5rem auto 1rem;
  }
}
.l-footerabout .-ttl {
  padding-top: 6rem;
  position: relative;
  width: 27.6rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-ttl {
    width: 21.9rem;
    margin: 0 auto;
  }
}
.l-footerabout .-ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 29.7rem;
  height: 2.7rem;
  background: url(img/common_footerabout_en.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-ttl:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 30rem;
    height: 2.8rem;
  }
}
.l-footerabout .-detail {
  margin-top: 3rem;
  color: #fff;
  line-height: 1.9;
}
.l-footerabout .-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-btn {
    margin-top: 2rem;
    text-align: right;
  }
}
.l-footerabout .-btn a {
  display: inline-block;
  padding: 0 3.5rem 0.6rem 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-btn a {
    padding: 0 3rem 0.5rem 0;
  }
}
.l-footerabout .-btn a:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.2rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 0.75rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-btn a:after {
    width: 1.3rem;
    height: 0.5rem;
  }
}

/* --------------------------------------------------
    footer
-------------------------------------------------- */
.l-footer {
  background: #003E75;
  position: relative;
  z-index: 3;
  color: #fff;
}
.l-footer.m-noabout {
  margin-top: -20rem;
}
@media screen and (max-width: 767px) {
  .l-footer.m-noabout {
    margin-top: 3rem;
  }
}
.l-footer-main {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 3rem;
  width: 110rem;
  margin: 0 auto;
  padding: 14.5rem 0 10.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 4.5rem 1.5rem 7rem;
    width: 100%;
    position: relative;
  }
}
.l-footer-disclaimer {
  font-size: 1.3rem;
  letter-spacing: -0.01rem;
  line-height: 1.6;
  padding: 2rem;
  width: 27.5rem;
  background: #005BAC;
}
@media screen and (max-width: 767px) {
  .l-footer-disclaimer {
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-footer-disclaimer a {
  text-decoration: underline;
}
.l-footer-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-body {
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.l-footer-body .-box a, .l-footer-body .-box span {
  display: inline-block;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box a, .l-footer-body .-box span {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box a {
    padding: 1.5rem 4rem 1.5rem 0;
    width: 100%;
    display: block;
  }
  .l-footer-body .-box a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
    width: 1.5rem;
    height: 0.5rem;
  }
}
.l-footer-body .-box .ttl br, .l-footer-body .-box .list li a br {
  display: none;
}
.l-footer-body .-box .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid #848484;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl {
    padding-bottom: 0;
    line-height: 1.5;
  }
}
.l-footer-body .-box .ttl span {
  position: relative;
  padding-right: 4rem;
}
.l-footer-body .-box .ttl span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.6rem;
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl span:after {
    width: 1.9rem;
    height: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl a {
    padding-right: 0;
  }
  .l-footer-body .-box .ttl a:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl.js-spAccordion a, .l-footer-body .-box .ttl.js-spAccordion span {
    padding: 1.5rem 4rem 1.5rem 0;
  }
  .l-footer-body .-box .ttl.js-spAccordion a:after, .l-footer-body .-box .ttl.js-spAccordion span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(img/common_icn_plus.svg) no-repeat center center/contain;
    width: 1.9rem;
    height: 2rem;
  }
}
.l-footer-body .-box .ttl.js-spAccordion.is-active a:after, .l-footer-body .-box .ttl.js-spAccordion.is-active span:after {
  background-image: url(img/common_icn_minus.svg);
}
.l-footer-body .-box .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 4rem;
  margin-top: 1.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.l-footer-body .-box .list li a {
  font-size: 1.5rem;
  line-height: 1.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list li a {
    display: block;
    padding: 0.7rem 4rem 0.7rem 0;
    border-bottom: none;
    font-weight: 400;
    position: relative;
  }
  .l-footer-body .-box .list li a:after {
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
    width: 1.5rem;
    height: 0.5rem;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list.js-spAccordion-body {
    display: none;
  }
}
.l-footer-body .-box + .-box {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box + .-box {
    margin-top: 0;
  }
}
.l-footer-note {
  font-size: 1.2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-note {
    font-size: 1.2rem;
    padding: 0 5%;
    margin-bottom: 3rem;
    position: absolute;
    bottom: 2rem;
  }
}
.l-footer-copyright {
  background: #2D8BDE;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    margin-top: 0;
    padding: 0.8rem 0;
  }
}
.l-footer-copyright .c-inner {
  position: relative;
}
.l-footer-copyright .c-inner .-sitemap {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
}
.l-footer-copyright .c-inner .-sitemap a {
  text-decoration: underline;
}

.l-fixedbtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.l-fixedbtn.is-hide {
  opacity: 0;
  pointer-events: none;
}
.l-fixedbtn.is-active {
  opacity: 1;
  pointer-events: auto;
}
.l-fixedbtn.is-active.is-foot {
  position: absolute;
  top: 0rem;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn.is-active.is-foot {
    opacity: 0;
    pointer-events: none;
    bottom: 0;
    top: auto;
  }
}
.l-fixedbtn.is-active.is-hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn {
    right: auto;
    left: 0;
  }
}
.l-fixedbtn .-btn a {
  position: relative;
  color: #fff;
  width: 37.6rem;
  height: 8.7rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: url(img/common_fixedbtn_pc.jpg) no-repeat center center/cover;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn .-btn a {
    width: 27.7rem;
    height: 7.6rem;
    background-image: url(img/common_fixedbtn_sp.png);
    padding-left: 1.5rem;
    padding-bottom: 0.8rem;
  }
}
@media screen and (any-hover: hover) {
  .l-fixedbtn .-btn a:hover {
    opacity: 0.7;
  }
}

.l-pagetop {
  position: fixed;
  bottom: 10.5rem;
  right: 1.8rem;
  z-index: 90;
  width: 4.1rem;
  height: 4.1rem;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    width: 4.1rem;
    height: 4.1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.l-pagetop.is-hide {
  opacity: 0;
  pointer-events: none;
}
.l-pagetop.is-active {
  opacity: 0.7;
  pointer-events: auto;
}
.l-pagetop.is-active.is-hide {
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------
	section size
-------------------------------------------------- */
.l-footerabout {
  margin-top: 30rem;
}

.l-index {
  color: #003E75;
}

.p-opening {
  background: #fff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: auto;
  display: none;
}
.p-opening .-txt {
  position: absolute;
  left: calc(50% - 1.5rem);
  top: calc(50% + 1.5rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt {
    left: 50%;
    top: calc(50% - 4rem);
  }
}
.p-opening .-txt .line {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Sans JP tategaki";
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt .line {
    font-size: 1.8rem;
  }
}
.p-opening .-txt .line span {
  width: 3.5rem;
  height: 3.3rem;
  display: inline-block;
  border: 0.2rem solid #E1E1E1;
  text-align: center;
  line-height: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt .line span {
    width: 2.7rem;
    height: 2.9rem;
    line-height: 2.2rem;
  }
}
.p-opening .-txt .line span + span {
  margin-top: -0.1rem;
}
.p-opening .-txt .line:nth-of-type(1) {
  position: relative;
}
.p-opening .-txt .line:nth-of-type(1) .deco {
  width: 0.8rem;
  height: 0;
  position: absolute;
  overflow: hidden;
}
.p-opening .-txt .line:nth-of-type(1) .deco img {
  position: absolute;
  width: 100%;
  height: 10.7rem;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt .line:nth-of-type(1) .deco img {
    height: 8.5rem;
  }
}
.p-opening .-txt .line:nth-of-type(1) .deco.m-01 {
  right: -0.8rem;
  top: 11rem;
  -webkit-animation: opening-deco 0.3s 0.3s ease-out forwards;
          animation: opening-deco 0.3s 0.3s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt .line:nth-of-type(1) .deco.m-01 {
    top: 9.6rem;
  }
}
.p-opening .-txt .line:nth-of-type(1) .deco.m-01 mg {
  top: 0;
}
.p-opening .-txt .line:nth-of-type(1) .deco.m-02 {
  right: -1rem;
  top: 27rem;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  -webkit-animation: opening-deco 0.3s 0.7s ease-out forwards;
          animation: opening-deco 0.3s 0.7s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt .line:nth-of-type(1) .deco.m-02 {
    top: 24rem;
  }
}
.p-opening .-txt .line:nth-of-type(1) .deco.m-02 img {
  bottom: 0;
}
.p-opening .-txt .line:nth-of-type(3) {
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-opening .-txt .line:nth-of-type(3) {
    margin-right: 2rem;
  }
}
.p-opening .-skip {
  width: 8.9rem;
  height: 8.9rem;
  position: absolute;
  right: 8rem;
  top: calc(100svh - 17.5rem);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-opening .-skip {
    width: 6rem;
    height: 6rem;
    right: 4%;
    top: calc(100svh - 10rem);
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-opening .-skip:hover {
    opacity: 0.7;
  }
}
@-webkit-keyframes opening-deco {
  0% {
    height: 0;
  }
  100% {
    height: 10.5rem;
  }
}
@keyframes opening-deco {
  0% {
    height: 0;
  }
  100% {
    height: 10.5rem;
  }
}

.p-mv {
  background: url(img/index_mv_bg_pc.png) no-repeat right top/100% 100%;
}
@media screen and (max-width: 767px) {
  .p-mv {
    background: url(img/index_mv_bg_sp.png) no-repeat center top -22px/100% auto;
  }
}
.p-mv-wrap {
  margin: 0 auto;
  min-height: 74.7rem;
  max-width: 153rem;
  padding: 0.5rem 5.5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv-wrap {
    padding: 1rem 0 0 4%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
.p-mv .-pre {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  margin-right: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-mv .-pre {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-mv .-sponsored {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-mv .-sponsored {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0.2rem;
  }
}
.p-mv .-logo {
  display: block;
  width: 27.6rem;
  position: absolute;
  left: 82.2rem;
  top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv .-logo {
    width: 20rem;
    margin-top: 1rem;
    position: static;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-mv .-note {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-mv .-note {
    margin-top: 10rem;
    color: #B7B7B7;
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
.p-mv .-img {
  width: 81.1rem;
  position: absolute;
  top: 5.5rem;
  z-index: 2;
  left: -5rem;
}
@media screen and (max-width: 767px) {
  .p-mv .-img {
    width: 100%;
    position: relative;
    top: 0;
    margin-top: -2rem;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.p-mv .-img:before {
  content: "";
  width: 70.2rem;
  height: 90.1rem;
  background: url(img/index_mv_photo_deco_pc.png) no-repeat center center/cover;
  position: absolute;
  left: 4.5rem;
  top: -9.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv .-img:before {
    display: none;
  }
}
.p-mv .-txt {
  color: #fff;
  padding: 18.3rem 0 0 77rem;
  font-size: 4.5rem;
  letter-spacing: -0.2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-mv .-txt {
    position: relative;
    z-index: 2;
    padding: 0 7% 0 0;
    font-size: 2rem;
    line-height: 1.2;
    text-align: right;
    margin-top: -3rem;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
  }
}
.p-mv .-txt .m-01 {
  display: block;
}
.p-mv .-txt .m-02 {
  display: block;
  margin: 1rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-mv .-txt .m-02 {
    margin: 0 0 1rem;
  }
}
.p-mv .-txt .m-02 .big {
  font-size: 7rem;
  display: inline-block;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv .-txt .m-02 .big {
    font-size: 3.2rem;
    margin: 0;
  }
}
.p-mv .-txt .m-02 .deco {
  display: inline-block;
  padding-right: 0.6rem;
  position: relative;
  z-index: -1;
}
.p-mv .-txt .m-02 .deco .mask {
  position: absolute;
  left: -3rem;
  top: 0;
  z-index: -1;
  width: 21.9rem;
  height: 12rem;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv .-txt .m-02 .deco .mask {
    left: -2rem;
    top: -0.8rem;
    width: 9.9rem;
    height: 6.4rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-mv .-txt .m-02 .deco .mask svg {
  width: 22.2rem;
  height: 13.8rem;
}
@media screen and (max-width: 767px) {
  .p-mv .-txt .m-02 .deco .mask svg {
    width: 9.6rem;
    height: 6.6rem;
  }
}
.p-mv .-txt .m-03 {
  display: block;
}

.p-message .-unit {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message .-unit {
    padding: 0 4%;
  }
}
@media screen and (max-width: 767px) {
  .p-message .-unit .unit-img {
    display: none;
  }
}
.p-message .-unit .unit-txt p {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-message .-unit .unit-txt p {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
.p-message .-unit .unit-txt p + p {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-message .-unit .unit-txt p + p {
    margin-top: 3rem;
  }
}
.p-message .-unit.m-01 .unit-img {
  width: 41.7647058824vw;
  height: 56.1rem;
  position: absolute;
  right: 0;
  top: -8.5rem;
  z-index: 2;
}
.p-message .-unit.m-01 .unit-img:after {
  content: "";
  width: calc(100% - 3.5rem);
  height: 100%;
  position: absolute;
  left: 3.5rem;
  bottom: -2.3rem;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), color-stop(60%, rgba(0, 91, 172, 0)));
  background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgba(0, 91, 172, 0) 60%);
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
  z-index: -1;
}
.p-message .-unit.m-01 .unit-img .-wrap {
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
  height: 100%;
}
.p-message .-unit.m-01 .unit-img .-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-message .-unit.m-01 .unit-txt {
  width: 90rem;
  padding: 6rem 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-message .-unit.m-01 .unit-txt {
    width: 100%;
    padding-top: 1rem;
  }
}
.p-message .-unit.m-02 {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-message .-unit.m-02 {
    margin-top: 0;
  }
}
.p-message .-unit.m-02 .unit-img {
  width: 36.339869281vw;
  height: 61rem;
  position: absolute;
  left: 3rem;
  top: 6.5rem;
}
.p-message .-unit.m-02 .unit-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 3.5rem;
  bottom: -2.3rem;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), color-stop(60%, rgba(0, 91, 172, 0)));
  background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgba(0, 91, 172, 0) 60%);
  clip-path: polygon(0 14%, 100% 0%, 100% 86%, 0% 100%);
  z-index: -1;
}
.p-message .-unit.m-02 .unit-img .-wrap {
  clip-path: polygon(0 14%, 100% 0%, 100% 86%, 0% 100%);
  height: 100%;
}
.p-message .-unit.m-02 .unit-img .-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-message .-unit.m-02 .unit-txt {
  width: 110.8rem;
  padding: 6rem 0 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-message .-unit.m-02 .unit-txt {
    padding-top: 3rem;
    width: 100%;
  }
}
.p-message .-unit.m-02 .unit-txt p {
  width: 63rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-message .-unit.m-02 .unit-txt p {
    width: 100%;
  }
}
.p-message .-unit.m-02 .unit-txt p + p {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-message .-unit.m-02 .unit-txt p + p {
    margin-top: 3rem;
  }
}
.p-message .-unit .draw {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.p-message .-unit .draw .deco {
  width: 0;
  height: 1.5rem;
  position: absolute;
  left: -1.5rem;
  bottom: -0.5rem;
  -webkit-animation: message-draw 0.3s ease-in forwards;
          animation: message-draw 0.3s ease-in forwards;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-message .-unit .draw .deco {
    height: 1rem;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
}
.p-message .-unit .draw .deco:before {
  content: "";
  width: 13.4rem;
  height: 100%;
  background: url(img/index_deco_line01.svg) no-repeat center center/contain;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-message .-unit .draw .deco:before {
    width: 6rem;
  }
}
@-webkit-keyframes message-draw {
  0% {
    width: 0;
  }
  100% {
    width: 13.4rem;
    @media screen and (max-width: 767px) {
      .p-message .-unit .draw .deco {
        width: 6rem;
      }
    }
  }
}
@keyframes message-draw {
  0% {
    width: 0;
  }
  100% {
    width: 13.4rem;
    @media screen and (max-width: 767px) {
      .p-message .-unit .draw .deco {
        width: 6rem;
      }
    }
  }
}

.p-messageslider {
  background: url(img/index_messageslider_bg_pc.png) no-repeat center top/100% 100%;
  margin-top: 7rem;
  padding-top: 2rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-messageslider {
    background: url(img/index_messageslider_bg_sp.png) no-repeat center top/100% auto;
    position: relative;
    margin-top: 0;
    padding-top: 14rem;
  }
}
.p-messageslider-main {
  position: relative;
  z-index: 2;
}
.p-messageslider-main .swiper-wrapper {
  min-height: 54.2483660131vw;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .swiper-wrapper {
    min-height: 41rem;
  }
}
.p-messageslider-main .-slide {
  position: relative;
}
.p-messageslider-main .-slide .wrap {
  position: relative;
}
.p-messageslider-main .-slide .wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(45, 139, 222)), color-stop(79%, rgba(0, 91, 172, 0.01)), color-stop(80%, rgba(0, 91, 172, 0)));
  background: linear-gradient(to right, rgb(45, 139, 222) 0%, rgba(0, 91, 172, 0.01) 79%, rgba(0, 91, 172, 0) 61%);
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
  position: absolute;
  left: 4rem;
  top: 4rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .-slide .wrap:before {
    left: 1.5rem;
    top: 1.5rem;
  }
}
.p-messageslider-main .-slide .img {
  width: 100%;
  height: 100%;
  aspect-ratio: 904/794;
  overflow: hidden;
  background: #ccc;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
}
.p-messageslider-main .-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-messageslider-main .-slide .txt {
  position: absolute;
  left: 5rem;
  bottom: 0rem;
  gap: 1rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .-slide .txt {
    display: block;
    left: 0;
    bottom: 5rem;
  }
}
.p-messageslider-main .-slide .txt-line {
  color: #fff;
  font-size: 1.8300653595vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1rem;
  display: inline-block;
  padding: 1rem 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Sans JP tategaki";
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .-slide .txt-line {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-family: "Noto Sans JP";
  }
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .-slide .txt-line {
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
    line-height: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .p-messageslider-main .-slide .txt-line .mark {
    text-combine-upright: all;
    display: inline-block;
  }
  .p-messageslider-main .-slide .txt-line .mark.m-01 {
    -webkit-transform: rotate(180deg) translateX(-1rem);
            transform: rotate(180deg) translateX(-1rem);
  }
  .p-messageslider-main .-slide .txt-line .mark.m-02 {
    -webkit-transform: rotate(180deg) translate(1rem, 0.6rem);
            transform: rotate(180deg) translate(1rem, 0.6rem);
  }
}
.p-messageslider-main .-slide .txt-line span {
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.9s;
  transition: opacity 0.2s 0.9s;
}
.p-messageslider-main .-slide .txt-line:before {
  content: "";
  width: 100%;
  height: 0;
  background: #1e64a2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: height 0.3s 0.5s;
  transition: height 0.3s 0.5s;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .-slide .txt-line:before {
    height: 100%;
    width: 0;
    -webkit-transition: width 0.3s 0.5s;
    transition: width 0.3s 0.5s;
  }
}
.p-messageslider-main .swiper-slide {
  width: 36.1%; /*中央スライドの幅*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .swiper-slide {
    width: 80%;
  }
}
.p-messageslider-main .swiper-slide .wrap {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  z-index: 0;
  margin-left: -9%;
  margin-right: -9%;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .swiper-slide .wrap {
    -webkit-transform: scale(0.82);
            transform: scale(0.82);
    margin-left: -5.1%;
    margin-right: -5.1%;
  }
}
.p-messageslider-main .swiper-slide.is-current {
  z-index: 2;
}
.p-messageslider-main .swiper-slide.is-current .wrap {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-messageslider-main .swiper-slide.is-current .txt .txt-line span {
  opacity: 1;
}
.p-messageslider-main .swiper-slide.is-current .txt .txt-line:before {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .swiper-slide.is-current .txt .txt-line:before {
    width: 100%;
  }
}
.p-messageslider-main .swiper-slide.next-current .wrap {
  margin-top: -9%;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .swiper-slide.next-current .wrap {
    margin-top: -14%;
  }
}
.p-messageslider-main .swiper-slide.was-current .wrap {
  margin-top: 21%;
}
@media screen and (max-width: 767px) {
  .p-messageslider-main .swiper-slide.was-current .wrap {
    margin-top: 15%;
  }
}
.p-messageslider-sub {
  position: relative;
  top: -11.1111111111vw;
  max-width: 76.4705882353vw;
  margin: 0 0 0 auto;
  padding-right: 11.7647058824vw;
  text-align: right;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-messageslider-sub {
    position: absolute;
    top: 8.5rem;
    height: calc(100% - 14rem);
    max-width: none;
    padding-right: 0;
    width: 100%;
  }
}
.p-messageslider-sub .-line.m-01 {
  color: #fff;
  font-size: 3.7908496732vw;
  font-weight: 700;
  letter-spacing: -0.3rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-messageslider-sub .-line.m-01 {
    font-size: 2rem;
    text-align: left;
    padding-left: 3.5rem;
    letter-spacing: 0;
    line-height: 1.1;
  }
}
.p-messageslider-sub .-line.m-01 .big {
  font-size: 5.8823529412vw;
}
@media screen and (max-width: 767px) {
  .p-messageslider-sub .-line.m-01 .big {
    font-size: 3.4rem;
  }
}
.p-messageslider-sub .-line.m-02 {
  color: #fff;
  font-size: 2.8758169935vw;
  font-weight: 700;
  letter-spacing: -0.1960784314vw;
  line-height: 1;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-messageslider-sub .-line.m-02 {
    font-size: 2rem;
    position: absolute;
    bottom: 0;
    line-height: 1.5;
    right: 5%;
  }
}
.p-messageslider-sub .-line.m-02 .wrap {
  margin: 0 0.5rem;
}
.p-messageslider-sub .-line.m-02 .box {
  font-size: 5.8823529412vw;
  color: #ECBF3F;
  display: inline-block;
  border: 0.2rem solid #E1E1E1;
  line-height: 1;
  padding: 0 0.5rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-messageslider-sub .-line.m-02 .box {
    font-size: 4.1rem;
    padding: 0 0.4rem 0.5rem 0.2rem;
  }
}
.p-messageslider-sub .-line.m-02 .box + .box {
  margin-left: -0.1rem;
}
.p-messageslider-sub .-en {
  width: 19.0196078431vw;
  height: 13.2679738562vw;
  position: absolute;
  left: -0.6535947712vw;
  top: -65px;
}
@media screen and (max-width: 767px) {
  .p-messageslider-sub .-en {
    width: 20.3rem;
    height: 5.5rem;
    left: 4%;
    top: -0.6rem;
    z-index: -1;
    display: none;
  }
}
.p-messageslider-sub .-en img {
  width: 100%;
}

.p-interview {
  position: relative;
  background: url(img/index_interview_bg_pc.jpg) no-repeat center bottom 2rem/100% auto;
  padding: 12rem 0 0;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .p-interview {
    margin-top: -3rem;
    background: url(img/index_interview_bg_sp.jpg) no-repeat center top/100% auto;
  }
}
.p-interview:before {
  content: "";
  width: 91.9rem;
  height: 14.8rem;
  background: url(img/index_interview_en.svg) no-repeat center center/contain;
  position: absolute;
  left: 2.5rem;
  top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview:before {
    width: 30rem;
    height: 4.8rem;
    top: 5rem;
    left: 0.5rem;
  }
}
.p-interview-head {
  position: relative;
  margin-top: 1rem;
}
.p-interview-head:before {
  content: "";
  position: absolute;
  width: 30.4rem;
  height: 11.1rem;
  background: url(img/common_deco.svg) no-repeat center center/cover;
  width: 41.5rem;
  height: 15.2rem;
  right: -9rem;
  bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head:before {
    width: 10rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-head:before {
    content: none;
  }
}
.p-interview-head .-ttl {
  margin-left: -1.5rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-interview-head .-ttl {
    margin-left: -3rem;
  }
}
.p-interview-head .-ttl span {
  color: #005BAC;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head .-ttl span {
    font-size: 1.5rem;
    padding-left: 4.2rem;
  }
}
.p-interview-head .-ttl span:before {
  content: "";
  width: 4rem;
  height: 2.2rem;
  background: url(img/common_sponsored_icn.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head .-ttl span:before {
    width: 3.6rem;
    height: 2.1rem;
    top: 0rem;
  }
}
.p-interview-head .-headline {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.35rem;
  margin: 3.5rem 0 0 5rem;
  color: #005BAC;
}
@media screen and (max-width: 767px) {
  .p-interview-head .-headline {
    font-size: 2rem;
    margin-left: 0;
    letter-spacing: -0.2rem;
  }
}
.p-interview-head .-headline .big {
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .p-interview-head .-headline .big {
    font-size: 3.2rem;
  }
}
.p-interview-head .-detail {
  max-width: 57rem;
  margin: 2.5rem 0 0 5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-interview-head .-detail {
    font-size: 1.4rem;
    margin: 2rem 0 0 0;
  }
}
.p-interview-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-interview-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.p-interview-body .-unit {
  position: relative;
}
.p-interview-body .-unit:nth-child(even) {
  margin-top: -8.2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-body .-unit:nth-child(even) {
    margin-top: 0;
  }
}
.p-interview-body .-unit a {
  display: block;
  position: relative;
  z-index: 2;
}
.p-interview-body .-unit a:before {
  content: "";
  width: calc(100% - 2rem);
  height: 100%;
  position: absolute;
  left: 2.5rem;
  bottom: -1.4rem;
  z-index: -1;
  background: url(img/index_interview_deco_before.png) no-repeat center center/100% 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-interview-body .-unit a:after {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 5rem);
  position: absolute;
  left: 2.5rem;
  bottom: 3rem;
  z-index: -1;
  background: url(img/index_interview_deco_after.png) no-repeat center center/100% 100%;
  -webkit-transition: bottom 0.3s, height 0.3s;
  transition: bottom 0.3s, height 0.3s;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-interview-body .-unit a:hover {
    opacity: 1;
  }
  .p-interview-body .-unit a:hover .img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-interview-body .-unit a:hover:before {
    opacity: 0;
  }
  .p-interview-body .-unit a:hover:after {
    opacity: 1;
    bottom: -2.8rem;
    height: 100%;
  }
}
.p-interview-body .-unit .num {
  width: 3.8rem;
  position: absolute;
  left: 0;
  top: 8.2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-interview-body .-unit .num {
    width: 2.4rem;
    top: 5.5rem;
  }
}
.p-interview-body .-unit .img {
  width: 100%;
  height: 47.3rem;
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-interview-body .-unit .img {
    height: 30.8rem;
  }
}
.p-interview-body .-unit .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-interview-body .-unit .img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(47%, rgba(125, 185, 232, 0)), color-stop(76%, rgba(0, 66, 125, 0.67)), to(rgb(0, 62, 117)));
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 47%, rgba(0, 66, 125, 0.67) 76%, rgb(0, 62, 117) 100%);
}
.p-interview-body .-unit .txt {
  position: absolute;
  left: 4rem;
  bottom: 8.7rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-interview-body .-unit .txt {
    font-size: 1.8rem;
    left: 2rem;
    bottom: 5rem;
  }
}
.p-interview-body .-unit .txt .big {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-body .-unit .txt .big {
    font-size: 2.5rem;
  }
}
.p-interview-body .-unit .more {
  width: 8.9rem;
  position: absolute;
  right: 3.5rem;
  bottom: 9rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-interview-body .-unit .more {
    width: 4.9rem;
    bottom: 6rem;
    right: 1rem;
  }
}
.p-interview-gallery {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .swiper-wrapper {
    margin-bottom: 3rem;
  }
}
.p-interview-gallery .swiper-slide {
  width: 100rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .swiper-slide {
    width: 100%;
  }
}
.p-interview-gallery .swiper-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 87, 0.5);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .swiper-slide:before {
    background: none;
  }
}
.p-interview-gallery .swiper-slide.swiper-slide-active:before {
  display: none;
}
.p-interview-gallery .-slide {
  background: #fff;
}
.p-interview-gallery .-slide .slide-head {
  background: #2D8BDE;
  padding: 2.3rem 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-head {
    padding: 1.5rem 2rem 1.5rem 2rem;
    z-index: 2;
  }
}
.p-interview-gallery .-slide .slide-head .-num {
  position: absolute;
  height: 2.5rem;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-head .-num {
    left: auto;
    top: 0.2rem;
    margin: 0;
    z-index: -1;
  }
}
.p-interview-gallery .-slide .slide-head .-num img {
  width: auto;
  height: 100%;
}
.p-interview-gallery .-slide .slide-head .-ttl {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-head .-ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.p-interview-gallery .-slide .slide-body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  gap: 3.5rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-bottom: 3rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-left {
  width: 31.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 2rem 0 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.p-interview-gallery .-slide .slide-body .body-left .-img {
  width: 100%;
  aspect-ratio: 315/381;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-left .-img {
    margin: 1.5rem auto;
    width: 20.2rem;
    aspect-ratio: 202/150;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-interview-gallery .-slide .slide-body .body-left .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview-gallery .-slide .slide-body .body-left .-info {
  margin-top: 2rem;
  padding-left: 4rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-left .-info {
    margin-top: 0;
    padding-left: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-interview-gallery .-slide .slide-body .body-left .-info .name {
  display: inline-block;
  color: #004384;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-left .-info .name {
    font-size: 1.1rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-left .-info .name span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-left .-info .name span {
    font-size: 2.2rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-left .-info .year {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #B7B7B7;
  border: 1px solid #B7B7B7;
  padding: 0.2rem 0.5rem;
}
.p-interview-gallery .-slide .slide-body .body-left .-position {
  margin-top: 1rem;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-left .-position {
    padding-left: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-interview-gallery .-slide .slide-body .body-left .-position ul {
  margin: 0;
}
.p-interview-gallery .-slide .slide-body .body-left .-position ul li {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004384;
  padding-left: 1.5rem;
  position: relative;
}
.p-interview-gallery .-slide .slide-body .body-left .-position ul li:before {
  content: "";
  width: 1.1rem;
  height: 0.2rem;
  background: #ECBF3F;
  position: absolute;
  left: 0;
  top: 1rem;
}
.p-interview-gallery .-slide .slide-body .body-left .-position ul li + li {
  margin-top: 0.8rem;
}
.p-interview-gallery .-slide .slide-body .body-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #002E57;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right {
    padding: 0 2rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 3.8rem 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-ttl {
    font-size: 1.9rem;
    margin: 0;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-detail {
  margin: 2.5rem 3.2rem 0 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-detail {
    margin: 2rem 0 0 0;
    font-size: 1.45rem;
    line-height: 1.7;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-pickup {
  background: #EEF6FD;
  padding: 3.5rem 4rem 2rem 2.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  margin-top: 2.5rem;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-pickup {
    display: block;
    padding: 0 1rem 1.5rem 1.5rem;
    width: calc(100% + 2rem);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-pickup .ttl {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Sans JP tategaki";
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D8BDE;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-pickup .ttl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-family: "Noto Sans JP";
  }
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-pickup .ttl {
    padding: 1rem 0 1rem 4.5rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-pickup .ttl:before {
  content: "";
  width: 3.8rem;
  height: 3.8rem;
  background: url(img/index_interview_gallery_icn.svg) no-repeat center center/contain;
  position: absolute;
  left: 1.8rem;
  top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-pickup .ttl:before {
    left: 0;
    top: 0.1rem;
    width: 3.8rem;
    height: 3.8rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-pickup .main-point {
  font-size: 1.8rem;
  font-weight: 700;
  background: #fff;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-pickup .main-point {
    width: calc(100% + 2rem);
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-pickup .main-detail {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-pickup .main-detail {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-link {
  text-align: right;
  margin: 2rem 4.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .-slide .slide-body .body-right .-link {
    text-align: right;
    margin: 3rem 0 0 1.5rem;
  }
}
.p-interview-gallery .-slide .slide-body .body-right .-link a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  background: #fff;
  position: relative;
  padding: 0 3.5rem 0.4rem 0;
}
.p-interview-gallery .-slide .slide-body .body-right .-link a:before {
  content: "";
  width: calc(100% - 4rem);
  height: 0.1rem;
  background: #003E75;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-interview-gallery .-slide .slide-body .body-right .-link a:after {
  content: "";
  width: 2.9rem;
  height: 3rem;
  background: url(img/common_icn_circlearw_bl.svg) no-repeat center center/100% auto;
  position: absolute;
  right: 0;
  top: calc(50% - 0.1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  will-change: transform;
}
.p-interview-gallery .swiper-button-next, .p-interview-gallery .swiper-button-prev {
  width: 5.1rem;
  height: 5.1rem;
  color: transparent;
  font-size: 0;
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/contain;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-interview-gallery .swiper-button-next:after, .p-interview-gallery .swiper-button-prev:after {
  content: none;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-interview-gallery .swiper-button-next:hover, .p-interview-gallery .swiper-button-prev:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .swiper-button-next, .p-interview-gallery .swiper-button-prev {
    top: auto;
    width: 7.5rem;
    height: 3.9rem;
    position: relative;
    z-index: 10;
  }
}
.p-interview-gallery .swiper-button-prev {
  left: calc(50% - 58.6rem);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .swiper-button-prev {
    left: 0;
    background: url(img/index_interview_gallery_prev_sp.svg) no-repeat center center/contain;
    margin: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.p-interview-gallery .swiper-button-next {
  left: calc(50% + 53.6rem);
}
@media screen and (max-width: 767px) {
  .p-interview-gallery .swiper-button-next {
    left: auto;
    right: 0;
    top: 0;
    background: url(img/index_interview_gallery_next_sp.svg) no-repeat center center/contain;
    margin: -3.9rem 0 0 auto;
  }
}

/*magnificpopup*/
.mfp-bg {
  background: #003E75;
  opacity: 0.85;
}
.mfp-bg.mfp-ready {
  opacity: 0.9;
}
.mfp-bg.mfp-removing {
  opacity: 0;
}

.popup-modal-dismiss {
  position: fixed;
  right: 28rem;
  top: 3rem;
  width: 4.4rem;
  height: 4.4rem;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.popup-modal-dismiss img {
  width: 100%;
  height: 100%;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .popup-modal-dismiss:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 767px) {
  .popup-modal-dismiss.m-01 {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .popup-modal-dismiss.m-02 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .swiper-btns {
    position: relative;
  }
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .mfp-wrap .mfp-content {
    padding: 0;
  }
}
.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-close {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .mfp-container {
    padding: 0 4%;
  }
}

.mfp-wrap {
  height: 100vh !important;
  top: 0 !important;
  position: fixed !important;
  overflow: auto !important;
  pointer-events: auto;
}

.mfp-content {
  pointer-events: none;
}

.p-interview-gallery-main .-slide {
  pointer-events: auto;
}

.popup-modal-dismiss, .mfp-close, .swiper-button-prev, .swiper-button-next {
  pointer-events: auto;
}

.p-sponsored {
  background: url(img/common_bg.png) center top;
  margin-top: 32.6797385621vw;
  padding-top: 9.7385620915vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sponsored {
    background: url(img/common_bg_sp.png) left top/17.4rem auto;
    padding: 13rem 0 1rem;
    margin-top: 14rem;
  }
}
.p-sponsored:before {
  content: "";
  width: 100%;
  aspect-ratio: 1530/633;
  position: absolute;
  left: 0;
  top: -32.6797385621vw;
  background: url(img/index_sponsored_bg_pc.png) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .p-sponsored:before {
    aspect-ratio: 375/213;
    background: url(img/index_sponsored_bg_sp.png) no-repeat center top/100% auto;
    top: -10rem;
  }
}
.p-sponsored-photo {
  position: absolute;
  width: 100%;
  left: 0;
  top: -22.3529411765vw;
}
@media screen and (max-width: 767px) {
  .p-sponsored-photo {
    top: -1.8rem;
  }
}
.p-sponsored-photo img {
  width: 100%;
}
.p-sponsored-wrap {
  width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sponsored-wrap {
    width: 100%;
    padding: 0 4%;
  }
}
.p-sponsored .-ttl {
  margin-left: -1.5rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-ttl {
    margin-left: -1rem;
  }
}
.p-sponsored .-ttl span {
  color: #005BAC;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-ttl span {
    font-size: 1.5rem;
    padding-left: 2.2rem;
  }
}
.p-sponsored .-ttl span:before {
  content: "";
  width: 4rem;
  height: 2.2rem;
  background: url(img/common_sponsored_icn.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0rem;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-ttl span:before {
    width: 2.2rem;
    height: 1.2rem;
    top: 0.8rem;
  }
}
.p-sponsored-box {
  background: #fff;
  border: 1px solid #E1E1E1;
  padding: 0 30rem 6rem 4.5rem;
  margin-top: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sponsored-box {
    padding: 0;
    border: none;
    margin-top: 0;
    background: none;
  }
}
.p-sponsored .-logo {
  width: 65rem;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-logo {
    width: 100%;
  }
}
.p-sponsored .-headline {
  color: #005BAC;
  font-size: 7.6rem;
  font-weight: 700;
  position: absolute;
  right: 3.5rem;
  top: -34.6rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Sans JP tategaki";
}
@media screen and (max-width: 767px) {
  .p-sponsored .-headline {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-family: "Noto Sans JP";
  }
}
@media screen and (max-width: 767px) {
  .p-sponsored .-headline {
    font-size: 3.7rem;
    position: static;
  }
}
.p-sponsored .-headline span {
  display: inline-block;
  background: url(img/index_sponsored_headline_bg_pc.png) center top/9.3rem auto;
  line-height: 1.2;
  letter-spacing: 1.4rem;
  padding-top: 1rem;
  width: 9.3rem;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-headline span {
    background: url(img/index_sponsored_headline_bg_sp.png) left top/auto 4.6rem;
    width: auto;
    letter-spacing: 0.7rem;
    line-height: 1;
    padding: 0.4rem 0 0.6rem 0.5rem;
    white-space: nowrap;
  }
}
.p-sponsored .-headline span:nth-of-type(2) {
  margin-top: 6.5rem;
  letter-spacing: 1.49rem;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-headline span:nth-of-type(2) {
    margin-top: 0;
    letter-spacing: 0.76rem;
    padding-left: 0.5rem;
    position: relative;
    top: -0.5rem;
  }
}
.p-sponsored .-headline span strong {
  color: #F95D00;
}
@media screen and (max-width: 767px) {
  .p-sponsored .-detail {
    margin-top: 1.8rem;
  }
}
.p-sponsored .-detail p {
  font-size: 1.5rem;
  line-height: 1.7;
}
.p-sponsored .-detail p + p {
  margin-top: 2.6rem;
}

.p-rewarding {
  background: url(img/common_bg.png) center center;
  padding-bottom: 16.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding {
    background: url(img/common_bg_sp.png) left top/17.4rem auto;
    padding-bottom: 0;
  }
}
.p-rewarding-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head {
    display: block;
  }
}
.p-rewarding-head:before {
  content: "";
  width: 35.5rem;
  height: 5rem;
  background: url(img/index_rewarding_en.svg) no-repeat center center/100% auto;
  position: absolute;
  right: 5%;
  top: 6.8rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head:before {
    width: 15.1rem;
    height: 2.1rem;
    top: 2.2rem;
  }
}
.p-rewarding-head .-txt {
  min-height: 67rem;
  width: 50%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt {
    width: 100%;
    min-height: auto;
  }
}
.p-rewarding-head .-txt:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), color-stop(72%, rgba(26, 119, 201, 0.41)), to(rgba(45, 139, 222, 0.2)));
  background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgba(26, 119, 201, 0.41) 110%, rgba(45, 139, 222, 0.2) 100%);
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt:before {
    display: none;
  }
}
.p-rewarding-head .-txt .txt-wrap {
  width: 50rem;
  color: #fff;
  padding: 18rem 0 8rem 5.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap {
    padding: 0;
    width: 100%;
  }
}
.p-rewarding-head .-txt .txt-wrap .mask {
  position: absolute;
  width: 12.3rem;
  height: 8.5rem;
  left: 18rem;
  top: 17.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .mask {
    width: 6.5rem;
    height: 4.5rem;
    left: 14.5rem;
    top: 6rem;
    z-index: 0;
  }
  .p-rewarding-head .-txt .txt-wrap .mask svg {
    width: 6.5rem;
    height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-ttl {
    text-align: right;
    position: relative;
    width: 100%;
    padding: 6rem 4% 13rem 0;
  }
  .p-rewarding-head .-txt .txt-wrap .-ttl:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), to(rgb(45, 139, 222)));
    background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgb(45, 139, 222) 100%);
    clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
.p-rewarding-head .-txt .txt-wrap .-ttl .pre {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}
.p-rewarding-head .-txt .txt-wrap .-ttl .pre .deco {
  display: inline-block;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-ttl .pre .deco {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-ttl .pre {
    font-size: 2.2rem;
  }
}
.p-rewarding-head .-txt .txt-wrap .-ttl .main {
  display: block;
  margin-top: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-ttl .main {
    margin-top: 0.5rem;
  }
}
.p-rewarding-head .-txt .txt-wrap .-ttl .main-small {
  font-size: 3.8rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.15rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-ttl .main-small {
    font-size: 2.2rem;
  }
}
.p-rewarding-head .-txt .txt-wrap .-ttl .main-big {
  font-size: 5.3rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.3rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-ttl .main-big {
    font-size: 3rem;
    letter-spacing: -0.15rem;
  }
}
.p-rewarding-head .-txt .txt-wrap .-detail {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-txt .txt-wrap .-detail {
    color: #003E75;
    padding: 0 4%;
    margin-top: 2rem;
  }
}
.p-rewarding-head .-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-top: 7rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-img {
    position: absolute;
    width: 100%;
    top: 16rem;
    padding-top: 0;
  }
}
.p-rewarding-head .-img:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ECBF3F;
  position: absolute;
  left: 0;
  top: 0rem;
  clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 81.5%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-img:before {
    top: auto;
    bottom: -1rem;
    left: 0.7rem;
    width: 16.5rem;
    height: 13.1rem;
  }
}
.p-rewarding-head .-img:after {
  content: "";
  position: absolute;
  width: 30.4rem;
  height: 11.1rem;
  background: url(img/common_deco.svg) no-repeat center center/cover;
  background-image: url(img/common_deco_v2.svg);
  left: 1rem;
  bottom: -4.5rem;
  width: 41.5rem;
  height: 15.2rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-img:after {
    width: 10rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-img:after {
    width: 17.7rem;
    height: 6.5rem;
    left: auto;
    right: 3%;
    bottom: -1rem;
  }
}
.p-rewarding-head .-img .img-wrap {
  clip-path: polygon(0 0, 100% 18.5%, 100% 100%, 0 81.5%);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-rewarding-head .-img .img-wrap {
    width: 16.5rem;
    height: 13.1rem;
    clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 81.5%);
  }
}
.p-rewarding-head .-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-rewarding-body {
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body {
    margin-top: 3rem;
  }
}
.p-rewarding-body .-unit {
  position: relative;
}
.p-rewarding-body .-unit .unit-img {
  position: absolute;
  right: 0;
  width: 50vw;
  top: 2.5rem;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-img {
    position: static;
    width: 100%;
  }
}
.p-rewarding-body .-unit .unit-img:before {
  content: "";
  width: 100%;
  height: 100%;
  clip-path: polygon(0 24%, 100% 0, 100% 76%, 0% 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(249, 185, 0)), to(rgba(245, 185, 0, 0)));
  background: linear-gradient(to right, rgb(249, 185, 0) 0%, rgba(245, 185, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: -1.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-img:before {
    display: none;
  }
}
.p-rewarding-body .-unit .unit-img .-imgwrap {
  width: 100%;
  aspect-ratio: 773/456;
  clip-path: polygon(0 24%, 100% 0, 100% 76%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-img .-imgwrap {
    clip-path: none;
    aspect-ratio: 285/139;
    margin-left: 4%;
    width: 96%;
  }
}
.p-rewarding-body .-unit .unit-img .-imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-rewarding-body .-unit .unit-txt {
  min-height: 33.137254902vw;
  width: 110rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 11.1111111111vw 62rem 11rem 6rem;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-txt {
    width: 96%;
    padding: 0;
    margin-left: 4%;
  }
}
.p-rewarding-body .-unit .unit-txt:before {
  content: "";
  width: 71.8954248366vw;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), color-stop(72%, rgba(26, 119, 201, 0.41)), to(rgba(45, 139, 222, 0.2)));
  background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgba(26, 119, 201, 0.41) 95%, rgba(45, 139, 222, 0.2) 100%);
  clip-path: polygon(0 31.5%, 100% 0px, 100% 68.5%, 0% 100%);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-txt:before {
    display: none;
  }
}
.p-rewarding-body .-unit .unit-txt .ttl {
  font-size: 4rem;
  font-weight: 700;
  padding: 0 0 0 7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-txt .ttl {
    font-size: 2.5rem;
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#005BAC), to(#2D8BDE));
    background: linear-gradient(to right, #005BAC 0%, #2D8BDE 100%);
    padding: 0.7rem 0;
  }
}
.p-rewarding-body .-unit .unit-txt .ttl:before {
  content: "";
  position: absolute;
  left: -1rem;
  top: calc(50% + 1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-txt .ttl:before {
    left: 1rem;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-txt .ttl:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    background: -webkit-gradient(linear, right top, left top, from(rgba(249, 185, 0, 0)), to(#ECBF3F));
    background: linear-gradient(to left, rgba(249, 185, 0, 0) 0%, #ECBF3F 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.p-rewarding-body .-unit .unit-txt .detail {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit .unit-txt .detail {
    color: #003E75;
    padding-right: 4%;
  }
}
.p-rewarding-body .-unit.m-01 .unit-txt .ttl:before {
  width: 6.1rem;
  height: 5.3rem;
  background: url(img/index_rewarding_icn01_pc.svg) no-repeat center center/100% auto;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-01 .unit-txt .ttl:before {
    background-image: url(img/index_rewarding_icn01_sp.svg);
    width: 4.9rem;
    height: 4.3rem;
  }
}
.p-rewarding-body .-unit.m-02 {
  margin-top: -4.9019607843vw;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-02 {
    margin-top: 3.5rem;
  }
}
.p-rewarding-body .-unit.m-02 .unit-img {
  right: auto;
  left: 0;
  top: 8.1699346405vw;
  width: calc(50vw - 0.7rem);
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-02 .unit-img {
    width: 100%;
  }
}
.p-rewarding-body .-unit.m-02 .unit-img:before {
  top: auto;
  bottom: -2rem;
}
.p-rewarding-body .-unit.m-02 .unit-txt {
  padding: 1.9607843137vw 6rem 11rem 60.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-02 .unit-txt {
    padding: 0;
  }
}
.p-rewarding-body .-unit.m-02 .unit-txt:before {
  background: -webkit-gradient(linear, right top, left top, from(rgb(0, 91, 172)), color-stop(72%, rgba(26, 119, 201, 0.41)), to(rgba(45, 139, 222, 0.2)));
  background: linear-gradient(to left, rgb(0, 91, 172) 24%, rgba(26, 119, 201, 0.41) 72%, rgba(45, 139, 222, 0.2) 100%);
}
.p-rewarding-body .-unit.m-02 .unit-txt .ttl:before {
  width: 6.2rem;
  height: 4.8rem;
  background: url(img/index_rewarding_icn02_pc.svg) no-repeat center center/100% auto;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-02 .unit-txt .ttl:before {
    background-image: url(img/index_rewarding_icn02_sp.svg);
    top: auto;
    bottom: 0.8rem;
    width: 4.6rem;
    height: 3.6rem;
  }
}
.p-rewarding-body .-unit.m-03 {
  margin-bottom: 1.3071895425vw;
  margin-top: 1.3071895425vw;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-03 {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
  }
}
.p-rewarding-body .-unit.m-03 .unit-img {
  top: -11.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-03 .unit-img {
    top: 0;
  }
}
.p-rewarding-body .-unit.m-03 .unit-txt .ttl {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-03 .unit-txt .ttl {
    margin-top: 0;
  }
}
.p-rewarding-body .-unit.m-03 .unit-txt .ttl:before {
  width: 5.7rem;
  height: 5.7rem;
  background: url(img/index_rewarding_icn03_pc.svg) no-repeat center center/100% auto;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .p-rewarding-body .-unit.m-03 .unit-txt .ttl:before {
    background-image: url(img/index_rewarding_icn03_sp.svg);
    width: 3.2rem;
    height: 3.2rem;
    top: auto;
    bottom: 1.2rem;
    left: 1.5rem;
  }
}
.p-rewarding-foot {
  position: relative;
  margin-top: -3.5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot {
    width: 100%;
    margin-top: 2.5rem;
  }
}
.p-rewarding-foot .-arw {
  width: 3.1rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-arw {
    width: 2.2rem;
  }
}
.p-rewarding-foot .-txt {
  padding: 8rem 0;
  position: relative;
  margin-top: 0.5rem;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt {
    padding: 0 4% 12rem;
    margin-top: 2rem;
  }
}
.p-rewarding-foot .-txt:before {
  content: "";
  width: 72.9rem;
  height: 72.9rem;
  background: url(img/index_rewarding_foot_circle_pc.png) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt:before {
    width: 100%;
    aspect-ratio: 375/515;
    background-image: url(img/index_rewarding_foot_circle_sp.png);
    top: -27rem;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.p-rewarding-foot .-txt .pre {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt .pre {
    font-size: 7VW;
  }
}
.p-rewarding-foot .-txt .pre .deco {
  display: inline-block;
  padding: 0 1rem 0 3rem;
  position: relative;
  z-index: 2;
}
.p-rewarding-foot .-txt .pre .deco .mask {
  position: absolute;
  width: 15.8rem;
  height: 10.6rem;
  left: 1.5rem;
  top: -1.5rem;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt .pre .deco .mask {
    width: 10.3rem;
    height: 6.6rem;
    top: -0.8rem;
  }
  .p-rewarding-foot .-txt .pre .deco .mask svg {
    width: 10.3rem;
    height: 6.6rem;
  }
}
.p-rewarding-foot .-txt .main {
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: -0.2rem;
  line-height: 1.4;
  position: relative;
  padding: 6rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt .main {
    font-size: 7VW;
    padding: 6rem 0 3rem;
  }
}
.p-rewarding-foot .-txt .main:before {
  content: "";
  width: 1.9rem;
  height: 3.3rem;
  background: url(img/index_rewarding_foot_equal.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 1.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt .main:before {
    width: 1.3rem;
    height: 2.3rem;
    top: 1.5rem;
  }
}
.p-rewarding-foot .-txt .main .draw {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.p-rewarding-foot .-txt .main .draw .deco {
  width: 0;
  height: 6rem;
  position: absolute;
  left: 4rem;
  bottom: -4.3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt .main .draw .deco {
    height: 3rem;
    left: 0;
    bottom: -1.5rem;
    z-index: -1;
  }
}
.p-rewarding-foot .-txt .main .draw .deco:before {
  content: "";
  width: 45.6rem;
  height: 100%;
  background: url(img/index_deco_line02.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
@media screen and (max-width: 767px) {
  .p-rewarding-foot .-txt .main .draw .deco:before {
    width: 21.4rem;
    height: 1.9rem;
  }
}
@-webkit-keyframes rewarding-draw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes rewarding-draw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.p-rewarding-foot .-txt .main .draw .deco.is-inview {
  -webkit-animation: rewarding-draw 0.3s 0.3s ease-in forwards;
          animation: rewarding-draw 0.3s 0.3s ease-in forwards;
}

.p-career {
  background: url(img/common_bg.png) center center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-career {
    background: url(img/common_bg_sp.png) left top/17.4rem auto;
  }
}
.p-career:after {
  content: "";
  width: 100%;
  height: calc(100% - 70rem);
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: -1;
}
.p-career-head {
  position: relative;
  z-index: 2;
  background: url(img/index_career_bg_pc.png) no-repeat center top/100% 100%;
  padding: 21.5rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-career-head {
    background: url(img/index_career_bg_sp.png) no-repeat center top/100% 100%;
    padding: 6.5rem 0 8.5rem;
    z-index: 3;
  }
}
.p-career-head:before {
  content: "";
  width: 29.3rem;
  height: 6.5rem;
  background: url(img/index_career_en.svg) no-repeat center center/100% auto;
  position: absolute;
  left: calc(50vw - 55rem);
  top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-career-head:before {
    width: 9.2rem;
    height: 2rem;
    right: 4%;
    left: auto;
    top: 3.5rem;
    opacity: 0.52;
  }
}
.p-career-head .-ttl {
  width: 68.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl {
    position: relative;
    padding-bottom: 4rem;
    width: 100%;
  }
}
.p-career-head .-ttl .mask {
  position: absolute;
  width: 9.3rem;
  height: 6.5rem;
  left: 15.5rem;
  top: 6.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl .mask {
    width: 5.5rem;
    height: 4rem;
    left: 23rem;
    top: 3rem;
    z-index: 2;
  }
  .p-career-head .-ttl .mask svg {
    width: 5.5rem;
    height: 4rem;
  }
}
.p-career-head .-ttl .headline {
  color: #fff;
  letter-spacing: -0.15rem;
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl .headline {
    text-align: right;
  }
}
.p-career-head .-ttl .headline-pre {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl .headline-pre {
    font-size: 1.7rem;
  }
}
.p-career-head .-ttl .headline-main {
  font-size: 4rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.2rem;
  margin-top: 1.8rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl .headline-main {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-top: 0;
  }
  .p-career-head .-ttl .headline-main .small {
    font-size: 1.7rem;
  }
}
.p-career-head .-ttl .headline-main .deco {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 1.5rem;
}
.p-career-head .-ttl .img {
  position: absolute;
  top: -26rem;
  right: -43rem;
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl .img {
    top: auto;
    right: auto;
    bottom: 0;
    left: -4%;
  }
  .p-career-head .-ttl .img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: -0.5rem;
    top: 0.5rem;
    background: #005BAC;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  }
}
.p-career-head .-ttl .img-wrap {
  width: 50rem;
  aspect-ratio: 50/36;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-career-head .-ttl .img-wrap {
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
    width: 12.9rem;
    aspect-ratio: 129/112;
  }
}
.p-career-head .-ttl .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-career-head .-detail {
  font-size: 1.5rem;
  color: #fff;
  width: 35.9rem;
  margin: -5.7rem 0 0 auto;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-career-head .-detail {
    margin-top: 3rem;
    line-height: 1.8;
    width: 100%;
  }
}
.p-career-job {
  position: relative;
  padding: 1rem 0 12rem;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-career-job {
    z-index: 2;
    padding-top: 8.5rem;
    margin-top: -7rem;
  }
}
.p-career-job:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #2D8BDE url(img/index_career_job_bg_pc.png) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .p-career-job:before {
    background: #005BAC;
  }
}
.p-career-job-nav {
  position: relative;
  z-index: 2;
  text-align: center;
}
.p-career-job-nav .-ttl {
  display: inline-block;
  border-radius: 20rem;
  border: 0.1rem solid #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  padding: 1rem 10rem;
  margin-bottom: 6.8rem;
  position: relative;
  min-width: 41.3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-ttl {
    font-size: 2.1rem;
    min-width: auto;
    padding: 1rem 2rem;
    margin-bottom: 3.9rem;
  }
}
.p-career-job-nav .-ttl:after {
  content: "";
  width: 41.7rem;
  height: 6.8rem;
  position: absolute;
  bottom: -6.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(img/index_career_job_nav_fig_pc.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-ttl:after {
    background: url(img/index_career_job_nav_fig_sp.svg) no-repeat center center/contain;
    width: 21.6rem;
    height: 3.9rem;
    bottom: -3.9rem;
  }
}
.p-career-job-nav .-ttl .small {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-ttl .small {
    font-size: 0.9rem;
  }
}
.p-career-job-nav .-navs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 8.7rem;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs {
    gap: 2rem;
  }
}
.p-career-job-nav .-navs .btn {
  color: #fff;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  opacity: 0.5;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn {
    width: 9rem;
    height: 9rem;
  }
}
.p-career-job-nav .-navs .btn:before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-career-job-nav .-navs .btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-career-job-nav .-navs .btn span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn span {
    font-size: 1.7rem;
    margin-top: 1.4rem;
  }
}
.p-career-job-nav .-navs .btn span:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.75rem 1rem 0 1rem;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn span:after {
    border-width: 2.2rem 1.2rem 0 1.2rem;
    bottom: -4rem;
  }
}
.p-career-job-nav .-navs .btn.is-current {
  opacity: 1;
}
.p-career-job-nav .-navs .btn.is-current:before {
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn.is-current:before {
    top: 1.4rem;
  }
}
.p-career-job-nav .-navs .btn.is-current:after {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn.is-current:after {
    -webkit-transform: none;
            transform: none;
  }
}
.p-career-job-nav .-navs .btn.is-current span {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn.is-current span {
    margin-top: 1.4rem;
  }
}
.p-career-job-nav .-navs .btn.is-current span:after {
  opacity: 1;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-career-job-nav .-navs .btn:hover {
    opacity: 1;
  }
  .p-career-job-nav .-navs .btn:hover:before {
    top: 0;
  }
  .p-career-job-nav .-navs .btn:hover:after {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  .p-career-job-nav .-navs .btn:hover span {
    margin-top: 0;
  }
  .p-career-job-nav .-navs .btn:hover span:after {
    opacity: 1;
  }
}
.p-career-job-nav .-navs .btn.m-01:before {
  background: url(img/index_career_job_nav_icn01.svg) no-repeat center center/contain;
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn.m-01:before {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p-career-job-nav .-navs .btn.m-01:after {
  background: #ECBF3F;
}
.p-career-job-nav .-navs .btn.m-02:before {
  background: url(img/index_career_job_nav_icn02.svg) no-repeat center center/contain;
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn.m-02:before {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p-career-job-nav .-navs .btn.m-02:after {
  background: #F95D00;
}
.p-career-job-nav .-navs .btn.m-03:before {
  background: url(img/index_career_job_nav_icn03.svg) no-repeat center center/contain;
  width: 3.2rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav .-navs .btn.m-03:before {
    width: 2.5rem;
    height: 2.3rem;
  }
}
.p-career-job-nav .-navs .btn.m-03:after {
  background: #2D8BDE;
}
@media screen and (max-width: 767px) {
  .p-career-job-nav.m-foot .-navs .btn span:after {
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
    bottom: auto;
    top: -5.3rem;
  }
}
.p-career-job-slider {
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-career-job-slider {
    width: 92%;
    margin: 2rem 4%;
  }
}
.p-career-job .swiper-slide {
  width: 90.5rem;
  background: #fff;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
}
.p-career-job .swiper-slide * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide {
    display: block;
    width: 100%;
  }
}
.p-career-job .swiper-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 87, 0.5);
  z-index: 2;
}
.p-career-job .swiper-slide .slide-head {
  width: 21.5rem;
  padding: 3.5rem 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Sans JP tategaki";
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-head {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-family: "Noto Sans JP";
  }
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-head {
    width: 100%;
    padding: 1rem 2rem 1.8rem;
  }
}
.p-career-job .swiper-slide .slide-head:before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
}
.p-career-job .swiper-slide .slide-head .-ttl {
  color: #fff;
  padding-top: 10.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-head .-ttl {
    padding-top: 0;
    padding-left: 5.5rem;
  }
}
.p-career-job .swiper-slide .slide-head .-ttl:before {
  content: "";
  width: 8.6rem;
  height: 8.6rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-head .-ttl:before {
    width: 4.7rem;
    height: 4.7rem;
    right: auto;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-career-job .swiper-slide .slide-head .-ttl .headline {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-head .-ttl .headline {
    font-size: 2.5rem;
  }
}
.p-career-job .swiper-slide .slide-head .-ttl .small {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-head .-ttl .small {
    font-size: 1.5rem;
  }
}
.p-career-job .swiper-slide .slide-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4rem 3rem 4rem 5rem;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body {
    padding: 2rem 1rem;
  }
}
.p-career-job .swiper-slide .slide-body .-ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-ttl {
    font-size: 1.6rem;
  }
}
.p-career-job .swiper-slide .slide-body .-ttl .line {
  display: inline-block;
  color: #fff;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-ttl .line {
    padding: 0.5rem 0.7rem;
  }
}
.p-career-job .swiper-slide .slide-body .-detail {
  font-size: 1.5rem;
  line-height: 1.75;
  margin-top: 2rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-detail {
    padding: 0 1rem;
  }
}
.p-career-job .swiper-slide .slide-body .-table {
  margin-top: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-table {
    border-collapse: separate;
    margin-top: 0;
    border-spacing: 1rem 0;
  }
}
.p-career-job .swiper-slide .slide-body .-table td, .p-career-job .swiper-slide .slide-body .-table th {
  font-size: 1.5rem;
  padding: 2rem 0.5rem 1rem 0.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-table td, .p-career-job .swiper-slide .slide-body .-table th {
    font-size: 1.25rem;
    padding: 1.5rem 0.7rem 1rem;
  }
}
.p-career-job .swiper-slide .slide-body .-table th {
  width: 12rem;
  font-weight: 700;
  border-bottom: 0.1rem solid #F95D00;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-table th {
    width: auto;
    white-space: nowrap;
    vertical-align: top;
    padding-left: 0;
  }
}
.p-career-job .swiper-slide .slide-body .-table td {
  padding-left: 5.5rem;
  border-bottom: 0.1rem solid #B7B7B7;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-table td {
    padding-left: 1rem;
  }
}
.p-career-job .swiper-slide .slide-body .-table td .small {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide .slide-body .-table td .small {
    font-size: 1rem;
    display: inline-block;
  }
}
.p-career-job .swiper-slide.m-01 .slide-head {
  background: url(img/index_career_job_slide_bg01.jpg) no-repeat left top/cover;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide.m-01 .slide-head {
    background: #ECBF3F;
  }
}
.p-career-job .swiper-slide.m-01 .slide-head:before {
  background: url(img/index_career_job_slide_en01.svg) no-repeat left top/contain;
  width: 20.6rem;
  height: 4.7rem;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide.m-01 .slide-head:before {
    width: 11.8rem;
    height: 2.7rem;
  }
}
.p-career-job .swiper-slide.m-01 .slide-head .-ttl:before {
  background: url(img/index_career_job_slide_icn01.svg) no-repeat center center/contain;
}
.p-career-job .swiper-slide.m-01 .slide-body .-ttl .line {
  background: #ECBF3F;
}
.p-career-job .swiper-slide.m-02 .slide-head {
  background: url(img/index_career_job_slide_bg02.jpg) no-repeat left top/cover;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide.m-02 .slide-head {
    background: #F95D00;
  }
}
.p-career-job .swiper-slide.m-02 .slide-head:before {
  background: url(img/index_career_job_slide_en02.svg) no-repeat left top/contain;
  width: 20.6rem;
  height: 4.7rem;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide.m-02 .slide-head:before {
    width: 11.8rem;
    height: 2.7rem;
  }
}
.p-career-job .swiper-slide.m-02 .slide-head .-ttl:before {
  background: url(img/index_career_job_slide_icn02.svg) no-repeat center center/contain;
}
.p-career-job .swiper-slide.m-02 .slide-body .-ttl .line {
  background: #F95D00;
}
.p-career-job .swiper-slide.m-03 .slide-head {
  background: url(img/index_career_job_slide_bg03.jpg) no-repeat left top/cover;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide.m-03 .slide-head {
    background: #003E75;
  }
}
.p-career-job .swiper-slide.m-03 .slide-head:before {
  background: url(img/index_career_job_slide_en03.svg) no-repeat left top/contain;
  width: 20.6rem;
  height: 4.7rem;
}
@media screen and (max-width: 767px) {
  .p-career-job .swiper-slide.m-03 .slide-head:before {
    width: 16.8rem;
    height: 2.7rem;
  }
}
.p-career-job .swiper-slide.m-03 .slide-head .-ttl:before {
  background: url(img/index_career_job_slide_icn03.svg) no-repeat center center/contain;
}
.p-career-job .swiper-slide.m-03 .slide-body .-ttl .line {
  background: #003E75;
}
.p-career-job .swiper-slide.swiper-slide-active:before {
  display: none;
}
.p-career-job .swiper-button-next, .p-career-job .swiper-button-prev {
  width: 5.1rem;
  height: 5.1rem;
  color: transparent;
  font-size: 0;
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-career-job .swiper-button-next:after, .p-career-job .swiper-button-prev:after {
  content: none;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-career-job .swiper-button-next:hover, .p-career-job .swiper-button-prev:hover {
    opacity: 0.3;
  }
}
.p-career-job .swiper-btns {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.p-career-job .swiper-button-prev {
  left: calc(50% - 55.5rem);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-career-job .swiper-button-next {
  left: calc(50% + 50.2rem);
}
.p-career-recruit {
  background: #2D8BDE;
  position: relative;
  z-index: 2;
}
.p-career-recruit .-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 99rem;
  margin: 0 auto;
  padding: 2rem 5rem 6rem;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-wrap {
    width: 100%;
    display: block;
    padding: 0;
  }
}
.p-career-recruit .-wrap:before {
  content: "";
  width: 99rem;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #003E75;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-wrap:before {
    width: 100%;
  }
}
.p-career-recruit .-head {
  width: 34rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-head {
    width: 100%;
    padding: 8rem 0 7rem;
    position: relative;
    top: -9rem;
  }
}
.p-career-recruit .-head .img {
  position: absolute;
  left: 0;
  top: 3rem;
  width: calc(50vw - 18rem);
  height: 54rem;
  clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
  background: #fff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-head .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  }
}
.p-career-recruit .-head .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  background: #fff;
}
.p-career-recruit .-head .txt-ttl {
  font-size: 2.8rem;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-head .txt-ttl {
    font-size: 2rem;
    text-align: center;
  }
}
.p-career-recruit .-head .txt-ttl span {
  display: block;
}
.p-career-recruit .-head .txt-ttl span + span {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-head .txt-ttl span + span {
    margin-top: 0;
  }
}
.p-career-recruit .-head .txt-note {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-head .txt-note {
    margin-top: 0.5rem;
    text-align: center;
  }
}
.p-career-recruit .-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-body {
    padding: 0 4%;
    margin-top: -8rem;
  }
}
.p-career-recruit .-body .-table {
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-body .-table {
    border-top: 0.1rem solid #fff;
  }
}
.p-career-recruit .-body .-table th, .p-career-recruit .-body .-table td {
  padding: 2.7rem 0 1.9rem;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-body .-table th, .p-career-recruit .-body .-table td {
    padding: 1.5rem 0;
  }
}
.p-career-recruit .-body .-table th {
  font-size: 1.8rem;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 0.1rem solid #ECBF3F;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-body .-table th {
    font-size: 1.4rem;
    padding-right: 1rem;
  }
}
.p-career-recruit .-body .-table td {
  font-size: 1.5rem;
  padding-left: 2.5rem;
  border-bottom: 0.1rem solid #fff;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-body .-table td {
    font-size: 1.4rem;
    padding-left: 0;
  }
}
.p-career-recruit .-btns {
  padding: 6rem 0 20rem;
  background: #2D8BDE;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-btns {
    padding: 5rem 4% 2rem;
    background: none;
  }
}
.p-career-recruit .-btns .btn-double .-fukidashiwrap {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-btns .btn-double .-fukidashiwrap + .-fukidashiwrap {
    margin-top: 3rem;
  }
}
.p-career-recruit .-btns .btn-double .-fukidashiwrap .fukidashi {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.5rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 3rem;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-btns .btn-double .-fukidashiwrap .fukidashi {
    font-size: 1.3rem;
    padding: 0.6rem 2rem 0.7rem;
    bottom: calc(100% - 0.7rem);
  }
}
.p-career-recruit .-btns .btn-double .-fukidashiwrap .fukidashi:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1rem 0.65rem 0 0.65rem;
  border-color: #FFFFFF transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1.1rem;
}
@media screen and (max-width: 767px) {
  .p-career-recruit .-btns .btn-double .-fukidashiwrap .fukidashi:after {
    border-width: 0.8rem 0.6rem 0 0.6rem;
    bottom: -0.75rem;
  }
}
.p-career-recruit .-btns .btn-double .-fukidashiwrap .fukidashi.m-orange {
  border: 0.1rem solid #F95D00;
  color: #F95D00;
}
.p-career-recruit .-btns .btn-double .-fukidashiwrap .fukidashi.m-yellow {
  border: 0.1rem solid #D59F04;
  color: #D59F04;
}
.p-career-education {
  background: url(img/index_career_education_bg_pc.jpg) no-repeat center bottom 45.5rem/100% calc(100% - 40rem);
  padding: 15rem 0 11rem;
  margin-top: -20rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-career-education {
    margin-top: 0;
    background: #003E75 url(img/index_career_education_bg_sp.jpg) no-repeat center bottom/100% auto;
    padding: 7rem 0 2rem;
  }
}
.p-career-education:before {
  content: "";
  width: 41.4rem;
  height: 4.5rem;
  background: url(img/index_career_education_en.svg) no-repeat center center/contain;
  position: absolute;
  left: calc(50vw - 52.5rem);
  top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-career-education:before {
    left: 4%;
    width: 21.4rem;
    height: 2.4rem;
    top: 3.5rem;
  }
}
.p-career-education:after {
  content: "";
  width: 100%;
  height: calc(100% - 49rem);
  background: -webkit-gradient(linear, left top, right top, from(#005BAC), to(#002E56));
  background: linear-gradient(to right, #005BAC, #002E56 100%);
  clip-path: polygon(0 0, 100% 15.0326797386vw, 100% 100%, 0 calc(100% - 15.0326797386vw));
  position: absolute;
  left: 0;
  top: -3rem;
  opacity: 0.8;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-career-education:after {
    content: none;
  }
}
.p-career-education .-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  width: 100rem;
  gap: 2.2rem;
  margin: 0 auto;
  padding: 1.5rem 4rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap {
    width: 100%;
    display: block;
    padding: 0 0 4rem;
    background: url(img/index_career_education_wrap_bg_sp.png) no-repeat center top/100% auto;
  }
}
.p-career-education .-wrap:before, .p-career-education .-wrap:after {
  content: "";
  width: 6.8rem;
  height: 10.8rem;
  background: url(img/index_career_education_deco.svg) no-repeat center center/100% auto;
  position: absolute;
}
.p-career-education .-wrap:before {
  left: -0.5rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap:before {
    left: 0;
    top: 2rem;
  }
}
.p-career-education .-wrap:after {
  right: -0.5rem;
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap:after {
    right: 0;
  }
}
.p-career-education .-wrap .-img {
  width: 24.2rem;
  position: relative;
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-img {
    position: absolute;
    top: 10rem;
    right: 4%;
    width: 15.3rem;
  }
}
.p-career-education .-wrap .-img .imgwrap {
  width: 100%;
  height: 100%;
}
.p-career-education .-wrap .-img .txt {
  color: #fff;
  font-size: 1.5rem;
  text-align: right;
  position: absolute;
  right: 2rem;
  bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-img .txt {
    white-space: nowrap;
    right: 16.5rem;
    bottom: 1.5rem;
    font-size: 1.2rem;
  }
}
.p-career-education .-wrap .-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-career-education .-wrap .-txt .ttl {
  padding: 0 7rem 0 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .ttl {
    padding: 4rem 5rem 15rem 4rem;
  }
}
.p-career-education .-wrap .-txt .ttl:before {
  content: "";
  content: "";
  position: absolute;
  width: 30.4rem;
  height: 11.1rem;
  background: url(img/common_deco.svg) no-repeat center center/cover;
  right: -17rem;
  top: -4rem;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .ttl:before {
    width: 10rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .ttl:before {
    right: 6%;
    top: 0;
    width: 14.7rem;
    height: 5.4rem;
  }
}
.p-career-education .-wrap .-txt .ttl .line {
  color: #fff;
  font-size: 3.8rem;
  font-weight: 700;
  display: block;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .ttl .line {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.p-career-education .-wrap .-txt .ttl .line .yellow {
  color: #ECBF3F;
}
.p-career-education .-wrap .-txt .ttl .line .big {
  font-size: 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .ttl .line .big {
    font-size: 2.5rem;
  }
}
.p-career-education .-wrap .-txt .ttl .line.m-03 {
  margin-top: -1rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .ttl .line.m-03 {
    margin-top: 0;
    text-align: left;
  }
}
.p-career-education .-wrap .-txt .detail {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-top: 2.5rem;
  padding-right: 2rem;
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-career-education .-wrap .-txt .detail {
    padding: 0 4%;
  }
}
.p-career-education .-wrap .-txt .detail .bold {
  color: #ECBF3F;
  font-weight: 700;
}
.p-career-education .-movie {
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}
.p-career-education .-movie .-detail{
  width: 100rem;
  margin: 2rem auto;
}
.p-career-education .-movie .-detail p{
 margin: 2rem 0;
}

@media screen and (max-width: 767px) {
  .p-career-education .-movie {
    margin: 2rem 4% 0;
  }
}
.p-career-education .-movie:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 110rem;
  height: 43.9rem;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 91, 172, 0.8)), to(rgba(0, 46, 86, 0.8)));
  background: linear-gradient(to left, rgba(0, 91, 172, 0.8), rgba(0, 46, 86, 0.8));
  clip-path: polygon(0 0, 100% 37%, 100% 100%, 0 63%);
  opacity: 0.8;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-career-education .-movie:before {
    content: none;
  }
}
.p-career-education .-movie .ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  padding: 0;
  margin-bottom: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-career-education .-movie .ttl {
    font-size: 1.5rem;
  }
}
.p-career-education .-movie .video {
  width: 75rem;
  margin: 0 auto;
  aspect-ratio: 75/43;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-career-education .-movie .video {
    width: 100%;
  }
}
.p-career-education .-movie .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-career-education .-movie .caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-career-education .-movie .caption {
    margin: 1.5rem 0 1.5rem;
    color: #fff;
  }
  .p-career-education .-movie .-detail{
  width:100%;
  margin: 2rem auto;
}
.p-career-education .-movie .-detail p{
 margin: 2rem 0;
  color: #fff;
}
}
.p-career-education .-movie .btn {
  margin-top: 2rem;
}
.p-advantage {
  background: url(img/index_advantage_bg_pc.jpg) no-repeat center top/100% auto;
  min-height: 60.7843137255vw;
}
@media screen and (max-width: 767px) {
  .p-advantage {
    margin-top: 2.5rem;
    min-height: auto;
  }
}
.p-advantage-head {
  position: relative;
  padding: 6.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-advantage-head {
    display: block;
    padding: 0;
  }
}
.p-advantage-head:before {
  content: "";
  width: 44.5rem;
  height: 6rem;
  background: url(img/index_advantage_en_pc.svg) no-repeat center center/100% auto;
  position: absolute;
  left: calc(50vw - 55rem);
  top: -2.5rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-advantage-head:before {
    background-image: url(img/index_advantage_en_sp.svg);
    width: 15.3rem;
    height: 2.1rem;
    top: 3.8rem;
    left: auto;
    right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-advantage-head .c-inner {
    padding: 0;
  }
}
.p-advantage-head .-txt {
  width: 52.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt {
    width: 100%;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt .-ttl {
    color: #fff;
    text-align: right;
    position: relative;
    width: 100%;
    padding: 8rem 3rem 8rem 0;
  }
  .p-advantage-head .-txt .-ttl:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), to(rgb(45, 139, 222)));
    background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgb(45, 139, 222) 100%);
    clip-path: polygon(0 17%, 100% 0%, 100% 83%, 0% 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
.p-advantage-head .-txt .-ttl .pre {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt .-ttl .pre {
    font-size: 2.2rem;
  }
}
.p-advantage-head .-txt .-ttl .main {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.2rem;
  line-height: 1.4;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt .-ttl .main {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }
}
.p-advantage-head .-txt .-ttl .main a {
  display: inline-block;
  padding-right: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt .-ttl .main a {
    padding: 0 0 5rem 0;
  }
}
.p-advantage-head .-txt .-ttl .main a:after {
  content: "";
  width: 4.8rem;
  height: 4.9rem;
  background: url(img/common_icn_circlearw_dbl.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: calc(50% + 0.3rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt .-ttl .main a:after {
    background-image: url(img/common_icn_circlearw_wh.svg);
    top: auto;
    bottom: 0;
    width: 4rem;
    height: 4.1rem;
    -webkit-transform: none;
            transform: none;
  }
}
.p-advantage-head .-txt .-detail {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-txt .-detail {
    color: #003E75;
    padding: 0 4%;
    margin-top: 2rem;
  }
}
.p-advantage-head .-txt .txt-wrap {
  /*width: 50rem;
  color: $color-white;
  padding: 18rem 0 8rem 5.5rem;
  position: relative;
  @include mq(m) {
  	padding: 0;
  	width: 100%;
  }*/
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-img {
    position: absolute;
    width: 100%;
    top: 12.5rem;
    left: -3rem;
    pointer-events: none;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-img:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -1rem;
    left: 0.7rem;
    width: 21.8rem;
    height: 17.9rem;
    background: #003E75;
    clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 81.5%);
    z-index: -1;
  }
}
.p-advantage-head .-img:after {
  content: "";
  position: absolute;
  width: 30.4rem;
  height: 11.1rem;
  background: url(img/common_deco.svg) no-repeat center center/cover;
  content: none;
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-img:after {
    width: 10rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-img:after {
    content: "";
    background-image: url(img/common_deco_v2.svg);
    width: 17.7rem;
    height: 6.5rem;
    right: -3rem;
    bottom: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-advantage-head .-img .img-wrap {
    width: 21.8rem;
    height: 17.9rem;
    clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 81.5%);
  }
}
.p-advantage-head .-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-advantage-body {
  margin-top: -27.5rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body {
    margin-top: 0;
  }
}
.p-advantage-body .c-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .c-inner {
    padding: 0;
  }
}
.p-advantage-body .-unit {
  margin: 0 0 0 auto;
  width: 49rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit {
    width: 96%;
  }
}
.p-advantage-body .-unit a {
  display: block;
  clip-path: polygon(0 7.3rem, 100% 0%, 100% calc(100% - 7.3rem), 0% 100%);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit a {
    clip-path: polygon(0 6rem, 100% 0%, 100% calc(100% - 6rem), 0% 100%);
  }
}
.p-advantage-body .-unit a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 87, 153, 0)), to(rgb(0, 46, 86)));
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) -25%, rgb(0, 46, 86) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-advantage-body .-unit a .unit-head {
  padding: 5rem 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit a .unit-head {
    padding: 2rem 4% 2rem;
  }
}
.p-advantage-body .-unit a .unit-head .-num {
  text-align: right;
}
.p-advantage-body .-unit a .unit-head .-num img {
  width: auto;
  height: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit a .unit-head .-num img {
    height: 2rem;
  }
}
.p-advantage-body .-unit a .unit-head .-ttl {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: right;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit a .unit-head .-ttl {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
.p-advantage-body .-unit a .unit-body {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 0 12rem 9rem 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit a .unit-body {
    padding: 0 4% 10.5rem;
  }
}
.p-advantage-body .-unit a .unit-body:after {
  content: "";
  width: 6.9rem;
  height: 7rem;
  background: url(img/index_advantage_body_more_pc.svg) no-repeat center center/contain;
  position: absolute;
  right: 2.5rem;
  bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit a .unit-body:after {
    background-image: url(img/index_advantage_body_more_sp.svg);
    width: 4.9rem;
    height: 5rem;
    left: 5%;
    bottom: 4rem;
  }
}
.p-advantage-body .-unit a .unit-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.p-advantage-body .-unit a .unit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-advantage-body .-unit:nth-child(2) {
  position: absolute;
  top: 25.5rem;
  right: 55rem;
}
.p-advantage-body .-unit:nth-child(2) a .unit-body {
    padding: 0 12rem 13rem 4rem;
  }
.caption.job-tag {
    color: #fff;
    position: absolute;
    bottom: 9rem;
    left: 4rem;
    z-index: 3;
    text-align: start;
}
@media screen and (max-width: 767px) {
    .p-advantage-body .-unit:nth-child(2) a .unit-body {
        padding: 0 4% 12.5rem;
      }
    .caption.job-tag {
        bottom: 9rem;
        left: 7.3rem;
        text-align: end;
    }
}
.p-advantage-body .-unit .caption.job-tag a {
    clip-path: none;
}
.p-advantage-body .-unit .caption.job-tag a::before{
    content: none;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit:nth-child(2) {
    position: relative;
    right: 0;
    top: 0;
  }
}
.p-advantage-body .-unit:nth-child(3) {
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit:nth-child(3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-advantage-body .-unit + .-unit {
    margin-top: -4rem;
  }
}

.p-job {
  position: relative;
  padding: 10.5rem 0 0;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-job {
    margin-top: -1rem;
    padding: 8rem 0 3rem;
  }
}
.p-job:before {
  content: "";
  width: 36.5rem;
  height: 7.6rem;
  background: url(img/index_job_en.svg) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  top: 1.6rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-job:before {
    width: 12.8rem;
    top: 1.5rem;
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: 4%;
  }
}
.p-job:after {
  content: "";
  width: 100%;
  height: calc(100% - 7rem);
  position: absolute;
  left: 0;
  top: 0;
  background: #E9E9E9;
  z-index: -1;
  clip-path: polygon(0 23rem, 100% 0, 100% calc(100% - 23rem), 0 100%);
}
@media screen and (max-width: 767px) {
  .p-job:after {
    height: 100%;
    clip-path: polygon(0 6rem, 100% 0, 100% calc(100% - 6rem), 0 100%);
  }
}
.p-job-head .-ttl {
  display: block;
}
.p-job-head .-ttl a {
  display: inline-block;
  padding-right: 6rem;
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.2rem;
  line-height: 1.4;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-job-head .-ttl a {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    padding: 0 3.5rem 0 0;
    letter-spacing: -0.15rem;
  }
}
.p-job-head .-ttl a:after {
  content: "";
  width: 4.8rem;
  height: 4.9rem;
  background: url(img/common_icn_circlearw_dbl.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: calc(50% + 0.3rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-job-head .-ttl a:after {
    width: 2.8rem;
    height: 2.9rem;
    top: 50%;
  }
}
.p-job-head .-detail {
  font-size: 1.5rem;
  margin-top: 2rem;
  line-height: 1.8;
  letter-spacing: -0.02rem;
  padding-left: 50%;
}
@media screen and (max-width: 767px) {
  .p-job-head .-detail {
    padding-left: 0;
  }
}
.p-job-body {
  padding: 12.091503268vw 0 8.8235294118vw;
  position: relative;
  z-index: 2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: -4.5rem;
}
@media screen and (max-width: 767px) {
  .p-job-body {
    padding: 1rem 0 7rem 0;
    margin-top: 8rem;
  }
}
.p-job-body .-img {
  position: absolute;
  left: calc(50vw - 55rem);
  top: -2rem;
  width: 79.1rem;
  aspect-ratio: 791/484;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-job-body .-img {
    width: 92%;
    aspect-ratio: 343/210;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -7rem;
  }
}
.p-job-body .-img a {
  display: block;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-job-body .-img a:hover {
    opacity: 1;
  }
}
.p-job-body .-img .img-wrap {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 12rem, 100% 100%, 0 calc(100% - 12rem));
  background: #003E75;
}
@media screen and (max-width: 767px) {
  .p-job-body .-img .img-wrap {
    clip-path: polygon(0 0, 100% 6rem, 100% 100%, 0 calc(100% - 6rem));
  }
}
.p-job-body .-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.p-job-body .-link {
  clip-path: polygon(0 0, 100% 15.0326797386vw, 100% 100%, 0 calc(100% - 15.0326797386vw));
  background: #005BAC;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-job-body .-link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-job-body .-link {
    clip-path: polygon(0 0, 100% 6rem, 100% 100%, 0 calc(100% - 6rem));
  }
}
.p-job-body .-txt {
  color: #fff;
  padding-left: 60rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-body .-txt {
    padding: 0 4%;
  }
}
.p-job-body .-txt .ttl {
  font-size: 2.5rem;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-job-body .-txt .ttl {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-job-body .-txt .detail {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-job-body .-txt .detail {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.p-job-body .-txt .btn {
  margin-top: 2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-job-body .-txt .btn {
    margin-top: 0;
  }
}
.p-job-body .-txt .btn img {
  width: 19rem;
}
@media screen and (max-width: 767px) {
  .p-job-body .-txt .btn img {
    width: 13.7rem;
  }
}

.p-choice {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-choice {
    margin-top: -1rem;
  }
}
.p-choice-wrap {
  display: block;
  position: relative;
  padding: 9rem 0 0 0;
  width: 99.1rem;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap {
    display: block;
    padding: 0 0 14rem;
    width: 100%;
  }
}
.p-choice-wrap:before {
  content: "";
  width: 24.2rem;
  height: 6rem;
  background: url(img/index_choice_en_pc.svg) no-repeat center center/100% auto;
  position: absolute;
  left: -5rem;
  top: -2rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap:before {
    background-image: url(img/index_choice_en_sp.svg);
    width: 8.5rem;
    height: 2.1rem;
    top: 3.8rem;
    left: auto;
    right: 3rem;
  }
}
.p-choice-wrap:after {
  content: "";
  width: 81.6rem;
  height: 52.5rem;
  background: url(img/index_choice_deco_pc.svg) no-repeat center center/contain;
  position: absolute;
  right: -14rem;
  top: 1.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap:after {
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), to(rgb(45, 139, 222)));
    background: linear-gradient(to right, rgb(0, 91, 172) 0%, rgb(45, 139, 222) 100%);
    clip-path: polygon(0 6rem, 100% 0%, 100% calc(100% - 6rem), 0% 100%);
    position: absolute;
    right: auto;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
.p-choice-wrap .txt-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .txt-wrap {
    position: static;
  }
}
.p-choice-wrap .-txt {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-txt {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
  }
}
.p-choice-wrap .-txt .-ttl {
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-txt .-ttl {
    margin-top: 0;
    text-align: right;
    position: relative;
    width: 100%;
    padding: 8rem 3rem 0 0;
  }
}
.p-choice-wrap .-txt .-ttl .line {
  font-size: 4rem;
  font-weight: 700;
  display: inline-block;
  background: #fff;
  padding: 0.6rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-txt .-ttl .line {
    padding: 0;
    font-size: 2.5rem;
    color: #fff;
    background: none;
  }
}
.p-choice-wrap .-txt .-detail {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 3.5rem 0 0 5rem;
  width: 37.7rem;
  position: absolute;
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-txt .-detail {
    position: static;
    padding: 0 4%;
    margin: 1.5rem 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-img {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: -3rem;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-img:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -1rem;
    left: 0.7rem;
    width: 21.6rem;
    height: 17.2rem;
    background: #003E75;
    clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 81.5%);
    z-index: -1;
  }
}
.p-choice-wrap .-img:after {
  content: "";
  position: absolute;
  width: 30.4rem;
  height: 11.1rem;
  background: url(img/common_deco.svg) no-repeat center center/cover;
  content: none;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-img:after {
    width: 10rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-img:after {
    content: "";
    background-image: url(img/common_deco_v2.svg);
    width: 17.7rem;
    height: 6.5rem;
    right: -3rem;
    bottom: 1rem;
  }
}
.p-choice-wrap .-img .img-wrap {
  background: #003E75;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .-img .img-wrap {
    background: #2D8BDE;
    width: 21.6rem;
    height: 17.2rem;
    clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 81.5%);
  }
}
.p-choice-wrap .-img .img-wrap picture {
  display: inline;
}
.p-choice-wrap .-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.p-choice-wrap .btn {
  text-align: right;
  margin-top: 2rem;
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .btn {
    position: static;
    margin: 0 3rem 0 0;
  }
}
.p-choice-wrap .btn img {
  width: 19rem;
}
@media screen and (max-width: 767px) {
  .p-choice-wrap .btn img {
    width: 13.7rem;
  }
}

.l-footerabout {
  margin-top: 21rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 767px) {
  #message {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
}

#sponsored {
  position: relative;
  top: 32rem;
}
@media screen and (max-width: 767px) {
  #sponsored {
    top: 5rem;
  }
}

.gecko .gecko {
  text-combine-upright: all;
}