@charset "UTF-8";
/*
smooth_font(最小サイズpx、最大サイズpx、最小画面サイズpx、最大画面サイズpx）
smooth_size(最小サイズpx、最大サイズpx、最小画面サイズpx、最大画面サイズpx）

指定した「最小画面サイズ」から「最大画面サイズ」へむけて、変化します。

「smooth_font」と「smooth_size」の違いは、
「smooth_font」は「rem」
「smooth_size」は「px」
になるだけです。

※注
・デフォルトでは第3引数と第4引数がなくても横幅375pxから横幅1600pxの割合で変化します。
・「最大画面サイズ」より画面サイズが大きかったり、「最小画面サイズ」より画面サイズが小さい場合は
比率を維持したまま、大きくなったり小さくなったりします。
必要があれば、media queryなどで上限や下限を指定してください。

例）-----------------------------

body {
  font-size: 1.8rem;
  @media only screen and (max-width: 1599px) {
    font-size: smooth_font(14px, 18px);
  }
  @media only screen and (max-width: 374px) {
    font-size: 1.4rem;
  }
}

.c-container {
  margin: 0 auto;
  max-width: 1110px;
  width: smooth_size(335px, 1110px);

  @media only screen and (max-width: 374px) {
    // 横幅320pxの時など
    width: 280px;
  }
}

--------------------------------
*/
.p-information-requirements__area__table th,
.p-information-requirements__area__table td, .p-business_product__service__box .text, .c-text01, .c-text02, .c-text03 {
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
}
.p-information-requirements__area__table th.-ja,
.p-information-requirements__area__table td.-ja, .p-business_product__service__box .-ja.text, .-ja.c-text01, .-ja.c-text02, .-ja.c-text03 {
  letter-spacing: 0;
  font-feature-settings: normal;
}
.p-information-requirements__area__table th.-center,
.p-information-requirements__area__table td.-center, .p-business_product__service__box .-center.text, .-center.c-text01, .-center.c-text02, .-center.c-text03 {
  text-align: center;
}

.c-button01, .c-button02 {
  display: flex;
  line-height: 1.4;
  align-items: center;
}
.c-button01 a, .c-button02 a,
.c-button01 .link,
.c-button02 .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
  overflow: hidden;
}
.c-button01 a::after, .c-button02 a::after,
.c-button01 .link::after,
.c-button02 .link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top right;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg);
}
.is-pc .c-button01 a::after, .is-pc .c-button02 a::after,
.is-pc .c-button01 .link::after,
.is-pc .c-button02 .link::after {
  transition: 0.4s background-color cubic-bezier(0.215, 0.61, 0.355, 1), 0.4s transform cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-pc .c-button01 a:hover::after, .is-pc .c-button02 a:hover::after,
.is-pc .c-button01 .link:hover::after,
.is-pc .c-button02 .link:hover::after {
  transform: rotate(-45deg) translateY(50%);
  background-color: white;
}
.c-button01 a .js-svg, .c-button02 a .js-svg,
.c-button01 .link .js-svg,
.c-button02 .link .js-svg {
  margin-left: 1em;
}
.c-button01 a .arrow, .c-button02 a .arrow,
.c-button01 .link .arrow,
.c-button02 .link .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2em;
}
@media only screen and (max-width: 567px) {
  .c-button01 a .arrow, .c-button02 a .arrow,
.c-button01 .link .arrow,
.c-button02 .link .arrow {
    right: 1.5em;
  }
}
.c-button01 a .icon, .c-button02 a .icon,
.c-button01 .link .icon,
.c-button02 .link .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2em;
}
@media only screen and (max-width: 567px) {
  .c-button01 a .icon, .c-button02 a .icon,
.c-button01 .link .icon,
.c-button02 .link .icon {
    left: 1.5em;
  }
}
.c-button01 .text, .c-button02 .text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.-width01.c-button01 a, .-width01.c-button02 a,
.-width01.c-button01 .link,
.-width01.c-button02 .link {
  width: 540px;
}
@media only screen and (max-width: 1599px) {
  .-width01.c-button01 a, .-width01.c-button02 a,
.-width01.c-button01 .link,
.-width01.c-button02 .link {
    width: calc(17.9591836735vw + 252.6530612245px);
  }
}
@media only screen and (max-width: 567px) {
  .-width01.c-button01 a, .-width01.c-button02 a,
.-width01.c-button01 .link,
.-width01.c-button02 .link {
    width: 100%;
  }
}
.-center.c-button01, .-center.c-button02 {
  justify-content: center;
}
.-center.c-button01 a, .-center.c-button02 a,
.-center.c-button01 .link,
.-center.c-button02 .link {
  text-align: center;
}
.-large.c-button01 a, .-large.c-button02 a,
.-large.c-button01 .link,
.-large.c-button02 .link {
  padding-top: 2em;
  padding-bottom: 2em;
}
.-regular.c-button01 a, .-regular.c-button02 a,
.-regular.c-button01 .link,
.-regular.c-button02 .link {
  padding-top: 1.75em;
  padding-bottom: 1.75em;
}

.is-start .l-header {
  opacity: 0;
  transition: 0.8s opacity;
}
.is-start.is-loaded .l-header {
  opacity: 1;
}

.is-start .p-index_head, .is-start .p-index, .is-start .p-index_canvas, .is-start .p-index_kv__menu {
  opacity: 0;
  transition: 1.6s opacity 0.8s;
}
.is-start.is-loaded.is-top-loaded .p-index_head, .is-start.is-loaded.is-top-loaded .p-index, .is-start.is-loaded.is-top-loaded .p-index_canvas, .is-start.is-loaded.is-top-loaded .p-index_kv__menu {
  opacity: 1;
}

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 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: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
}
html.is-fixed {
  overflow: hidden;
}

body {
  background: #fff;
  color: #444444;
  font-family: "UD新ゴ L", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  text-indent: calc(0vw + 0rem);
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1599px) {
  body {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
body.is-fixed {
  overflow: hidden;
}

#page {
  position: relative;
  overflow: hidden;
  font-weight: 500;
  line-height: 180%;
}
#page.-sticky {
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  #page.-sticky {
    overflow: hidden;
  }
}

img {
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

svg {
  overflow: hidden;
}

.js-svg {
  width: 1em;
  display: inline-block;
  height: 1em;
  transition: 0.4s opacity;
}
img.js-svg {
  opacity: 0;
}

svg.js-svg {
  opacity: 1;
}

picture {
  display: block;
}

img.js-lazyload {
  opacity: 0;
  transition: 0.8s opacity;
}
img.js-lazyload.isLoaded {
  opacity: 1;
}

picture.js-lazyload img {
  opacity: 0;
  transition: 0.8s opacity;
}
picture.js-lazyload img.isLoaded {
  opacity: 1;
}

.js-bgmedia {
  display: block;
  opacity: 0;
  transition: 0.8s opacity;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.js-bgmedia.isLoaded {
  opacity: 1;
}

.js-anim_elm.-base {
  transition: 1.6s transform, 1.6s opacity;
  transform: translateY(40px);
  opacity: 0;
}
.js-anim_elm.-base.-delay01 {
  transition-delay: 0.4s;
}
@media only screen and (max-width: 1299px) {
  .js-anim_elm.-base {
    transform: translateY(35px);
  }
}
@media only screen and (max-width: 1023px) {
  .js-anim_elm.-base {
    transform: translateY(30px);
  }
}
@media only screen and (max-width: 767px) {
  .js-anim_elm.-base {
    transform: translateY(25px);
  }
}
@media only screen and (max-width: 567px) {
  .js-anim_elm.-base {
    transform: translateY(20px);
  }
}
.js-anim_elm.-base.is-act {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 1299px) {
  .js-anim_elm.-base.is-act {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1023px) {
  .js-anim_elm.-base.is-act {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .js-anim_elm.-base.is-act {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 567px) {
  .js-anim_elm.-base.is-act {
    transform: translateY(0);
  }
}

/**
 * Swiper 5.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 3, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  transition: all 0.5s ease;
  padding-right: 110px;
}
@media only screen and (max-width: 1599px) {
  .l-header {
    padding-right: calc(4.0816326531vw + 44.693877551px);
    height: calc(4.0816326531vw + 44.693877551px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .is-top .l-header {
    background-color: transparent;
    border-color: #fff;
  }
}
.l-header__logo {
  cursor: pointer;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1599px) {
  .l-header__logo {
    padding: 0 calc(0.8163265306vw + 16.9387755102px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    padding-right: 0;
  }
}
.not-top .l-header__logo {
  background-color: #fff;
}
.l-header__logo a,
.l-header__logo .link {
  display: flex;
  align-items: center;
}
.is-pc .l-header__logo a,
.is-pc .l-header__logo .link {
  transition: 0.4s opacity;
}
.is-pc .l-header__logo a:hover,
.is-pc .l-header__logo .link:hover {
  opacity: 0.5;
}
.l-header__logo .c-blockimage {
  width: 140px;
}
@media only screen and (max-width: 1599px) {
  .l-header__logo .c-blockimage {
    width: calc(3.6734693878vw + 81.2244897959px);
  }
}
.l-header__logo .c-blockimage::before {
  padding-top: 30.2158273381%;
}
.l-header__logo .text {
  font-size: 1.2rem;
  white-space: nowrap;
  line-height: 1.4;
  margin-left: 2em;
}
@media only screen and (max-width: 1599px) {
  .l-header__logo .text {
    font-size: calc(0.4489795918vw + 0.4816326531rem);
  }
}

.l-header_recruitlink {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #2e018a;
  display: flex;
  align-items: center;
  margin-right: 2em;
}
@media only screen and (max-width: 1599px) {
  .l-header_recruitlink {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.l-header_recruitlink span {
  border-bottom: 1px solid;
}
.is-pc .l-header_recruitlink:hover span {
  border-color: transparent;
}
@media only screen and (max-width: 767px) {
  .l-header .l-header_recruitlink {
    display: none;
  }
}
.l-footer .l-header_recruitlink {
  display: none;
  margin-right: 0;
  margin-bottom: calc(1.6326530612vw + 43.8775510204px);
  justify-content: center;
  font-size: calc(0.1632653061vw + 1.2387755102rem);
}
@media only screen and (max-width: 767px) {
  .l-footer .l-header_recruitlink {
    display: flex;
  }
}

.l-footer {
  font-size: 1.3rem;
  padding-top: 70px;
  padding-bottom: 70px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .l-footer {
    padding-top: calc(2.4489795918vw + 30.8163265306px);
    padding-bottom: calc(2.4489795918vw + 30.8163265306px);
    font-size: calc(0.2448979592vw + 0.9081632653rem);
  }
}
@media only screen and (max-width: 1023px) {
  .l-footer {
    font-size: calc(0.7633587786vw + 0.713740458rem);
  }
}
.l-footer__container {
  display: flex;
  justify-content: space-between;
  width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 55px;
  padding-right: 55px;
}
@media only screen and (max-width: 1599px) {
  .l-footer__container {
    width: calc(68.1632653061vw + 119.387755102px);
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
@media only screen and (max-width: 1023px) {
  .l-footer__container {
    display: block;
  }
}
@media only screen and (max-width: 567px) {
  .l-footer__container {
    width: 100%;
  }
}
.l-footer__copy {
  color: #555555;
}
@media only screen and (max-width: 1023px) {
  .l-footer__copy {
    display: block;
    text-align: center;
    margin-top: 2em;
  }
}
.l-footer__list {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .l-footer__list {
    justify-content: center;
  }
}
.l-footer__item {
  margin-right: 1.5em;
}
.l-footer__item:last-child {
  margin-right: 0;
}
.l-footer__item a {
  display: flex;
  align-items: center;
  color: #2e018a;
}
.l-footer__item a .js-svg {
  margin-left: 0.25em;
}
.is-pc .l-footer__item a:hover {
  text-decoration: underline;
}

.l-sidebar {
  position: fixed;
  top: 0;
  line-height: 1;
  right: 0;
  width: 110px;
  z-index: 9000;
}
@media only screen and (max-width: 1599px) {
  .l-sidebar {
    width: calc(4.0816326531vw + 44.693877551px);
  }
}
@media only screen and (max-width: 767px) {
  .l-sidebar {
    display: flex;
    width: auto;
    flex-direction: row-reverse;
  }
}
.l-sidebar__list {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.1;
  color: #2e018a;
}
@media only screen and (max-width: 1599px) {
  .l-sidebar__list {
    font-size: calc(0.3265306122vw + 0.6775510204rem);
  }
}
@media only screen and (max-width: 767px) {
  .l-sidebar__list {
    display: flex;
    flex-direction: row-reverse;
  }
}
.l-sidebar__item {
  border-bottom: 1px solid #eeeeee;
  position: relative;
  border-left: 1px solid #eeeeee;
}
@media only screen and (max-width: 767px) {
  .l-sidebar__item {
    width: calc(4.0816326531vw + 44.693877551px);
  }
}
.l-sidebar__item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.l-sidebar__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.is-pc .l-sidebar__item a {
  transition: 0.4s background-color;
}
.is-pc .l-sidebar__item a:hover {
  background-color: #ebe6f4;
}
.l-sidebar__item img,
.l-sidebar__item svg {
  font-size: 1.8rem;
  display: block;
  margin: 0 auto 0.5em;
}
@media only screen and (max-width: 1599px) {
  .l-sidebar__item img,
.l-sidebar__item svg {
    font-size: calc(0.3265306122vw + 1.2775510204rem);
  }
}

.l-lower-footer__next a {
  display: block;
  border-top: 1px solid #dddddd;
  position: relative;
  transition: 0.4s;
}
.l-lower-footer__next a .c-container {
  padding-top: 130px;
  padding-bottom: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .l-lower-footer__next a .c-container {
    padding-top: calc(5.306122449vw + 45.1020408163px);
    padding-bottom: calc(5.306122449vw + 45.1020408163px);
  }
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next a .c-container {
    padding-top: calc(2.0408163265vw + 17.3469387755px);
    padding-bottom: calc(2.0408163265vw + 17.3469387755px);
  }
}
.l-lower-footer__next a .c-container::before {
  content: "";
  position: absolute;
  right: 10%;
  width: 1px;
  height: 142%;
  background: #dddddd;
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next a .c-container::before {
    content: none;
  }
}
.l-lower-footer__next a:hover .l-lower-footer__next__title .c-blockimage svg .st1 {
  stroke: #ffffff;
}
.l-lower-footer__next a:hover .l-lower-footer__next__button .text p {
  color: #ffffff;
}
.l-lower-footer__next a:hover .l-lower-footer__next__button .icon {
  background: #ffffff;
  border: #ffffff;
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next a:hover .l-lower-footer__next__button .icon {
    background: transparent;
    border: 1px solid #ffffff;
  }
}
.l-lower-footer__next a:hover .l-lower-footer__next__bg.js-bgmedia.isLoaded {
  opacity: 1;
}
.l-lower-footer__next__bg {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  width: 100%;
}
.l-lower-footer__next__bg.js-bgmedia.isLoaded {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next__bg.js-bgmedia.isLoaded {
    opacity: 1;
  }
}
.l-lower-footer__next__title .c-blockimage svg {
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next__title {
    position: relative;
    top: 0;
  }
  .l-lower-footer__next__title .c-blockimage svg .st1 {
    stroke: #ffffff;
  }
}
.l-lower-footer__next__title .c-blockimage {
  width: calc(11.3469387755vw + 96.4489795918px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next__title .c-blockimage {
    width: calc(3.2653061224vw + 87.7551020408px);
  }
}
.l-lower-footer__next__title .c-blockimage::before {
  padding-top: 41.726618705%;
}
.l-lower-footer__next__title .c-blockimage svg .st1 {
  transition: 0.4s;
}
.l-lower-footer__next__button {
  position: absolute;
  display: flex;
  align-items: center;
  right: 6.8%;
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next__button {
    bottom: 50%;
    right: 4%;
    transform: translateY(50%);
  }
  .l-lower-footer__next__button .icon {
    background: transparent;
    border: 1px solid #ffffff;
  }
  .l-lower-footer__next__button .icon svg {
    color: #ffffff;
  }
}
.l-lower-footer__next__button .text {
  margin-right: 1.5em;
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next__button .text {
    margin-right: 0.5em;
  }
}
.l-lower-footer__next__button .text p {
  transition: 0.4s;
  padding-bottom: 0.1em;
  border-bottom: 1px solid;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .l-lower-footer__next__button .text p {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .l-lower-footer__next__button .text p {
    color: #ffffff;
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.l-lower-footer__next__button .icon {
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  color: #2e018a;
  border-radius: 9999px;
  width: calc(3.2653061224vw + 27.7551020408px);
  height: calc(3.2653061224vw + 27.7551020408px);
}
.l-lower-footer__entry {
  border-top: 1px solid #dddddd;
  padding-top: 120px;
  padding-bottom: 90px;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .l-lower-footer__entry {
    padding-top: calc(4.8979591837vw + 41.6326530612px);
    padding-bottom: calc(3.6734693878vw + 31.2244897959px);
  }
}
.l-lower-footer__entry__title {
  display: inline-block;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 1599px) {
  .l-lower-footer__entry__title {
    margin: 0 auto calc(1.2244897959vw + 10.4081632653px);
  }
}
.l-lower-footer__entry__title .c-blockimage {
  width: calc(22.612244898vw + 192.2040816327px);
}
.l-lower-footer__entry__title .c-blockimage svg .st1 {
  fill: #111;
  stroke: none;
}
.l-lower-footer__entry__title .c-blockimage::before {
  padding-top: 8.6799276673%;
}
.l-lower-footer__entry__subtitle {
  color: #2e018a;
}
.l-lower-footer__entry__button {
  margin: 55px auto 0;
}
@media only screen and (max-width: 1599px) {
  .l-lower-footer__entry__button {
    margin: calc(2.2857142857vw + 18.4285714286px) auto 0;
  }
}

.u-ib {
  display: inline-block;
}

.u-visible_pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .u-visible_pc {
    display: none;
  }
}

.u-visible_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-visible_sp {
    display: block;
  }
}

.u-relative {
  position: relative;
}

.u-center {
  text-align: center;
}

.u-bold {
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.u-mt0 {
  margin-top: calc(0vw + 0px) !important;
}

.u-mb0 {
  margin-bottom: calc(0vw + 0px) !important;
}

.u-ml0 {
  margin-left: calc(0vw + 0px) !important;
}

.u-mr0 {
  margin-right: calc(0vw + 0px) !important;
}

.u-pt0 {
  padding-top: calc(0vw + 0px) !important;
}

.u-pb0 {
  padding-bottom: calc(0vw + 0px) !important;
}

.u-pl0 {
  padding-left: calc(0vw + 0px) !important;
}

.u-pr0 {
  padding-right: calc(0vw + 0px) !important;
}

.u-mt5 {
  margin-top: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-mb5 {
  margin-bottom: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-ml5 {
  margin-left: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-mr5 {
  margin-right: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-pt5 {
  padding-top: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-pb5 {
  padding-bottom: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-pl5 {
  padding-left: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-pr5 {
  padding-right: calc(0.4081632653vw + 3.4693877551px) !important;
}

.u-mt10 {
  margin-top: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-mb10 {
  margin-bottom: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-ml10 {
  margin-left: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-mr10 {
  margin-right: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-pt10 {
  padding-top: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-pb10 {
  padding-bottom: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-pl10 {
  padding-left: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-pr10 {
  padding-right: calc(0.8163265306vw + 6.9387755102px) !important;
}

.u-mt15 {
  margin-top: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-mb15 {
  margin-bottom: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-ml15 {
  margin-left: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-mr15 {
  margin-right: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-pt15 {
  padding-top: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-pb15 {
  padding-bottom: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-pl15 {
  padding-left: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-pr15 {
  padding-right: calc(1.2244897959vw + 10.4081632653px) !important;
}

.u-mt20 {
  margin-top: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-mb20 {
  margin-bottom: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-ml20 {
  margin-left: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-mr20 {
  margin-right: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-pt20 {
  padding-top: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-pb20 {
  padding-bottom: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-pl20 {
  padding-left: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-pr20 {
  padding-right: calc(1.6326530612vw + 13.8775510204px) !important;
}

.u-mt25 {
  margin-top: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-mb25 {
  margin-bottom: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-ml25 {
  margin-left: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-mr25 {
  margin-right: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-pt25 {
  padding-top: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-pb25 {
  padding-bottom: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-pl25 {
  padding-left: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-pr25 {
  padding-right: calc(2.0408163265vw + 17.3469387755px) !important;
}

.u-mt30 {
  margin-top: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-mb30 {
  margin-bottom: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-ml30 {
  margin-left: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-mr30 {
  margin-right: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-pt30 {
  padding-top: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-pb30 {
  padding-bottom: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-pl30 {
  padding-left: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-pr30 {
  padding-right: calc(2.4489795918vw + 20.8163265306px) !important;
}

.u-mt35 {
  margin-top: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-mb35 {
  margin-bottom: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-ml35 {
  margin-left: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-mr35 {
  margin-right: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-pt35 {
  padding-top: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-pb35 {
  padding-bottom: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-pl35 {
  padding-left: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-pr35 {
  padding-right: calc(2.8571428571vw + 24.2857142857px) !important;
}

.u-mt40 {
  margin-top: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-mb40 {
  margin-bottom: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-ml40 {
  margin-left: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-mr40 {
  margin-right: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-pt40 {
  padding-top: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-pb40 {
  padding-bottom: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-pl40 {
  padding-left: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-pr40 {
  padding-right: calc(3.2653061224vw + 27.7551020408px) !important;
}

.u-mt45 {
  margin-top: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-mb45 {
  margin-bottom: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-ml45 {
  margin-left: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-mr45 {
  margin-right: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-pt45 {
  padding-top: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-pb45 {
  padding-bottom: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-pl45 {
  padding-left: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-pr45 {
  padding-right: calc(3.6734693878vw + 31.2244897959px) !important;
}

.u-mt50 {
  margin-top: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-mb50 {
  margin-bottom: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-ml50 {
  margin-left: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-mr50 {
  margin-right: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-pt50 {
  padding-top: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-pb50 {
  padding-bottom: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-pl50 {
  padding-left: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-pr50 {
  padding-right: calc(4.0816326531vw + 34.693877551px) !important;
}

.u-mt55 {
  margin-top: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-mb55 {
  margin-bottom: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-ml55 {
  margin-left: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-mr55 {
  margin-right: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-pt55 {
  padding-top: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-pb55 {
  padding-bottom: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-pl55 {
  padding-left: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-pr55 {
  padding-right: calc(4.4897959184vw + 38.1632653061px) !important;
}

.u-mt60 {
  margin-top: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-mb60 {
  margin-bottom: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-ml60 {
  margin-left: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-mr60 {
  margin-right: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-pt60 {
  padding-top: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-pb60 {
  padding-bottom: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-pl60 {
  padding-left: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-pr60 {
  padding-right: calc(4.8979591837vw + 41.6326530612px) !important;
}

.u-mt65 {
  margin-top: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-mb65 {
  margin-bottom: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-ml65 {
  margin-left: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-mr65 {
  margin-right: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-pt65 {
  padding-top: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-pb65 {
  padding-bottom: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-pl65 {
  padding-left: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-pr65 {
  padding-right: calc(5.306122449vw + 45.1020408163px) !important;
}

.u-mt70 {
  margin-top: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-mb70 {
  margin-bottom: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-ml70 {
  margin-left: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-mr70 {
  margin-right: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-pt70 {
  padding-top: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-pb70 {
  padding-bottom: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-pl70 {
  padding-left: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-pr70 {
  padding-right: calc(5.7142857143vw + 48.5714285714px) !important;
}

.u-mt75 {
  margin-top: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-mb75 {
  margin-bottom: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-ml75 {
  margin-left: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-mr75 {
  margin-right: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-pt75 {
  padding-top: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-pb75 {
  padding-bottom: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-pl75 {
  padding-left: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-pr75 {
  padding-right: calc(6.1224489796vw + 52.0408163265px) !important;
}

.u-mt80 {
  margin-top: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-mb80 {
  margin-bottom: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-ml80 {
  margin-left: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-mr80 {
  margin-right: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-pt80 {
  padding-top: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-pb80 {
  padding-bottom: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-pl80 {
  padding-left: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-pr80 {
  padding-right: calc(6.5306122449vw + 55.5102040816px) !important;
}

.u-mt85 {
  margin-top: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-mb85 {
  margin-bottom: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-ml85 {
  margin-left: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-mr85 {
  margin-right: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-pt85 {
  padding-top: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-pb85 {
  padding-bottom: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-pl85 {
  padding-left: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-pr85 {
  padding-right: calc(6.9387755102vw + 58.9795918367px) !important;
}

.u-mt90 {
  margin-top: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-mb90 {
  margin-bottom: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-ml90 {
  margin-left: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-mr90 {
  margin-right: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-pt90 {
  padding-top: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-pb90 {
  padding-bottom: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-pl90 {
  padding-left: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-pr90 {
  padding-right: calc(7.3469387755vw + 62.4489795918px) !important;
}

.u-mt95 {
  margin-top: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-mb95 {
  margin-bottom: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-ml95 {
  margin-left: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-mr95 {
  margin-right: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-pt95 {
  padding-top: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-pb95 {
  padding-bottom: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-pl95 {
  padding-left: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-pr95 {
  padding-right: calc(7.7551020408vw + 65.9183673469px) !important;
}

.u-mt100 {
  margin-top: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-mb100 {
  margin-bottom: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-ml100 {
  margin-left: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-mr100 {
  margin-right: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-pt100 {
  padding-top: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-pb100 {
  padding-bottom: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-pl100 {
  padding-left: calc(8.1632653061vw + 69.387755102px) !important;
}

.u-pr100 {
  padding-right: calc(8.1632653061vw + 69.387755102px) !important;
}

@media only screen and (max-width: 1599px) {
  .d-b-max {
    display: none !important;
  }
}
@media only screen and (max-width: 1299px) {
  .d-b-md {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .d-b-tab {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-b-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 567px) {
  .d-b-spmin {
    display: none !important;
  }
}
@media only screen and (max-width: 374px) {
  .d-b-min {
    display: none !important;
  }
}
.d-n-max {
  display: none !important;
}
@media only screen and (max-width: 1599px) {
  .d-n-max {
    display: block !important;
  }
  .d-n-max.-f {
    display: flex !important;
  }
  .d-n-max.-i {
    display: inline !important;
  }
  .d-n-max.-ib {
    display: inline-block !important;
  }
}
.d-n-md {
  display: none !important;
}
@media only screen and (max-width: 1299px) {
  .d-n-md {
    display: block !important;
  }
  .d-n-md.-f {
    display: flex !important;
  }
  .d-n-md.-i {
    display: inline !important;
  }
  .d-n-md.-ib {
    display: inline-block !important;
  }
}
.d-n-tab {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .d-n-tab {
    display: block !important;
  }
  .d-n-tab.-f {
    display: flex !important;
  }
  .d-n-tab.-i {
    display: inline !important;
  }
  .d-n-tab.-ib {
    display: inline-block !important;
  }
}
.d-n-sp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .d-n-sp {
    display: block !important;
  }
  .d-n-sp.-f {
    display: flex !important;
  }
  .d-n-sp.-i {
    display: inline !important;
  }
  .d-n-sp.-ib {
    display: inline-block !important;
  }
}
.d-n-spmin {
  display: none !important;
}
@media only screen and (max-width: 567px) {
  .d-n-spmin {
    display: block !important;
  }
  .d-n-spmin.-f {
    display: flex !important;
  }
  .d-n-spmin.-i {
    display: inline !important;
  }
  .d-n-spmin.-ib {
    display: inline-block !important;
  }
}
.d-n-min {
  display: none !important;
}
@media only screen and (max-width: 374px) {
  .d-n-min {
    display: block !important;
  }
  .d-n-min.-f {
    display: flex !important;
  }
  .d-n-min.-i {
    display: inline !important;
  }
  .d-n-min.-ib {
    display: inline-block !important;
  }
}

.c-blockimage {
  position: relative;
}
.c-blockimage::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-blockimage img,
.c-blockimage svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-text01 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1599px) {
  .c-text01 {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
.c-text01.-center {
  text-align: center;
}
.c-text02 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 1599px) {
  .c-text02 {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
    padding-left: 0;
  }
}
.c-text02.-center {
  text-align: center;
}
.c-text02 .-bold {
  font-weight: 700;
}
.c-text02.-bold {
  font-weight: 700;
}
.c-text03 {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .c-text03 {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
.c-text03.-center {
  text-align: center;
}
.c-text03.-bold {
  font-weight: 700;
}

.c-font-lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.c-font-mont {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.c-font-mont.-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.c-font-mont.-thin {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.c-font-mont.-semi {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.c-font-mont.-bold {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.c-anchor-link {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-anchor-link {
    justify-content: center;
  }
}
.c-anchor-link__item:last-child a {
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .c-anchor-link__item:last-child a {
    border-bottom: none;
  }
}
.c-anchor-link__item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 36px;
  padding-right: 36px;
  text-align: center;
  border-right: 1px solid #dddddd;
  transition: 0.4s;
}
@media only screen and (max-width: 1599px) {
  .c-anchor-link__item a {
    padding-left: calc(1.4693877551vw + 12.4897959184px);
    padding-right: calc(1.4693877551vw + 12.4897959184px);
  }
}
@media only screen and (max-width: 767px) {
  .c-anchor-link__item a {
    padding-left: calc(0.7346938776vw + 6.2448979592px);
    padding-right: calc(0.7346938776vw + 6.2448979592px);
    height: 100%;
    line-height: 1.4;
    align-items: center;
  }
}
.c-anchor-link__item a .icon {
  transition: 0.4s;
  transform: translateX(0);
}
.c-anchor-link__item a .icon svg {
  color: #2e018a;
}
.c-anchor-link__item a:hover .icon {
  transform: translateY(10%);
}
.c-anchor-link__text {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .c-anchor-link__text {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}

.c-common_page_head {
  margin-top: calc(2.8571428571vw + 24.2857142857px);
  margin-bottom: calc(4.0816326531vw + 34.693877551px);
}
.c-common_page_head__img {
  margin-bottom: calc(2.0408163265vw + 12.3469387755px);
  margin-left: 5%;
}
.c-common_page_head__img img {
  width: 100%;
}
.c-common_page_head__text {
  max-width: 950px;
  margin: 0 auto;
  line-height: 200%;
  font-size: calc(0.1632653061vw + 1.3387755102rem);
}
.c-common_page_head__text.-center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-common_page_head__text.-center {
    text-align: left;
  }
}

.c-common_num_accordion {
  position: relative;
  overflow: hidden;
}
.c-common_num_accordion:first-child {
  border-bottom: none;
}
.c-common_num_accordion:first-child__body {
  height: auto;
}
.c-common_num_accordion:last-child {
  border-bottom: 1px solid #dddddd;
}
.c-common_num_accordion__title {
  position: relative;
  padding: calc(2.0408163265vw + 17.3469387755px) calc(2.0408163265vw + 17.3469387755px) calc(1.6326530612vw + 13.8775510204px) calc(5.7142857143vw + 8.5714285714px);
  cursor: pointer;
  border: 1px solid #dddddd;
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .c-common_num_accordion__title {
    padding: calc(2.0408163265vw + 17.3469387755px) calc(2.0408163265vw + 17.3469387755px) calc(1.6326530612vw + 13.8775510204px) calc(1.6326530612vw + 13.8775510204px);
  }
}
.c-common_num_accordion__title::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #2e018a;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media only screen and (max-width: 1599px) {
  .c-common_num_accordion__title::before {
    height: calc(1.6326530612vw + 13.8775510204px);
  }
}
.c-common_num_accordion__title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #2e018a;
  right: 7%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
@media only screen and (max-width: 1599px) {
  .c-common_num_accordion__title::after {
    height: calc(1.6326530612vw + 13.8775510204px);
  }
}
.c-common_num_accordion__title.is-opened {
  border-bottom: none;
}
.c-common_num_accordion__title.is-opened::before {
  transform: translateY(-50%) rotate(90deg);
}
.c-common_num_accordion__title__border {
  width: 135px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 0;
  width: 135px;
  height: 100%;
  display: block;
}
.c-common_num_accordion__title__border::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50px;
  width: 120%;
  height: 1px;
  background: #dddddd;
  transform: rotate(-40deg);
  transform-origin: center bottom;
}
@media only screen and (max-width: 767px) {
  .c-common_num_accordion__title__border::before {
    display: none;
  }
}
.c-common_num_accordion__title__num {
  position: absolute;
  left: calc(0.4081632653vw + 8.4693877551px);
  top: calc(0.4081632653vw + 3.4693877551px);
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #2e018a;
  font-size: calc(0.1632653061vw + 1.3387755102rem);
}
@media only screen and (max-width: 767px) {
  .c-common_num_accordion__title__num {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
  }
}
.c-common_num_accordion__title__num span {
  -webkit-text-stroke-color: #2e018a;
  -webkit-text-stroke-width: 1px;
  font-size: calc(0.5714285714vw + 1.5857142857rem);
  color: transparent;
}
.c-common_num_accordion__title__text {
  font-size: calc(0.5714285714vw + 1.7857142857rem);
}
.c-common_num_accordion__title__text span {
  background: #2e018a;
  color: #ffffff;
  padding: calc(0.2448979592vw + 2.0816326531px);
  margin-right: 10px;
}

.c-comment {
  display: flex;
  align-items: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 767px) {
  .c-comment {
    align-items: flex-start;
  }
}
.c-comment__thumb {
  margin-right: 45px;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .c-comment__thumb {
    margin-right: calc(2.4489795918vw + 5.8163265306px);
  }
}
.c-comment__thumb__img {
  min-width: 80px;
  max-width: 80px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1599px) {
  .c-comment__thumb__img {
    min-width: calc(1.6326530612vw + 53.8775510204px);
    max-width: calc(1.6326530612vw + 53.8775510204px);
  }
}
.c-comment__thumb__name {
  font-family: "UD新ゴ M";
  color: #111111;
  font-size: 1.2rem;
  line-height: 1;
}
.c-comment__text {
  letter-spacing: 0.04em;
}

.c-pointer {
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 10000;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.c-pointer.is-slider {
  opacity: 1;
}
.c-pointer__inner {
  background: #ffffff;
  width: 100px;
  height: 100px;
  border: 1px solid #2e018a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.c-pointer__inner__text {
  color: #2e018a;
  display: flex;
  align-items: center;
}
.c-pointer__inner__text i {
  display: flex;
}
.c-pointer__inner__text svg {
  color: #2e018a;
}

.c-world_report {
  margin-bottom: calc(7.3469387755vw + 62.4489795918px);
}
.c-world_report__desc {
  margin-top: calc(1.6326530612vw + 23.8775510204px);
  margin-bottom: calc(2.8571428571vw + 24.2857142857px);
}
.c-world_report__list {
  display: flex;
  margin-left: calc(-0.8163265306vw + -6.9387755102px);
  margin-right: calc(-0.8163265306vw + -6.9387755102px);
}
@media only screen and (max-width: 767px) {
  .c-world_report__list {
    display: block;
  }
}
.c-world_report__block {
  width: 33.3%;
  padding: calc(0.8163265306vw + 6.9387755102px);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-world_report__block {
    width: 100%;
    margin-bottom: calc(0.8163265306vw + 26.9387755102px);
  }
}
.c-world_report__block__num {
  position: absolute;
  right: calc(1.6326530612vw + 8.8775510204px);
  top: 8px;
  color: #2e018a;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  z-index: 10;
}
@media only screen and (max-width: 1599px) {
  .c-world_report__block__num {
    font-size: calc(0.4897959184vw + 1.2163265306rem);
  }
}
.c-world_report__block__num span {
  color: transparent;
  font-size: 34px;
  -webkit-text-stroke-color: #2e018a;
  -webkit-text-stroke-width: 1px;
}
@media only screen and (max-width: 1599px) {
  .c-world_report__block__num span {
    font-size: calc(0.8163265306vw + 2.093877551rem);
  }
}
.c-world_report__block__en {
  font-size: calc(0.5714285714vw + 1.5857142857rem);
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  writing-mode: vertical-rl;
  position: absolute;
  left: calc(1.2244897959vw + 10.4081632653px);
  top: -10px;
  z-index: 11;
  color: #111111;
}
.c-world_report__block__img {
  position: relative;
  overflow: hidden;
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
}
.c-world_report__block__img img {
  transition: all 0.5s ease;
}
.is-pc .c-world_report__block__img img:hover {
  transform: scale(1.1);
}
.c-world_report__block__img .label {
  background: #2e018a;
  color: #ffffff;
  font-size: calc(0.2448979592vw + 1.4081632653rem);
  display: flex;
  align-items: center;
  padding: calc(0.4081632653vw + 3.4693877551px) calc(0.4081632653vw + 3.4693877551px);
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1;
  letter-spacing: 0.1em;
}
.c-world_report__block__img .label .icon {
  margin-left: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-check_list li {
  position: relative;
  padding-left: calc(0.8163265306vw + 11.9387755102px);
}
.c-check_list li .icon {
  position: absolute;
  left: 0;
  top: 1px;
}
.c-check_list li svg {
  color: #2e018a;
}

.c-table01 {
  width: 100%;
}
.c-table01 th,
.c-table01 td {
  padding: calc(0.8163265306vw + 6.9387755102px);
  font-weight: 400;
  border: 1px solid #dddddd;
}
.c-table01 thead th {
  background: #111111;
  color: #ffffff;
}
.c-table01 tbody th {
  background: #f5f5f5;
}

.c-title01 {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.c-title01.-line::before {
  content: "";
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(2.4489795918vw + 30.8163265306px);
  background: #2e018a;
  display: inline-block;
}
.c-title01__en {
  line-height: 1;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5e5e5;
  position: relative;
  display: block;
  text-align: center;
  opacity: 0.27;
  font-size: calc(4.4897959184vw + 5.8163265306rem);
}
@media only screen and (max-width: 767px) {
  .c-title01__en {
    transform: translate(0.1em, -50%);
    font-size: calc(2.0408163265vw + 4.2346938776rem);
  }
}
.c-title01__en.-white {
  color: #ffffff;
  opacity: 1;
}
.c-title01__jp {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  color: #ffffff;
  background: #2e018a;
  font-size: 1.7rem;
  line-height: 1.4;
  padding: 0.2em 0.8em;
}
@media only screen and (max-width: 767px) {
  .c-title01__jp {
    top: 0;
    font-size: calc(0.2448979592vw + 1.3081632653rem);
  }
}
.c-title01__jp.-normal {
  background: none;
  font-size: 2.8rem;
  color: #111111;
  top: 30%;
}
@media only screen and (max-width: 1599px) {
  .c-title01__jp.-normal {
    font-size: calc(0.3265306122vw + 2.2775510204rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title01__jp.-normal {
    width: 100%;
    font-size: calc(0.1632653061vw + 1.7387755102rem);
    top: -30%;
  }
}
.c-title01__number {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2e018a;
  font-size: 1.6rem;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 20%;
  transform: translate(-50%);
}
@media only screen and (max-width: 767px) {
  .c-title01__number {
    top: -40%;
  }
}
.c-title02 {
  text-align: center;
}
.c-title02 span {
  display: inline-block;
  font-size: 1.8rem;
  color: #ffffff;
  background: #2e018a;
  line-height: 1.4;
  padding: 0.2em 0.8em;
}
@media only screen and (max-width: 1599px) {
  .c-title02 span {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
.c-title02.-large span {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1599px) {
  .c-title02.-large span {
    font-size: calc(0.3265306122vw + 2.2775510204rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title02.-large span {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
.c-title03 {
  display: flex;
  align-items: center;
}
.c-title03__jp {
  font-size: 2.6rem;
  line-height: 1.4;
}
@media only screen and (max-width: 1599px) {
  .c-title03__jp {
    font-size: calc(0.1632653061vw + 2.3387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title03__jp {
    font-size: calc(0.4897959184vw + 1.4163265306rem);
  }
}
.c-title03__jp .-en {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-right: 0.025em;
}
.c-title03__slash {
  width: 1px;
  height: 35px;
  background: #707070;
  margin: 0 2.5em;
  transform: rotate(50deg);
}
@media only screen and (max-width: 767px) {
  .c-title03__slash {
    margin: 0 1.5em;
  }
}
.c-title03__en {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2e018a;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1599px) {
  .c-title03__en {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.c-title04 {
  color: #111111;
}
.c-title04__title {
  position: relative;
  font-size: 6.5rem;
  display: block;
  text-transform: uppercase;
  line-height: 1.4;
}
@media only screen and (max-width: 1599px) {
  .c-title04__title {
    font-size: calc(2.612244898vw + 2.3204081633rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title04__title {
    font-size: calc(0.5714285714vw + 2.3857142857rem);
  }
}
.c-title04__title::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  top: calc(-2.0408163265vw + -17.3469387755px);
  left: 0.3em;
  background: #2e018a;
  transform: rotate(50deg);
}
@media only screen and (max-width: 767px) {
  .c-title04__title::before {
    height: 20px;
  }
}
.c-title05 {
  display: inline-block;
  padding-left: 1em;
  border-left: 1px solid #2e018a;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1599px) {
  .c-title05 {
    font-size: calc(0.1632653061vw + 2.1387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title05 {
    font-size: calc(0.1632653061vw + 1.7387755102rem);
  }
}
.c-title06 {
  font-size: 18px;
  position: relative;
  padding-bottom: calc(0.8163265306vw + 6.9387755102px);
}
@media only screen and (max-width: 1599px) {
  .c-title06 {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title06 {
    font-size: calc(0.0816326531vw + 1.4693877551rem);
  }
}
.c-title06::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #2e018a;
}
.c-title07 span {
  display: inline-block;
  padding: calc(0.4897959184vw + 4.1632653061px) calc(0.4897959184vw + 4.1632653061px) calc(0.3265306122vw + 2.7755102041px);
  background: #2e018a;
  color: #ffffff;
  font-size: 2.7rem;
}
@media only screen and (max-width: 1599px) {
  .c-title07 span {
    font-size: calc(0.8979591837vw + 1.2632653061rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-title07 span small {
    display: block;
  }
}
.c-title08 span {
  border-bottom: 2px solid #2e018a;
  font-size: 2rem;
}
@media only screen and (max-width: 1599px) {
  .c-title08 span {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}

.c-heading01 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 30px;
}
@media only screen and (max-width: 1599px) {
  .c-heading01 {
    font-size: calc(0.3265306122vw + 2.2775510204rem);
    margin-top: calc(1.2244897959vw + 1.0408163265rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-heading01 {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
.c-heading01 span {
  text-decoration: underline;
}
.c-heading01 .-en {
  text-decoration: none;
  color: #2e018a;
  font-size: 3rem;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 0.1em;
  margin-left: 0.2em;
  border-bottom: 2px solid #111111;
}
@media only screen and (max-width: 767px) {
  .c-heading01 .-en {
    font-size: calc(0.4897959184vw + 2.2163265306rem);
  }
}
.c-heading02 {
  display: inline-block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  font-size: 2.8rem;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .c-heading02 {
    font-size: calc(0.3265306122vw + 2.2775510204rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-heading02 {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
.c-heading02 span {
  background: #2e018a;
  color: #ffffff;
  padding: 0.3em;
}

.c-button01 a,
.c-button01 .text {
  background-color: #2e018a;
  color: #ffffff;
}
.c-button02 a,
.c-button02 .text {
  background-color: #ffffff;
  color: #2e018a;
}
.c-button03 a {
  border: 1px solid #2e018a;
  font-size: 1.5rem;
  padding: 1.5em 2em;
  position: relative;
  transition: 0.4s;
}
@media only screen and (max-width: 1599px) {
  .c-button03 a {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-button03 a {
    background: #2e018a;
    color: #ffffff;
  }
}
.c-button03 a::before {
  content: "";
  transition: 0.4s;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-top: 8px solid transparent;
  border-right: 8px solid #2e018a;
  border-bottom: 8px solid #2e018a;
  border-left: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid #2e018a;
  border-bottom: 8px solid #2e018a;
  border-left: 8px solid transparent;
}
@media only screen and (max-width: 767px) {
  .c-button03 a::before {
    border-right: 8px solid #ffffff;
    border-bottom: 8px solid #ffffff;
    border-right: 8px solid #ffffff;
    border-bottom: 8px solid #ffffff;
  }
}
.is-pc .c-button03 a:hover {
  background: #2e018a;
  color: #ffffff;
}
.is-pc .c-button03 a:hover::before {
  border-right: 8px solid #ffffff;
  border-bottom: 8px solid #ffffff;
  border-right: 8px solid #ffffff;
  border-bottom: 8px solid #ffffff;
}

.c-container {
  width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 55px;
  padding-right: 55px;
}
@media only screen and (max-width: 1599px) {
  .c-container {
    width: calc(68.1632653061vw + 119.387755102px);
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
@media only screen and (max-width: 567px) {
  .c-container {
    width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  .c-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-fluid {
  padding-left: 55px;
  padding-right: 55px;
}
@media only screen and (max-width: 1599px) {
  .c-fluid {
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}

.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #2e018a;
  color: #ffffff;
  z-index: 9500;
  font-size: 1.6rem;
  line-height: 1.7;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 0;
}
@media only screen and (max-width: 1599px) {
  .c-drawer {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
  }
}
.c-drawer.is-act {
  width: 100%;
}
.c-drawer.is-act::before, .c-drawer.is-act::after {
  transition: 0.8s transform;
}
.c-drawer.is-act::before {
  transform: rotate(36.75deg);
}
.c-drawer.is-act::after {
  transform: rotate(-36.75deg);
}
.c-drawer::before, .c-drawer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  right: 5%;
  top: 50%;
  border-bottom: 1px solid;
  opacity: 0.2;
  transform-origin: 15% center;
  transition: 0s transform;
}
.is-vertical .c-drawer::before, .is-vertical .c-drawer::after {
  width: 150%;
  right: -5%;
  transform-origin: 85% center;
}
.c-drawer__container {
  width: 100%;
  overflow-y: auto;
  margin: auto;
  max-height: 100%;
  padding-top: calc(4.0816326531vw + 34.693877551px);
  padding-bottom: calc(4.0816326531vw + 34.693877551px);
}
.c-drawer__inner {
  padding-left: 200px;
  padding-right: 200px;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__inner {
    padding-left: calc(14.693877551vw + -35.1020408163px);
    padding-right: calc(14.693877551vw + -35.1020408163px);
  }
}
.c-drawer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: -100px;
  margin-right: -100px;
  margin-left: 100px;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__list {
    margin-left: calc(17.3611111111vw + -177.7777777778px);
    margin-right: calc(-17.3611111111vw + 177.7777777778px);
    margin-bottom: calc(-4.0816326531vw + -34.693877551px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-drawer__list {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 567px) {
  .c-drawer__list {
    display: block;
    margin-bottom: 0;
  }
}
.c-drawer__buttons {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}
.c-drawer__buttons .c-button02 {
  margin-right: 30px;
  width: 100%;
  max-width: 400px;
}
@media only screen and (max-width: 567px) {
  .c-drawer__buttons .c-button02 {
    margin-right: 0;
    margin-top: 2em;
  }
}
.c-drawer__buttons .c-button02 a,
.c-drawer__buttons .c-button02 .link {
  width: 100%;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__buttons .c-button02 a,
.c-drawer__buttons .c-button02 .link {
    font-size: calc(0.3265306122vw + 1.2775510204rem);
  }
}
.c-drawer__buttons .c-button02:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__buttons {
    margin-top: calc(3.2653061224vw + 37.7551020408px);
  }
}
@media only screen and (max-width: 567px) {
  .c-drawer__buttons {
    display: block;
  }
}
.c-drawer__item {
  width: 100%;
  max-width: 25%;
  min-width: 25%;
  padding-right: 1em;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__item {
    margin-bottom: calc(4.8979591837vw + 21.6326530612px);
  }
}
@media only screen and (max-width: 1299px) {
  .c-drawer__item {
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }
}
@media only screen and (max-width: 1023px) {
  .c-drawer__item {
    max-width: 50%;
    min-width: 50%;
  }
}
@media only screen and (max-width: 567px) {
  .c-drawer__item {
    max-width: 100%;
  }
}
.c-drawer__item:last-child {
  margin-bottom: 0;
}
.c-drawer__item__heading {
  line-height: 1.4;
  font-size: 2.6rem;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__item__heading {
    font-size: calc(0.6530612245vw + 1.5551020408rem);
  }
}
.c-drawer__item__item {
  margin-bottom: 1.25em;
}
@media only screen and (max-width: 567px) {
  .c-drawer__item__item {
    margin-bottom: 1em;
  }
}
.c-drawer__item__item:last-child {
  margin-bottom: 0;
}
.c-drawer__item__item a {
  display: flex;
  align-items: flex-start;
}
.c-drawer__item__item a::before {
  content: "";
  display: block;
  border-bottom: 1px solid;
  width: 0.5em;
  margin-right: 0.5em;
  margin-top: 0.8em;
}
.c-drawer__item__item a.nolink {
  pointer-events: none;
  opacity: 0.5;
}
.c-drawer__item__item a.nolink small {
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-drawer__item__item a.nolink small {
    display: inline-block;
    margin-left: 0.8 em;
  }
}
.is-pc .c-drawer__item__item a:hover {
  opacity: 0.7;
}
.c-drawer__item__item a .js-svg {
  margin-top: 0.3em;
  margin-left: 0.5em;
}
.c-drawer__button {
  background-color: #2e018a;
  width: 110px;
  height: 110px;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__button {
    width: calc(4.0816326531vw + 44.693877551px);
    height: calc(4.0816326531vw + 44.693877551px);
  }
}
.is-pc .c-drawer__button {
  transition: 0.4s background-color;
}
.is-pc .c-drawer__button:hover {
  background-color: #6241a7;
}
.c-drawer__button::before, .c-drawer__button::after {
  content: "";
}
.c-drawer__button .bar, .c-drawer__button::before, .c-drawer__button::after {
  display: block;
  height: 2px;
  width: 35px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  background-color: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .c-drawer__button .bar, .c-drawer__button::before, .c-drawer__button::after {
    width: calc(1.2244897959vw + 15.4081632653px);
  }
}
@media only screen and (max-width: 767px) {
  .c-drawer__button .bar, .c-drawer__button::before, .c-drawer__button::after {
    height: 1px;
  }
}
.c-drawer__button::before {
  top: 40%;
}
.c-drawer__button .bar {
  top: 50%;
}
.c-drawer__button::after {
  top: 60%;
}
.c-drawer .c-drawer__button {
  position: absolute;
  top: 0;
  right: 0;
}
.c-drawer .c-drawer__button .bar {
  display: none;
}
.c-drawer .c-drawer__button::before, .c-drawer .c-drawer__button::after {
  top: 50%;
}
.c-drawer .c-drawer__button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-drawer .c-drawer__button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-scroller {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 9250;
  color: #cccccc;
  mix-blend-mode: difference;
  font-size: 1.3rem;
  width: 0;
  height: 0;
  border-radius: 9999px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  pointer-events: none;
  transition: 0.4s width, 0.4s height, 0.4s opacity;
  overflow: hidden;
}
.c-scroller.is-act {
  width: 100px;
  height: 100px;
  opacity: 1;
}
.c-scroller.-drag {
  opacity: 0;
  color: #2e018a;
  border-color: #2e018a;
  background: #fff;
  mix-blend-mode: normal;
}
.c-scroller.-drag.-energy {
  border-color: #00a9ba;
  color: #00a9ba;
}
.c-scroller.-drag.-communication {
  border-color: #6241a7;
  color: #6241a7;
}
.c-scroller.is-slider {
  opacity: 1;
}

.c-sitemap {
  position: fixed;
  right: 0;
  width: 0%;
  bottom: 0;
  overflow: hidden;
  height: 100%;
  z-index: 9400;
  background-color: #ffffff;
}
.c-sitemap.is-act {
  width: 100%;
}
.c-sitemap__title {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__title {
    font-size: calc(0.6530612245vw + 2.1551020408rem);
  }
}
.c-sitemap__title::before {
  margin-right: 0.25em;
  content: "#";
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-text-stroke: 1px #2e018a;
  text-stroke: 1px #2e018a;
  color: transparent;
}
@media all and (-ms-high-contrast: none) {
  .c-sitemap__title::before {
    color: #2e018a;
  }
}
.c-sitemap__container {
  width: 100%;
  overflow-y: auto;
  margin: auto;
  max-height: 100%;
  padding-top: calc(0.8163265306vw + 86.9387755102px);
  padding-bottom: calc(4.0816326531vw + 34.693877551px);
}
.c-sitemap__inner {
  padding-left: 200px;
  padding-right: 200px;
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__inner {
    padding-left: calc(14.693877551vw + -35.1020408163px);
    padding-right: calc(14.693877551vw + -35.1020408163px);
  }
}
.c-sitemap__list {
  margin-top: calc(1.6326530612vw + 13.8775510204px);
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1.2244897959vw + -0.4081632653px);
  margin-left: calc(-1.2244897959vw + -0.4081632653px);
  margin-bottom: calc(-1.6326530612vw + -13.8775510204px);
}
.c-sitemap__item {
  width: 100%;
  max-width: 25%;
  padding-right: calc(1.2244897959vw + 0.4081632653px);
  padding-left: calc(1.2244897959vw + 0.4081632653px);
  margin-bottom: calc(2.4489795918vw + 0.8163265306px);
  opacity: 0;
  transform: translateY(40px);
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__item {
    max-width: 33.3333333333%;
  }
}
@media only screen and (max-width: 1023px) {
  .c-sitemap__item {
    max-width: 50%;
  }
}
.c-sitemap__item:nth-child(1) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(2) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(3) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(4) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(5) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(6) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(7) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(8) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(9) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(10) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(11) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(12) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(13) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(14) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(15) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(16) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(17) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(18) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(19) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(20) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(21) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(22) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(23) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(24) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(25) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(26) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(27) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(28) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(29) {
  transition: 0s opacity, 0s transform;
}
.c-sitemap__item:nth-child(30) {
  transition: 0s opacity, 0s transform;
}
.is-act .c-sitemap__item {
  opacity: 1;
  transform: translateY(0);
}
.is-act .c-sitemap__item:nth-child(1) {
  transition: 0.6s opacity 0s, 0.6s transform 0s;
}
.is-act .c-sitemap__item:nth-child(2) {
  transition: 0.6s opacity 0.1s, 0.6s transform 0.1s;
}
.is-act .c-sitemap__item:nth-child(3) {
  transition: 0.6s opacity 0.2s, 0.6s transform 0.2s;
}
.is-act .c-sitemap__item:nth-child(4) {
  transition: 0.6s opacity 0.3s, 0.6s transform 0.3s;
}
.is-act .c-sitemap__item:nth-child(5) {
  transition: 0.6s opacity 0.4s, 0.6s transform 0.4s;
}
.is-act .c-sitemap__item:nth-child(6) {
  transition: 0.6s opacity 0.5s, 0.6s transform 0.5s;
}
.is-act .c-sitemap__item:nth-child(7) {
  transition: 0.6s opacity 0.6s, 0.6s transform 0.6s;
}
.is-act .c-sitemap__item:nth-child(8) {
  transition: 0.6s opacity 0.7s, 0.6s transform 0.7s;
}
.is-act .c-sitemap__item:nth-child(9) {
  transition: 0.6s opacity 0.8s, 0.6s transform 0.8s;
}
.is-act .c-sitemap__item:nth-child(10) {
  transition: 0.6s opacity 0.9s, 0.6s transform 0.9s;
}
.is-act .c-sitemap__item:nth-child(11) {
  transition: 0.6s opacity 1s, 0.6s transform 1s;
}
.is-act .c-sitemap__item:nth-child(12) {
  transition: 0.6s opacity 1.1s, 0.6s transform 1.1s;
}
.is-act .c-sitemap__item:nth-child(13) {
  transition: 0.6s opacity 1.2s, 0.6s transform 1.2s;
}
.is-act .c-sitemap__item:nth-child(14) {
  transition: 0.6s opacity 1.3s, 0.6s transform 1.3s;
}
.is-act .c-sitemap__item:nth-child(15) {
  transition: 0.6s opacity 1.4s, 0.6s transform 1.4s;
}
.is-act .c-sitemap__item:nth-child(16) {
  transition: 0.6s opacity 1.5s, 0.6s transform 1.5s;
}
.is-act .c-sitemap__item:nth-child(17) {
  transition: 0.6s opacity 1.6s, 0.6s transform 1.6s;
}
.is-act .c-sitemap__item:nth-child(18) {
  transition: 0.6s opacity 1.7s, 0.6s transform 1.7s;
}
.is-act .c-sitemap__item:nth-child(19) {
  transition: 0.6s opacity 1.8s, 0.6s transform 1.8s;
}
.is-act .c-sitemap__item:nth-child(20) {
  transition: 0.6s opacity 1.9s, 0.6s transform 1.9s;
}
.is-act .c-sitemap__item:nth-child(21) {
  transition: 0.6s opacity 2s, 0.6s transform 2s;
}
.is-act .c-sitemap__item:nth-child(22) {
  transition: 0.6s opacity 2.1s, 0.6s transform 2.1s;
}
.is-act .c-sitemap__item:nth-child(23) {
  transition: 0.6s opacity 2.2s, 0.6s transform 2.2s;
}
.is-act .c-sitemap__item:nth-child(24) {
  transition: 0.6s opacity 2.3s, 0.6s transform 2.3s;
}
.is-act .c-sitemap__item:nth-child(25) {
  transition: 0.6s opacity 2.4s, 0.6s transform 2.4s;
}
.is-act .c-sitemap__item:nth-child(26) {
  transition: 0.6s opacity 2.5s, 0.6s transform 2.5s;
}
.is-act .c-sitemap__item:nth-child(27) {
  transition: 0.6s opacity 2.6s, 0.6s transform 2.6s;
}
.is-act .c-sitemap__item:nth-child(28) {
  transition: 0.6s opacity 2.7s, 0.6s transform 2.7s;
}
.is-act .c-sitemap__item:nth-child(29) {
  transition: 0.6s opacity 2.8s, 0.6s transform 2.8s;
}
.is-act .c-sitemap__item:nth-child(30) {
  transition: 0.6s opacity 2.9s, 0.6s transform 2.9s;
}
.c-sitemap__item a {
  display: block;
  height: 100%;
  position: relative;
  background-color: #f5f5f5;
}
.c-sitemap__item a::after {
  color: #2e018a;
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-bottom: 10px solid;
  border-right: 10px solid;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
}
@media only screen and (max-width: 567px) {
  .c-sitemap__item a::after {
    width: 10px;
    height: 10px;
    right: 5px;
    bottom: 5px;
    border-bottom: 5px solid;
    border-right: 5px solid;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
  }
}
.is-pc .c-sitemap__item a::after {
  transition: 0.4s transform;
  transform-origin: right bottom;
}
.is-pc .c-sitemap__item a:hover::after {
  transform: scale(1.5);
}
.c-sitemap__item img {
  width: 100%;
}
.c-sitemap__item .label {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
  color: #2e018a;
  text-decoration: underline;
  font-size: calc(0.2448979592vw + 0.8081632653rem);
}
.c-sitemap__item .title {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.4;
  font-size: calc(0.3265306122vw + 1.2775510204rem);
}
@media only screen and (max-width: 1023px) {
  .c-sitemap__item .title {
    font-size: calc(0.6163328197vw + 1.1688751926rem);
  }
}
.c-sitemap__item .tags {
  display: flex;
  font-size: calc(0.2448979592vw + 0.9081632653rem);
  flex-wrap: wrap;
  line-height: 1.4;
  margin-bottom: -5px;
}
.c-sitemap__item .tags .tag {
  margin-right: 6px;
  margin-bottom: 6px;
  background-color: #ffffff;
  border-radius: 9999px;
  padding: 0.4em 0.8em;
  border: 1px solid #f2f2f2;
}
@media only screen and (max-width: 567px) {
  .c-sitemap__item .tags .tag {
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 0.3em 0.6em;
  }
}
.c-sitemap__item .tags .tag::before {
  content: "#";
  color: #2e018a;
}
.c-sitemap__item__head::before {
  padding-top: 61.8421052632%;
}
.c-sitemap__item__body {
  padding: calc(1.6326530612vw + 3.8775510204px);
}
.c-sitemap__button {
  width: 110px;
  height: 110px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2e018a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__button {
    width: calc(4.0816326531vw + 44.693877551px);
    height: calc(4.0816326531vw + 44.693877551px);
  }
}
.is-pc .c-sitemap__button {
  transition: 0.4s background-color;
}
.is-pc .c-sitemap__button:hover {
  background-color: #ebe6f4;
}
.is-pc .c-sitemap__button:hover .mark::before, .is-pc .c-sitemap__button:hover .mark::after {
  background-color: #2e018a;
}
.is-pc .c-sitemap__button:hover .text {
  color: #2e018a;
}
.c-sitemap__button .mark {
  width: 35px;
  height: 35px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__button .mark {
    width: calc(1.2244897959vw + 15.4081632653px);
    height: calc(1.2244897959vw + 15.4081632653px);
  }
}
.c-sitemap__button .mark::before, .c-sitemap__button .mark::after {
  content: "";
  top: 50%;
  display: block;
  height: 2px;
  width: 35px;
  position: absolute;
  left: 50%;
  background-color: #fff;
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__button .mark::before, .c-sitemap__button .mark::after {
    width: calc(1.2244897959vw + 15.4081632653px);
  }
}
@media only screen and (max-width: 767px) {
  .c-sitemap__button .mark::before, .c-sitemap__button .mark::after {
    height: 1px;
  }
}
.c-sitemap__button .mark::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-sitemap__button .mark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-sitemap__button .text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  margin-top: 0.3em;
}
@media only screen and (max-width: 1599px) {
  .c-sitemap__button .text {
    font-size: calc(0.1632653061vw + 0.9387755102rem);
  }
}

.c-lower {
  margin-top: 190px;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .c-lower {
    margin-top: calc(6.5306122449vw + 85.5102040816px);
  }
}
.c-lower__subtitle {
  font-size: 1.4rem;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: underline;
  color: #2e018a;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1599px) {
  .c-lower__subtitle {
    font-size: calc(0.2448979592vw + 1.0081632653rem);
  }
}
.c-lower__title {
  font-size: 4.2rem;
  color: #111111;
  font-size: calc(1.4693877551vw + 1.8489795918rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-lower__title span {
  display: inline-block;
  padding: 0.3em 0.25em 0.3em 0.3em;
}
.c-lower__title span.bg {
  background-color: #111111;
  color: #ffffff;
}
.c-lower.-life-on-base {
  position: relative;
  margin-top: 0;
  padding-top: 220px;
  padding-bottom: 490px;
  text-align: left;
}
.c-lower.-life-on-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(/career/fresh/common/img/environment/life-on-base/life-on-base_map.png) no-repeat center top;
  background-size: contain;
  z-index: -1;
}
@media only screen and (max-width: 1023px) {
  .c-lower.-life-on-base::before {
    background: url(/career/fresh/common/img/environment/life-on-base/life-on-base_map_tab.png) no-repeat center 20px;
    background-size: contain;
    width: 120%;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower.-life-on-base::before {
    background: url(/career/fresh/common/img/environment/life-on-base/life-on-base_map_sp.png) no-repeat center 20px;
    background-size: contain;
    width: 120%;
  }
}
@media only screen and (max-width: 1599px) {
  .c-lower.-life-on-base {
    margin-top: 0;
    padding-top: calc(19.0972222222vw + -85.5555555556px);
    padding-bottom: calc(32.9861111111vw + -37.7777777778px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower.-life-on-base {
    margin-top: 0;
    padding-top: calc(7.3469387755vw + 62.4489795918px);
    padding-bottom: calc(20.4081632653vw + 273.4693877551px);
  }
}
@media only screen and (max-width: 767px) {
  .c-lower.-life-on-base {
    padding-top: calc(8.1632653061vw + 69.387755102px);
    padding-bottom: calc(44.8979591837vw + 281.6326530612px);
  }
}
.c-lower.-life-on-base .c-lower__title {
  justify-content: flex-start;
}
.c-lower.-life-on-base .c-lower__desc {
  max-width: 450px;
  margin-top: calc(1.6326530612vw + 13.8775510204px);
  line-height: 180%;
  font-size: calc(0.4897959184vw + 0.8163265306rem);
}
@media only screen and (max-width: 1023px) {
  .c-lower.-life-on-base .c-lower__desc {
    max-width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower.-life-on-base .c-lower__desc {
    width: 70%;
  }
}

.c-lower_business {
  max-height: 77vh;
  position: relative;
  margin-left: 70px;
  width: 100vw;
  overflow: hidden;
  margin-top: calc(4.0816326531vw + 44.693877551px);
}
@media only screen and (max-width: 1599px) {
  .c-lower_business {
    margin-left: calc(5.7142857143vw + -21.4285714286px);
  }
}
.c-lower_business__img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .c-lower_business__img {
    height: calc(20.4081632653vw + 273.4693877551px);
  }
}
.c-lower_business__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-lower_business__head {
  position: absolute;
  top: 50%;
  left: 180px;
  transform: translateY(-50%);
  color: #fff;
}
@media only screen and (max-width: 1599px) {
  .c-lower_business__head {
    left: calc(12.2448979592vw + -15.9183673469px);
  }
}
.c-lower_business__subtitle {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .c-lower_business__subtitle {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
    margin-bottom: calc(0.8979591837vw + 10.6326530612px);
  }
}
.c-lower_business__title {
  display: inline-block;
  font-size: 4.2rem;
  font-family: "UD新ゴ M";
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .c-lower_business__title {
    margin-bottom: calc(1.6326530612vw + 13.8775510204px);
    font-size: calc(1.4693877551vw + 1.8489795918rem);
  }
}
.c-lower_business__copy {
  font-size: 2rem;
  font-family: "UD新ゴ M";
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media only screen and (max-width: 1599px) {
  .c-lower_business__copy {
    font-size: calc(0.4897959184vw + 1.2163265306rem);
  }
}

.c-lower_project {
  display: flex;
  height: 100vh;
  max-height: 900px;
  position: relative;
  margin-top: calc(4.0816326531vw + 44.693877551px);
}
@media only screen and (max-width: 1599px) {
  .c-lower_project {
    max-height: calc(39.5918367347vw + 266.5306122449px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower_project {
    height: auto;
    flex-direction: column-reverse;
  }
}
.c-lower_project__head {
  width: 44vw;
}
@media only screen and (max-width: 1023px) {
  .c-lower_project__head {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
  }
}
.c-lower_project__head__pic {
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 1023px) {
  .c-lower_project__head__pic {
    width: 50%;
    height: calc(15.2653061224vw + 130.7551020408px);
  }
}
.c-lower_project__head__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-lower_project__head__title {
  padding-top: 100px;
  padding-left: 140px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1599px) {
  .c-lower_project__head__title {
    padding-top: calc(8.9795918367vw + -33.6734693878px);
    padding-left: calc(11.4285714286vw + -42.8571428571px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower_project__head__title {
    position: absolute;
    left: calc(2.0408163265vw + 17.3469387755px);
    bottom: calc(3.6734693878vw + 31.2244897959px);
  }
}
.c-lower_project__head__title .sub {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.c-lower_project__head__title .sub .en {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  color: #2e018a;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-right: 13px;
}
@media only screen and (max-width: 1599px) {
  .c-lower_project__head__title .sub .en {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
    margin-right: calc(0.6530612245vw + 2.5510204082px);
  }
}
.c-lower_project__head__title .sub .en span {
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid #2e018a;
  margin-bottom: 3px;
}
.c-lower_project__head__title .sub .num {
  font-size: 5.5rem;
  color: #fff;
  -webkit-text-stroke: 1px #2e018a;
}
@media only screen and (max-width: 1599px) {
  .c-lower_project__head__title .sub .num {
    font-size: calc(2.0408163265vw + 2.2346938776rem);
  }
}
.c-lower_project__head__title .main {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}
.c-lower_project__head__title .main span {
  color: #fff;
  font-family: "UD新ゴ M";
  background-color: #111111;
  padding: 10px;
  line-height: 1;
  font-size: 4.5rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media only screen and (max-width: 1599px) {
  .c-lower_project__head__title .main span {
    font-size: calc(1.6326530612vw + 1.887755102rem);
    padding: calc(0.4081632653vw + 3.4693877551px);
  }
}
.c-lower_project__head__title .main span.-small {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1599px) {
  .c-lower_project__head__title .main span.-small {
    font-size: calc(0.9795918367vw + 0.8326530612rem);
  }
}
.c-lower_project__pic {
  width: 56vw;
}
@media only screen and (max-width: 1023px) {
  .c-lower_project__pic {
    width: 100%;
    height: calc(18.3673469388vw + 156.1224489796px);
  }
}
.c-lower_project__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-lower_project__en {
  max-width: 100vw;
  overflow: hidden;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5em;
  font-size: 16rem;
  white-space: nowrap;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #dddddd;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .c-lower_project__en {
    font-size: calc(4.8979591837vw + 4.1632653061rem);
  }
}

.c-lower_crosstalk {
  position: relative;
  padding: 140px 0;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk {
    padding: calc(3.6734693878vw + 81.2244897959px) 0 calc(8.5714285714vw + 2.8571428571px);
  }
}
.c-lower_crosstalk__bg {
  width: 350px;
  height: 100%;
  background-image: url(/career/fresh/common/img/work-people/crosstalk/office/office_kv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__bg {
    width: calc(13.8775510204vw + 127.9591836735px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower_crosstalk__bg {
    width: 100%;
    height: calc(12.8163265306vw + 109.9387755102px);
    top: auto;
    bottom: 0;
    background-image: url(/career/fresh/common/img/work-people/crosstalk/office/office_kv_bg_sp.jpg);
  }
}
.c-lower_crosstalk__en {
  writing-mode: vertical-lr;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13rem;
  color: #f5f5f5;
  white-space: nowrap;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__en {
    font-size: calc(5.7142857143vw + 3.8571428571rem);
  }
}
@media only screen and (max-width: 767px) {
  .c-lower_crosstalk__en {
    display: none;
  }
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk .c-container {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower_crosstalk .c-container {
    padding-right: calc(2.4489795918vw + 20.8163265306px);
    padding-left: calc(2.4489795918vw + 20.8163265306px);
  }
}
.c-lower_crosstalk__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .c-lower_crosstalk__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-lower_crosstalk__title {
  position: relative;
  z-index: 3;
}
.c-lower_crosstalk__title .sub {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.c-lower_crosstalk__title .sub .en {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  color: #2e018a;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-right: 13px;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__title .sub .en {
    font-size: calc(0.3265306122vw + 0.8775510204rem);
    margin-right: calc(0.6530612245vw + 2.5510204082px);
  }
}
.c-lower_crosstalk__title .sub .en span {
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid #2e018a;
  margin-bottom: 3px;
}
.c-lower_crosstalk__title .sub .num {
  font-size: 5.5rem;
  color: #fff;
  -webkit-text-stroke: 1px #2e018a;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__title .sub .num {
    font-size: calc(2.0408163265vw + 2.2346938776rem);
  }
}
.c-lower_crosstalk__title .main {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  font-size: 4.2rem;
  color: #111111;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__title .main {
    font-size: calc(1.387755102vw + 1.9795918367rem);
  }
}
.c-lower_crosstalk__title .main span {
  padding: 10px 0;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__title .main span {
    padding: calc(0.4081632653vw + 3.4693877551px) 0;
  }
}
.c-lower_crosstalk__title .main span.bg {
  color: #fff;
  font-family: "UD新ゴ M";
  background-color: #111111;
  padding: 10px;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__title .main span.bg {
    padding: calc(0.4081632653vw + 3.4693877551px);
  }
}
.c-lower_crosstalk__cross {
  min-width: 270px;
  max-width: 270px;
  height: 270px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__cross {
    min-width: calc(11.0204081633vw + 93.6734693878px);
    max-width: calc(11.0204081633vw + 93.6734693878px);
    height: calc(11.0204081633vw + 93.6734693878px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower_crosstalk__cross {
    align-self: center;
  }
}
.c-lower_crosstalk__cross::before, .c-lower_crosstalk__cross::after {
  content: "";
  display: block;
  position: absolute;
  right: -20%;
  top: 50%;
  transform-origin: 50% center;
  transition: transform 0s;
  width: 141%;
  border-bottom: 1px solid #dddddd;
}
.c-lower_crosstalk__cross::before {
  transform: rotate(45deg);
}
.c-lower_crosstalk__cross::after {
  transform: rotate(-45deg);
}
.c-lower_crosstalk__pic {
  position: relative;
  margin-right: -390px;
  margin-left: -135px;
  width: calc(43.2653061224vw + 182.7551020408px);
}
@media only screen and (max-width: 1599px) {
  .c-lower_crosstalk__pic {
    margin-right: calc((100vw - calc(68.1632653061vw + 119.387755102px)) * -0.5);
    margin-left: calc(-5.5510204082vw + -46.1836734694px);
  }
}
@media only screen and (max-width: 1023px) {
  .c-lower_crosstalk__pic {
    margin-top: calc(-5.5510204082vw + -46.1836734694px);
    margin-left: auto;
    margin-right: calc(-2.4489795918vw + -20.8163265306px);
    width: calc(72.5190839695vw + 73.7786259542px);
  }
}
.c-lower_crosstalk__pic .img {
  width: 100%;
}
.c-lower_crosstalk__pic .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-lower_crosstalk__pic__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-menu {
  margin-top: 100px;
}
@media only screen and (max-width: 1599px) {
  .c-menu {
    margin-top: calc(4.0816326531vw + 34.693877551px);
  }
}

.c-graph01 {
  padding: 40px;
  background: #f7f7f7;
}
@media only screen and (max-width: 1599px) {
  .c-graph01 {
    padding: calc(1.6326530612vw + 13.8775510204px);
  }
}
.c-graph01__content {
  margin-top: 2em;
}
.c-graph__flex {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.c-graph__flex .c-blockimage {
  width: 35%;
}
.c-graph__block {
  margin-bottom: 0.2em;
}
.c-graph__block .c-blockimage {
  width: 40%;
  margin: 0 auto;
}
.c-graph__text {
  color: #2e018a;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.c-graph__text.-large {
  font-size: 11.3rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text.-large {
    font-size: calc(4.7346938776vw + 3.7244897959rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph__text.-large {
    font-size: calc(0.7346938776vw + 4.3244897959rem);
  }
}
.c-graph__text.-medium {
  font-size: 8rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text.-medium {
    font-size: calc(2.8571428571vw + 2.4285714286rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph__text.-medium {
    font-size: calc(0.3265306122vw + 3.4775510204rem);
  }
}
.c-graph__text.-normal {
  margin-top: 0.5em;
  font-size: 5rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text.-normal {
    font-size: calc(2.0408163265vw + 1.7346938776rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph__text.-normal {
    font-size: calc(0.2448979592vw + 2.1081632653rem);
  }
}
.c-graph__text.-small {
  font-size: 4rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text.-small {
    font-size: calc(0.8163265306vw + 1.693877551rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph__text.-small {
    font-size: calc(0.2448979592vw + 2.1081632653rem);
  }
}
.c-graph__text.-tiny {
  font-size: 3.5rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text.-tiny {
    font-size: calc(0.8163265306vw + 1.693877551rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph__text.-tiny {
    font-size: calc(0.2448979592vw + 2.1081632653rem);
  }
}


.c-graph__text .-black {
  font-size: 2.8rem;
  font-weight: 400;
  color: #111111;
  margin: 0 0.2em;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text .-black {
    font-size: calc(0.8163265306vw + 1.493877551rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph__text .-black {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}
.c-graph__text .-black.-small {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph__text .-black.-small {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
.c-graph02 {
  padding: 40px;
  background: #f7f7f7;
}
@media only screen and (max-width: 1599px) {
  .c-graph02 {
    padding: calc(1.6326530612vw + 13.8775510204px);
  }
}
.c-graph02__content {
  margin-top: 2em;
}
.c-graph03 {
  padding: 40px;
  background: #f7f7f7;
}
@media only screen and (max-width: 1599px) {
  .c-graph03 {
    padding: calc(1.6326530612vw + 13.8775510204px) calc(0.8163265306vw + 6.9387755102px);
  }
}
.c-graph03__content {
  margin-top: 2em;
}
.c-graph03__content .c-graph__text {
  text-align: center;
  line-height: 1;
}
.c-graph03__content .c-graph__flex .c-blockimage {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .c-graph03__content .c-graph__flex .c-blockimage {
    width: 50%;
  }
}
.c-graph04 {
  padding: 40px;
  background: #f7f7f7;
}
@media only screen and (max-width: 1599px) {
  .c-graph04 {
    padding: calc(1.6326530612vw + 13.8775510204px);
  }
}
.c-graph04__content .c-blockimage {
  width: 25%;
}
.c-graph04__content .c-graph__text .-black {
  font-size: 2.2rem;
}
@media only screen and (max-width: 1599px) {
  .c-graph04__content .c-graph__text .-black {
    font-size: calc(0.3265306122vw + 1.6775510204rem);
  }
}
@media only screen and (max-width: 1023px) {
  .c-graph04__content .c-graph__text .-black {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
.c-graph04__content .c-graph__item {
  width: 70%;
  text-align: center;
}

.p-index {
  position: relative;
  counter-reset: index-heading;
  line-height: 1;
}
.p-index > * {
  height: auto;
  will-change: auto;
}
@media only screen and (max-width: 1023px) {
  .p-index > * {
    height: auto !important;
  }
}
.p-index__pagination {
  width: 100%;
  padding-top: 7rem;
  transition: 0.5s opacity;
}
@media only screen and (max-width: 1023px) {
  .p-index__pagination {
    display: none;
  }
}
.page0 .p-index__pagination {
  opacity: 0;
}
.page0 .p-index__pagination span {
  pointer-events: none;
}
.p-index__pagination span {
  pointer-events: auto;
  display: block;
  margin: 0 auto 1.8rem;
  width: 12px;
  background-color: #eeeeee;
  transition: 0.4s;
  border-radius: 50%;
  cursor: pointer;
}
.p-index__pagination span:first-child {
  display: none;
}
.p-index__pagination span.is-act {
  background-color: #2e018a;
}
.p-index__pagination span::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media only screen and (max-width: 1599px) {
  .p-index__pagination span {
    margin: 0 auto calc(0.4897959184vw + 1.0163265306rem);
    width: calc(0.2448979592vw + 8.0816326531px);
  }
}
.is-pc .p-index__pagination span:hover {
  transform: scale(1.5);
}
.p-index.is-forced > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-index__container {
  width: 100%;
  height: auto;
  min-height: 66.4rem;
  padding-top: 7rem;
  height: 100%;
  position: relative;
  padding-bottom: 7rem;
  display: flex;
  align-items: center;
  padding-right: 110px;
  padding-left: 640px;
}
@media only screen and (max-width: 1599px) {
  .p-index__container {
    padding-left: calc(55.5555555556vw + -248.8888888889px);
    padding-right: calc(4.0816326531vw + 44.693877551px);
    padding-top: calc(1.6326530612vw + 4.387755102rem);
    padding-bottom: calc(1.6326530612vw + 4.387755102rem);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index__container {
    min-height: 0;
    padding-left: calc(4.0816326531vw + 44.693877551px);
  }
}
@media only screen and (max-width: 567px) {
  .p-index__container {
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
.p-index_kv .p-index__container {
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv .p-index__container {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-index__inner {
  width: 100%;
  position: relative;
}
.p-index__heading {
  counter-increment: index-heading;
  position: relative;
  font-size: 1.5rem;
  padding-left: 2em;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1599px) {
  .p-index__heading {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
.p-index__heading__en {
  line-height: 0.85;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5e5e5;
  position: absolute;
  text-align: right;
  right: 0;
  top: 50%;
  transform: translate(0.05em, -50%);
  opacity: 0.27;
  font-size: calc(4.4897959184vw + 5.8163265306rem);
}
@media only screen and (max-width: 767px) {
  .p-index__heading__en {
    transform: translate(0.1em, -50%);
  }
}
.p-index__heading::before, .p-index__heading::after {
  display: block;
  position: absolute;
  color: #2e018a;
  z-index: 1;
}
.p-index__heading::before {
  top: -1em;
  left: 0;
  content: "0" counter(index-heading);
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.p-index__heading::after {
  content: "";
  width: 2em;
  height: 1px;
  top: -0.1em;
  left: 0.25em;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}
.p-index__heading img,
.p-index__heading svg {
  position: relative;
  width: 100%;
  height: 3.6rem;
}
@media only screen and (max-width: 1599px) {
  .p-index__heading img,
.p-index__heading svg {
    height: calc(0.9795918367vw + 2.0326530612rem);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index__heading img,
.p-index__heading svg {
    height: calc(0.9244992296vw + 2.0533127889rem);
  }
}

.p-index_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(200%);
}
.p-index_footer .l-footer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.p-index_footer .l-footer__container {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .p-index_footer {
    position: relative;
    transform: translateY(0);
    margin-top: calc(5.7142857143vw + 4.8571428571rem);
  }
}

.p-index_canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .p-index_canvas {
    position: relative;
  }
}
.p-index_canvas canvas,
.p-index_canvas span {
  display: block;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-index_kv__inner {
  position: relative;
  height: 100%;
  min-height: 66.4rem;
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__inner {
    min-height: 0;
  }
}
.p-index_kv__pagination {
  position: absolute;
  bottom: 6rem;
  right: 50px;
  color: #ffffff;
  display: flex;
  font-size: calc(0.1632653061vw + 0.9387755102rem);
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__pagination {
    right: calc(2.4489795918vw + 10.8163265306px);
    bottom: calc(3.2653061224vw + 0.7755102041rem);
  }
}
.p-index_kv__pagination__item {
  width: 3.5em;
  height: 3.5em;
  display: flex;
  margin-right: 0.5em;
  position: relative;
  /*
  &.is-act {
    svg {
      path {
        transition: 8s stroke-dashoffset linear;
        stroke-dashoffset: 0px;
      }
    }
  }
  */
  align-items: center;
  letter-spacing: 0;
  font-feature-settings: normal;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 9999px;
}
.p-index_kv__pagination__item svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-index_kv__pagination__item svg path {
  stroke-dasharray: 120px;
  stroke-dashoffset: 120px;
  transition: 0s stroke-dashoffset linear;
}
.p-index_kv__pagination__item:last-child {
  margin-right: 0;
}
.is-pc .p-index_kv__pagination__item {
  transition: 0.4s opacity;
}
.is-pc .p-index_kv__pagination__item:hover {
  opacity: 0.5;
}
.p-index_kv__container {
  position: relative;
  width: auto;
  min-height: 66.4rem;
  width: 100%;
  height: 100%;
  margin-left: 350px;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__container {
    margin-left: calc(21.7013888889vw + 2.7777777778px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__container {
    min-height: 0;
    margin-left: 0;
  }
  .p-index_kv__container .p-index_canvas {
    height: calc(13.5593220339vw + 42.9152542373rem);
  }
}
.p-index_kv__menu {
  position: absolute;
  bottom: 8rem;
  left: -350px;
  right: 0;
  width: 640px;
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__menu {
    left: calc(-21.7013888889vw + -2.7777777778px);
    bottom: calc(6.5306122449vw + -2.4489795918rem);
    width: calc(55.5555555556vw + -248.8888888889px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__menu {
    background-color: #f5f5f5;
    position: relative;
    left: 0;
    width: 100%;
    bottom: 0;
    padding-top: calc(2.4489795918vw + 2.0816326531rem);
    padding-bottom: calc(2.4489795918vw + 2.0816326531rem);
  }
}
.p-index_kv__menu .c-fluid {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__menu .c-fluid {
    display: block;
    padding-left: calc(4.0816326531vw + 44.693877551px);
    padding-right: calc(4.0816326531vw + 44.693877551px);
  }
}
@media only screen and (max-width: 567px) {
  .p-index_kv__menu .c-fluid {
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
.p-index_kv__menu__container {
  width: 100%;
  max-width: calc(8.1632653061vw + 219.387755102px);
}
@media only screen and (max-width: 1599px) {
  .p-index_kv__menu__container {
    max-width: calc(8.1632653061vw + 219.387755102px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__menu__container {
    max-width: 100%;
  }
}
.p-index_kv__menu__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -8px;
  font-size: calc(0.1632653061vw + 1.1387755102rem);
  width: calc(8.6805555556vw + 281.1111111111px);
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__menu__list {
    width: 100%;
    font-size: calc(0.5089058524vw + 1.0091603053rem);
  }
}
.p-index_kv__menu__item {
  line-height: 1;
  margin-right: 4px;
  margin-bottom: 0.8rem;
}
.p-index_kv__menu__item a {
  display: block;
  border: 1px solid #eeeeee;
  border-radius: 9999px;
  background-color: #ffffff;
  padding: 0.65em 1em;
}
.p-index_kv__menu__item a::before {
  content: "#";
  color: #2e018a;
}
.is-pc .p-index_kv__menu__item a {
  transition: 0.4s border-color;
}
.is-pc .p-index_kv__menu__item a:hover {
  border-color: #2e018a;
}
.p-index_kv__menu__title {
  text-transform: uppercase;
  font-size: calc(0.1632653061vw + 1.0387755102rem);
  color: #2e018a;
  padding-left: 0.25em;
  line-height: 1.2;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1023px) {
  .p-index_kv__menu__title {
    font-size: calc(0.5089058524vw + 0.9091603053rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-index_kv__menu__title {
    text-align: center;
  }
}

.p-index_about .p-index_menu__item.-main .c-blockimage {
  width: calc(9.7959183673vw + 163.2653061224px);
}
.p-index_about .p-index_menu__item.-main .c-blockimage::before {
  padding-top: 22.7390180879%;
}
.p-index_about .p-index_menu__item.-main .c-blockimage.-sign {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(4.0816326531vw + 84.693877551px);
  transform: translate(25%, 25%);
}
.p-index_about .p-index_menu__item.-main .c-blockimage.-sign::before {
  padding-top: 20.2614379085%;
}
@media only screen and (max-width: 767px) {
  .p-index_about .p-index_menu__item:nth-child(6) {
    min-width: 100%;
    max-width: 100%;
  }
  .p-index_about .p-index_menu__item:nth-child(6) .p-index_menu__title02 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-index_about .p-index_menu__item:nth-child(6) .p-index_menu__title02 .title + .title {
    margin-top: 0;
  }
  .p-index_about .p-index_menu__item:nth-child(6) .p-index_menu__title02 .subtitle {
    width: 100%;
  }
}
@media only screen and (max-width: 567px) {
  .p-index_about .p-index_menu__item:nth-child(6)::before {
    height: calc(22.9007633588vw + 24.1221374046px) !important;
  }
}

.p-index_work .p-index_menu__item:nth-child(1) {
  order: 1;
}
.p-index_work .p-index_menu__item:nth-child(2) {
  order: 2;
}
.p-index_work .p-index_menu__item:nth-child(3) {
  order: 3;
}
.p-index_work .p-index_menu__item:nth-child(4) {
  order: 4;
}
.p-index_work .p-index_menu__item:nth-child(5) {
  order: 5;
}
@media only screen and (max-width: 567px) {
  .p-index_work .p-index_menu__item.-main::before {
    height: calc(11.4503816794vw + 192.0610687023px) !important;
  }
}
.p-index_work .p-index_menu__item.-main .title.-comming-soon {
  width: calc(17.5510204082vw + 149.1836734694px);
}
.p-index_work .p-index_menu__item.-main .c-blockimage {
  width: calc(2.4489795918vw + 70.8163265306px);
}
.p-index_work .p-index_menu__item.-main .c-blockimage::before {
  padding-top: 21.1009174312%;
}
.p-index_work .p-index_menu__item.-people .js-bgmedia {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item.-people .js-bgmedia {
    background-position: center top;
  }
}
.p-index_work .p-index_menu__item.-people .js-bgmedia:nth-child(1) {
  left: auto;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item.-row2:not(.-main) {
    max-width: 100%;
  }
  .p-index_work .p-index_menu__item.-row2:not(.-main) .p-index_menu__item {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item.-crosstalk {
    order: 1;
  }
  .p-index_work .p-index_menu__item.-crosstalk::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap {
    position: relative;
    flex-wrap: wrap;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart {
    max-width: 100%;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart::before {
    height: calc(6.3613231552vw + 5.1145038168rem) !important;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart .link .p-index_menu__title02 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart .link .p-index_menu__title02 > * {
    margin-top: 0;
    margin-right: 1em;
    margin-bottom: 0;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart .link .p-index_menu__title02 > *:last-child {
    margin-right: 0;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart .link .p-index_menu__title02 .subtitle br {
    display: none !important;
  }
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item:not(.-col-quart) {
    max-width: 50%;
  }
}
@media only screen and (max-width: 567px) {
  .p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-quart .link .p-index_menu__title02 > * {
    margin-right: 0.5em;
  }
}
.p-index_work .p-index_menu__item .p-index_menu__list.-nowrap .p-index_menu__item.-col-full .js-bgmedia {
  background-position: center top;
}
.p-index_work .p-index_menu__item.-crosstalk .p-index_menu__item:nth-child(1) .link {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item.-crosstalk .p-index_menu__item:nth-child(1) .link {
    right: 3px;
    bottom: 0;
  }
}
.p-index_work .p-index_menu__item.-crosstalk .p-index_menu__item:nth-child(2) a {
  left: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item.-crosstalk .p-index_menu__item:nth-child(2) a {
    left: 3px;
    top: 0;
  }
}
.p-index_work .p-index_menu__item.-crosstalk .p-index_menu__item:nth-child(3) a {
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_work .p-index_menu__item.-crosstalk .p-index_menu__item:nth-child(3) a {
    top: 0;
  }
}

.p-index_environment .p-index_menu__item:nth-child(1) {
  order: 1;
}
.p-index_environment .p-index_menu__item:nth-child(2) {
  order: 2;
}
.p-index_environment .p-index_menu__item:nth-child(3) {
  order: 3;
}
.p-index_environment .p-index_menu__item:nth-child(4) {
  order: 4;
}
.p-index_environment .p-index_menu__item:nth-child(5) {
  order: 5;
}
.p-index_environment .p-index_menu__item:nth-child(6) {
  order: 6;
}
@media only screen and (max-width: 767px) {
  .p-index_environment .p-index_menu__item:nth-child(6) {
    min-width: 100%;
    max-width: 100%;
  }
  .p-index_environment .p-index_menu__item:nth-child(6) .p-index_menu__title02 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-index_environment .p-index_menu__item:nth-child(6) .p-index_menu__title02 .title + .title {
    margin-top: 0;
  }
  .p-index_environment .p-index_menu__item:nth-child(6) .p-index_menu__title02 .subtitle {
    width: 100%;
  }
}
@media only screen and (max-width: 567px) {
  .p-index_environment .p-index_menu__item:nth-child(6)::before {
    height: calc(22.9007633588vw + 24.1221374046px) !important;
  }
}
.p-index_environment .p-index_menu__item.-col3 .js-bgmedia {
  background-position: center top;
}
.p-index_environment .p-index_menu__item.-main .p-index_menu__title02 .label .c-font-mont {
  border: none;
  position: relative;
}
.p-index_environment .p-index_menu__item.-main .p-index_menu__title02 .label .c-font-mont:after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-image: url(/career/fresh/common/img/index/crosstalk_fukidashi.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_environment .p-index_menu__item.-main .p-index_menu__title02 .label .c-font-mont:after {
    bottom: calc(-0.4081632653vw + 1.5306122449px);
  }
}
.p-index_environment .p-index_menu__item.-main .c-blockimage {
  transform: translate(50%, 25%);
  width: calc(5.7142857143vw + 98.5714285714px);
}
.p-index_environment .p-index_menu__item.-main .c-blockimage::before {
  padding-top: 18.5185185185%;
}
@media only screen and (max-width: 767px) {
  .p-index_environment .p-index_menu__item.-col-half {
    min-width: 100%;
    max-width: 100%;
  }
}
.p-index_environment .p-index_menu__item:nth-child(2) .p-index_menu__title01 {
  flex-direction: column;
  align-items: flex-start;
}

.p-index_info .c-button01 {
  font-size: 2rem;
}
@media only screen and (max-width: 1599px) {
  .p-index_info .c-button01 {
    font-size: calc(0.4897959184vw + 1.2163265306rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-index_info .c-button01 {
    margin-top: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_info .p-index_menu__item::before {
    height: calc(12.7226463104vw + 5.2290076336rem);
  }
}
.p-index_info .p-index_menu__item > .link,
.p-index_info .p-index_menu__item > a {
  background-color: #f7f7f7;
}
.p-index_info .p-index_menu__item > .link svg,
.p-index_info .p-index_menu__item > a svg {
  transform: scale(0.55);
  color: #111111;
}
.p-index_info .p-index_menu__item > .link .title {
  color: #cccccc;
}
.p-index_info .p-index_menu__item > .link svg {
  opacity: 0.25;
}
.is-pc .p-index_info .p-index_menu__item > a svg {
  transition: 0.4s color;
}
.is-pc .p-index_info .p-index_menu__item > a:hover svg {
  color: #2e018a;
}
.p-index_info .p-index_menu__item.-col3::before {
  display: none;
}
.p-index_info .p-index_menu__item.-col3 .p-index_menu__item__inner,
.p-index_info .p-index_menu__item.-col3 .c-button01 {
  width: 100%;
}
.p-index_info .p-index_menu__item__container {
  padding: 4rem 40px;
}
@media only screen and (max-width: 1599px) {
  .p-index_info .p-index_menu__item__container {
    padding: calc(1.6326530612vw + 1.387755102rem) calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-index_info .p-index_menu__item__inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 567px) {
  .p-index_info .p-index_menu__item__inner {
    display: block;
    text-align: center;
  }
}
.p-index_info .p-index_menu__item__inner .c-blockimage {
  width: 100%;
  min-width: 120px;
  max-width: 120px;
  background-color: #ffffff;
  border-radius: 9999px;
}
@media only screen and (max-width: 1599px) {
  .p-index_info .p-index_menu__item__inner .c-blockimage {
    min-width: calc(5.2083333333vw + 36.6666666667px);
    max-width: calc(5.2083333333vw + 36.6666666667px);
  }
}
@media only screen and (max-width: 567px) {
  .p-index_info .p-index_menu__item__inner .c-blockimage {
    min-width: calc(4.4897959184vw + 48.1632653061px);
    margin-left: auto;
    margin-right: auto;
    max-width: calc(4.4897959184vw + 48.1632653061px);
  }
}
.p-index_info .p-index_menu__item__inner .content {
  font-size: calc(0.4897959184vw + 1.2163265306rem);
  margin-left: 1.5em;
}
@media only screen and (max-width: 567px) {
  .p-index_info .p-index_menu__item__inner .content {
    margin-left: 0;
  }
}
.p-index_info .p-index_menu__item__inner .title {
  font-weight: 700;
}
@media only screen and (max-width: 567px) {
  .p-index_info .p-index_menu__item__inner .title {
    margin-top: 1em;
  }
}
.p-index_info .p-index_menu__item__inner .subtitle {
  text-transform: uppercase;
  color: #cccccc;
  margin-top: 0.75em;
  line-height: 1.2;
  font-size: calc(0.1632653061vw + 0.9387755102rem);
}
@media only screen and (max-width: 567px) {
  .p-index_info .p-index_menu__item__inner .subtitle {
    min-height: 2.4em;
    margin-bottom: -1.2em;
  }
}

.p-index_head {
  height: auto;
  pointer-events: none;
  top: 0;
  position: fixed;
  height: 100vh;
  width: 640px;
  left: 0;
  z-index: 5000;
}
.p-index_head .c-text01 {
  padding-left: 0.05em;
}
.p-index_head .c-fluid {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .p-index_head .c-fluid {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 1599px) {
  .p-index_head {
    width: calc(55.5555555556vw + -248.8888888889px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_head {
    position: relative;
    width: 100%;
    padding-top: calc(4.0816326531vw + 3.4693877551rem);
    height: auto;
    margin-top: calc(4.0816326531vw + 4.4693877551rem);
    padding-left: calc(4.0816326531vw + 44.693877551px);
    padding-right: calc(4.0816326531vw + 44.693877551px);
  }
  .p-index_head br {
    display: none !important;
  }
  .p-index_head .c-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 567px) {
  .p-index_head {
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
.p-index_head__text {
  overflow: hidden;
  height: 0;
  /*
  .c-text01 {
    font-size: 1.5rem;
  }
  */
}
.p-index .p-index_head__text {
  height: auto !important;
}
@media only screen and (max-width: 1023px) {
  .p-index .p-index_head__text {
    display: block;
  }
}
.p-index .p-index_head__text .c-fluid {
  width: 100%;
}
.p-index .p-index_head__text .c-text01 br {
  display: block !important;
}
.p-index .p-index_head__text .c-text01 br.u-visible_pc {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .p-index_head__text {
    display: none;
  }
}
.p-index .p-index_head {
  padding-top: 0;
  margin-top: 0;
}
@media only screen and (max-width: 1023px) {
  .p-index .p-index_head {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 567px) {
  .p-index .p-index_head {
    padding-left: calc(7.7720207254vw + 0.8549222798px);
    padding-right: calc(7.7720207254vw + 0.8549222798px);
  }
}
.p-index .p-index_head .c-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.p-index_head__container {
  width: 100%;
  max-width: calc(10.612244898vw + 210.2040816327px);
}
@media only screen and (max-width: 1599px) {
  .p-index_head__container {
    max-width: calc(9.7959183673vw + 223.2653061224px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index_head__container {
    max-width: 100%;
  }
}
.p-index_head__title {
  transition: 1s width cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: calc(8.6805555556vw + 281.1111111111px);
  margin-bottom: 5rem;
  transform: translateX(-1%);
}
@media only screen and (max-width: 1023px) {
  .p-index_head__title {
    margin-bottom: calc(-1.5408320493vw + -1.4221879815rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-index_head__title {
    width: calc(62.1761658031vw + 6.8393782383px) !important;
  }
}
.page1 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page2 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page3 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page4 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page5 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page6 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page7 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page8 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page9 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.page10 .p-index_head__title {
  width: calc(17.3611111111vw + 72.2222222222px);
}
.not-top .p-index_head__title {
  width: calc(8.1632653061vw + 219.387755102px);
}
@media only screen and (max-width: 1023px) {
  .not-top .p-index_head__title {
    width: calc(8.6805555556vw + 281.1111111111px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-index .p-index_head__title {
    margin-bottom: calc(3.8167938931vw + 20.6870229008px);
  }
}
@media only screen and (max-width: 567px) {
  .p-index .p-index_head__title {
    width: 100% !important;
  }
}
.p-index_head__title .c-blockimage {
  margin-bottom: 3rem;
  background-color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .p-index_head__title .c-blockimage {
    margin-bottom: calc(1.2244897959vw + 1.0408163265rem);
  }
}
.p-index_head__title .c-blockimage:last-child {
  margin-bottom: 0;
}
.p-index_head__title .c-blockimage::before {
  padding-top: 15.67695962%;
}
.p-index_head__subtitle {
  white-space: nowrap;
  text-transform: uppercase;
  transition: 1s font-size cubic-bezier(0.455, 0.03, 0.515, 0.955), 1s color cubic-bezier(0.455, 0.03, 0.515, 0.955), 1s letter-spacing cubic-bezier(0.455, 0.03, 0.515, 0.955);
  color: #2e018a;
  line-height: 1.2;
  letter-spacing: 0.2em;
  margin-bottom: calc(1.0416666667vw + 0.9333333333rem);
  font-size: calc(0.5208333333vw + 0.4666666667rem);
}
.not-top .p-index_head__subtitle {
  letter-spacing: 0.225em;
  color: #cccccc;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
@media only screen and (max-width: 1023px) {
  .not-top .p-index_head__subtitle {
    font-size: calc(0.5208333333vw + 0.4666666667rem);
    letter-spacing: 0.2em;
  }
}
@media only screen and (max-width: 567px) {
  .not-top .p-index_head__subtitle {
    font-size: calc(0.4600694444vw + 0.5638888889rem) !important;
  }
}
.page1 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page2 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page3 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page4 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page5 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page6 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page7 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page8 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page9 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
.page10 .p-index_head__subtitle {
  color: #cccccc;
  letter-spacing: 0.225em;
  font-size: calc(0.4340277778vw + 0.3555555556rem);
}
@media only screen and (max-width: 567px) {
  .p-index_head__subtitle {
    font-size: calc(0.4600694444vw + 0.5638888889rem) !important;
  }
}
@media only screen and (max-width: 567px) {
  .p-index .p-index_head__subtitle {
    font-size: calc(0.3732638889vw + 0.7027777778rem) !important;
  }
}

.p-index_menu {
  margin-right: -3px;
  min-height: 80vh;
  /*
  @include f.mq-max {
    min-height: f.smooth_font(485px, 685px, 1024px, 1600px);
  }
  */
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-index_menu {
    min-height: 58.5rem;
  }
}
.p-index_info .p-index_menu {
  min-height: calc(18.0288461538vw + 31.1538461538rem);
}
@media only screen and (max-width: 767px) {
  .p-index_info .p-index_menu {
    min-height: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_menu {
    min-height: 0;
  }
}
@media only screen and (max-width: 567px) {
  .p-index_menu {
    margin-right: 0;
    min-height: 0;
  }
}
.p-index_menu__title01 {
  display: flex;
  line-height: 1.4;
  align-items: center;
  flex-wrap: wrap;
}
.p-index_menu__title01 .title {
  padding-top: 0.5em;
  margin-right: 1em;
  position: relative;
  font-size: calc(0.4081632653vw + 1.8469387755rem);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title01 .title {
    font-size: calc(1.272264631vw + 1.5229007634rem);
  }
}
.p-index_menu__title01 .title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  border-bottom: 1px solid;
}
.p-index_menu__title01 .text {
  display: block;
  margin-top: 1em;
  font-size: calc(0.1632653061vw + 10.387755102px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title01 .text {
    font-size: calc(0.5089058524vw + 0.9091603053rem);
  }
}
.p-index_menu__title02 {
  text-align: center;
  line-height: 1.2;
}
.p-index_menu__title02 .title {
  font-weight: 400;
  letter-spacing: 0;
  font-size: calc(0.3265306122vw + 16.7755102041px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .title {
    font-size: calc(1.0178117048vw + 14.1832061069px);
  }
}
.p-index_menu__title02 .title > span {
  display: inline-block;
  padding: 0.1em 0.25em;
  position: relative;
}
.p-index_menu__title02 .title > span .c-blockimage {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(25%, 25%);
}
.p-index_menu__title02 .title.-bg {
  font-weight: 500;
  font-size: calc(0.4081632653vw + 18.4693877551px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .title.-bg {
    font-size: calc(1.272264631vw + 15.2290076336px);
  }
}
.p-index_menu__title02 .title.-bg > span {
  background-color: #111111;
  color: #ffffff;
}
.p-index_menu__title02 .title.-large1 {
  font-size: calc(0.4081632653vw + 18.4693877551px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .title.-large1 {
    font-size: calc(1.272264631vw + 15.2290076336px);
  }
}
.p-index_menu__title02 .title.-large2 {
  font-size: calc(0.6530612245vw + 19.5510204082px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .title.-large2 {
    font-size: calc(2.0356234097vw + 14.3664122137px);
  }
}
.p-index_menu__title02 .title.-large3 {
  font-size: calc(0.7346938776vw + 21.2448979592px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .title.-large3 {
    font-size: calc(2.2900763359vw + 15.4122137405px);
  }
}
.p-index_menu__title02 .title + .title {
  margin-top: 0.15em;
}
.p-index_menu__title02 .label {
  font-size: calc(0.1632653061vw + 0.9387755102rem);
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .label {
    font-size: calc(0.5089058524vw + 0.8091603053rem);
  }
}
.p-index_menu__title02 .label > span {
  display: inline-block;
  color: #2e018a;
  border: 1px solid;
  line-height: 1.2;
  padding: 0.75em;
}
.p-index_menu__title02 .subtitle {
  font-weight: 400;
  margin-top: 0.75em;
  line-height: 1.4;
  font-size: calc(0.1632653061vw + 10.387755102px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .subtitle {
    font-size: calc(0.5089058524vw + 0.9091603053rem);
  }
}
.p-index_menu__title02 .subtitle > span {
  display: inline-block;
  padding: 0.25em 0;
  border-bottom: 2px dotted;
}
.p-index_menu__title02 .subtitle.-large {
  font-size: calc(0.1632653061vw + 12.387755102px);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title02 .subtitle.-large {
    font-size: calc(0.5089058524vw + 1.1091603053rem);
  }
}
.p-index_menu__title02 .commingsoon {
  width: 190px;
  margin: 15px auto 0;
}
@media only screen and (max-width: 1599px) {
  .p-index_menu__title02 .commingsoon {
    margin-top: calc(0.5714285714vw + 5.8571428571px);
    width: calc(3.2653061224vw + 137.7551020408px);
  }
}
.-bg2 .p-index_menu__title02 .title.-bg > span {
  background-color: #ffffff;
  color: #2e018a;
}
.-white .p-index_menu__title02 .label > span {
  color: inherit;
}
.p-index_menu__title03 .title {
  line-height: 1.2;
  font-size: calc(0.3265306122vw + 1.4775510204rem);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__title03 .title {
    font-size: calc(1.0178117048vw + 1.2183206107rem);
  }
}
.p-index_menu__title03 .title + .title {
  margin-top: 0.15em;
}
.p-index_menu__title03 .title span {
  display: inline-block;
  background-color: #111111;
  padding: 0.15em 0.25em;
  color: #ffffff;
}
.p-index_menu__list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p-index_menu__list.-nowrap {
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  .p-index_menu > .p-index_menu__list {
    position: relative;
    height: auto;
  }
}
.p-index_menu__item {
  height: 33.3333333333%;
  max-width: 33.3333333333%;
  min-width: 33.3333333333%;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-index_menu__item {
    max-width: 50%;
    min-width: 0 !important;
    height: auto !important;
  }
  .p-index_menu__item::before {
    content: "";
    display: block;
    height: calc(10.1781170483vw + 12.1832061069rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-index_menu__item::before {
    height: calc(10.1781170483vw + 12.1832061069rem) !important;
  }
}
.p-index_menu__item__container {
  width: 100%;
  position: relative;
  height: 100%;
  padding: 3rem 30px;
  display: flex;
}
@media only screen and (max-width: 1599px) {
  .p-index_menu__item__container {
    padding: calc(1.6326530612vw + 0.387755102rem) calc(1.6326530612vw + 3.8775510204px);
  }
}
.p-index_menu__item__container.-jcenter {
  justify-content: center;
}
.p-index_menu__item__container.-acenter {
  align-items: center;
}
.p-index_menu__item__container.-aend {
  align-items: flex-end;
}
.p-index_menu__item__inner {
  position: relative;
  width: 100%;
}
.-jcenter .p-index_menu__item__inner {
  width: auto;
}
.p-index_menu__item .js-bgmedia.-layer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.3);
}
.p-index_menu__item .js-bgmedia.-shadow::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.4;
  height: 50%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 10%, rgba(0, 0, 0, 0.04) 20%, rgba(0, 0, 0, 0.09) 30%, rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.36) 60%, rgba(0, 0, 0, 0.49) 70%, rgba(0, 0, 0, 0.64) 80%, rgba(0, 0, 0, 0.91) 90%, black 100%);
}
.p-index_menu__item > a,
.p-index_menu__item > .link {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  background-color: #f0f0f0;
  color: #111111;
}
.p-index_menu__item > a.-accent,
.p-index_menu__item > .link.-accent {
  color: #f00;
}
.p-index_menu__item > a.-accent::after,
.p-index_menu__item > .link.-accent::after {
  color: inherit;
}
.p-index_menu__item > a.-white,
.p-index_menu__item > .link.-white {
  color: #ffffff;
}
.p-index_menu__item > a.-white::after,
.p-index_menu__item > .link.-white::after {
  color: inherit;
}
.p-index_menu__item > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  z-index: 1;
  right: 6px;
  width: 20px;
  color: #2e018a;
  height: 20px;
  border-bottom: 10px solid;
  border-right: 10px solid;
  border-left: 10px solid transparent;
  border-top: 10px solid transparent;
}
@media only screen and (max-width: 567px) {
  .p-index_menu__item > a::after {
    width: 10px;
    height: 10px;
    border-bottom: 5px solid;
    border-right: 5px solid;
    border-left: 5px solid transparent;
    border-top: 5px solid transparent;
  }
}
.is-pc .p-index_menu__item > a::after {
  transition: 0.4s transform cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: right bottom;
}
.is-pc .p-index_menu__item > a:hover::after {
  transform: scale(1.5);
}
@media only screen and (max-width: 767px) {
  .p-index_menu__item.-main {
    max-width: 100%;
    min-width: 0;
  }
  .p-index_menu__item.-main::before {
    height: calc(17.8117048346vw + 14.320610687rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-index_menu__item.-main::before {
    height: calc(17.8117048346vw + 14.320610687rem) !important;
  }
}
.p-index_menu__item.-col2 {
  max-width: 66.6666666667%;
  min-width: 66.6666666667%;
}
@media only screen and (max-width: 767px) {
  .p-index_menu__item.-col2 {
    max-width: 100%;
  }
}
.p-index_menu__item.-col-half {
  max-width: 50%;
  min-width: 50%;
}
.p-index_menu__item.-col3 {
  max-width: 100%;
  min-width: 100%;
}
.p-index_menu__item.-col-quart {
  max-width: 25%;
  min-width: 25%;
}
.p-index_menu__item.-row2 {
  height: 66.6666666667%;
}
.p-index_menu__item.-row3 {
  height: 100%;
}
.p-index_menu__item.-row-half {
  height: 50%;
}
.p-index_menu__item.-col-full {
  min-width: 0;
  max-width: 100%;
}
.p-index_menu__item.-bg1 > a::before,
.p-index_menu__item.-bg1 > .link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top left, rgba(235, 235, 235, 0) 0%, rgba(235, 235, 235, 0) 50%, #ebebeb 50%, #ebebeb 100%);
}
.p-index_menu__item.-bg1.-reverse > a::before,
.p-index_menu__item.-bg1.-reverse > .link::before {
  background-image: linear-gradient(to bottom left, rgba(235, 235, 235, 0) 0%, rgba(235, 235, 235, 0) 50%, #ebebeb 50%, #ebebeb 100%);
}
.p-index_menu__item.-bg2 > a,
.p-index_menu__item.-bg2 > .link {
  background-color: #2e018a;
}
.p-index_menu__item.-bg2 > a::before,
.p-index_menu__item.-bg2 > .link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
}
.p-index_menu__item.-bg2.-reverse > a::before,
.p-index_menu__item.-bg2.-reverse > .link::before {
  background-image: linear-gradient(to top left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
}

.p-index_menu__item.-intern .title span{
  font-size: calc(0.3265306122vw + 16.7755102041px);
  text-align: left;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2e018a;
}

.p-about-3minutes_about {
  position: relative;
  height: 150vh;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_about {
    height: 140vh;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about {
    height: 80vh;
  }
}
.p-about-3minutes_about__title01 {
  position: absolute;
  width: calc(19.9183673469vw + 169.306122449px);
  top: calc(9.7959183673vw + 83.2653061224px);
  left: 15%;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_about__title01 {
    left: 5%;
    top: 15%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__title01 {
    top: 20%;
  }
}
.p-about-3minutes_about__title01 .c-blockimage::before {
  display: inline-block;
}
.p-about-3minutes_about__title01 span {
  top: -10px;
  position: absolute;
  font-size: 1.4rem;
  color: #2e018a;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: underline;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__title01 span {
    top: -15px;
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-about-3minutes_about__title01 .-title {
  height: 155px;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_about__title01 .-title {
    height: calc(6.5306122449vw + 50.5102040816px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__title01 .-title {
    height: calc(2.0408163265vw + 42.3469387755px);
    left: -13%;
  }
}
.p-about-3minutes_about__title01 .-since {
  position: absolute;
  right: -80px;
  bottom: 20px;
  width: 200px;
  height: 43px;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_about__title01 .-since {
    bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__title01 .-since {
    bottom: 0;
    width: calc(8.1632653061vw + 69.387755102px);
    height: calc(1.7142857143vw + 14.5714285714px);
    right: 12%;
  }
}
.p-about-3minutes_about__image .c-blockimage {
  width: calc(36vw + 306px);
  height: calc(25.0612244898vw + 213.0204081633px);
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__image .c-blockimage {
    width: calc(16.3265306122vw + 178.7755102041px);
    height: calc(10.8571428571vw + 132.2857142857px);
  }
}
@media only screen and (max-width: 567px) {
  .p-about-3minutes_about__image .c-blockimage {
    width: calc(17.9591836735vw + 152.6530612245px);
    height: calc(12.4897959184vw + 106.1632653061px);
  }
}
.p-about-3minutes_about__image .c-blockimage::before {
  padding-top: 74.695863747%;
}
.p-about-3minutes_about__image.-image01 {
  position: absolute;
  width: 50%;
  right: 0;
  top: 32%;
  transform: translateY(-50%);
}
.p-about-3minutes_about__image.-image01 .-bg {
  position: absolute;
  bottom: calc(-3.6734693878vw + -31.2244897959px);
  left: calc(1.2244897959vw + 10.4081632653px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__image.-image01 {
    top: 39%;
    width: auto;
    right: -4%;
  }
}
.p-about-3minutes_about__image.-image02 {
  position: absolute;
  width: 50%;
  top: 60%;
  transform: translateY(-50%);
}
.p-about-3minutes_about__image.-image02 .-bg {
  position: absolute;
  left: calc(-5.306122449vw + -40.1020408163px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__image.-image02 {
    top: 62%;
    left: 0;
    width: auto;
  }
}
.p-about-3minutes_about__image.-image03 {
  position: absolute;
  width: 50%;
  top: 68.4%;
  left: 60%;
  transform: translateY(-50%) translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_about__image.-image03 {
    top: 69.4%;
    left: 68%;
    width: auto;
  }
}

.p-about-3minutes_overview {
  padding-top: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview {
    padding-top: calc(2.4489795918vw + 20.8163265306px);
  }
}
.p-about-3minutes_overview .c-text02 {
  width: 708px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview .c-text02 {
    width: calc(25.1428571429vw + 305.7142857143px);
    margin-top: calc(2.4489795918vw + 20.8163265306px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview .c-text02 {
    width: 90%;
  }
}
.p-about-3minutes_overview__business {
  padding-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business {
    padding-top: calc(2.8571428571vw + 24.2857142857px);
  }
}
.p-about-3minutes_overview__business__info {
  padding-top: 70px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__info {
    padding-top: calc(2.8571428571vw + 24.2857142857px);
  }
}
.p-about-3minutes_overview__business__info::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2e018a;
  border-radius: 9999px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5%;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__info::before {
    width: calc(0.4081632653vw + 3.4693877551px);
    height: calc(0.4081632653vw + 3.4693877551px);
  }
}
.p-about-3minutes_overview__business__info::after {
  content: "";
  width: 3px;
  height: 115%;
  background: #2e018a;
  position: absolute;
  top: -2%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__info::after {
    height: 110%;
  }
}
.p-about-3minutes_overview__business__content {
  margin-top: 54px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__content {
    margin-top: calc(2.2040816327vw + 18.7346938776px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .c-blockimage .text {
    font-size: 11px;
  }
}
.p-about-3minutes_overview__business__content .image01 {
  width: 32%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .image01 {
    width: 50%;
  }
}
.p-about-3minutes_overview__business__content .image02 {
  width: 32%;
  position: relative;
  margin-top: -10%;
  left: 17%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .image02 {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -15%;
  }
}
.p-about-3minutes_overview__business__content .image03 {
  width: 32%;
  position: absolute;
  top: 0;
  left: 34%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .image03 {
    width: 50%;
    left: auto;
    right: 0;
  }
}
.p-about-3minutes_overview__business__content .image04 {
  width: 32%;
  position: absolute;
  top: 35%;
  left: 51%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .image04 {
    width: 50%;
    position: relative;
    left: 0;
    margin-top: -15%;
  }
}
.p-about-3minutes_overview__business__content .image05 {
  width: 32%;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .image05 {
    width: 50%;
    position: relative;
    margin: -37.5% 0 0 auto;
  }
}
.p-about-3minutes_overview__business__content .c-blockimage {
  width: 100%;
  position: relative;
}
.p-about-3minutes_overview__business__content .c-blockimage::before {
  padding-top: 73.7777777778%;
}
.p-about-3minutes_overview__business__content .c-blockimage .text {
  white-space: nowrap;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  font-size: 2.4rem;
  display: block;
  color: #ffffff;
  background: #111111;
  line-height: 1.4;
  padding: 0 0.5em;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__content .c-blockimage .text {
    font-size: calc(0.3265306122vw + 1.8775510204rem);
  }
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_overview__business__content .c-blockimage .text {
    font-size: calc(0.3265306122vw + 1.2775510204rem);
  }
}
.p-about-3minutes_overview__business__content .c-button03 {
  display: block;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__content .c-button03 {
    text-align: center;
    margin-top: calc(2.0408163265vw + 1.7346938776rem);
  }
  .p-about-3minutes_overview__business__content .c-button03 a {
    display: block;
  }
}
.p-about-3minutes_overview__business__growth {
  padding-top: 120px;
  padding-bottom: 135px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__growth {
    padding-top: calc(4.8979591837vw + 41.6326530612px);
    padding-bottom: calc(5.7142857143vw + 43.5714285714px);
  }
}
.p-about-3minutes_overview__business__growth .title {
  text-align: center;
}
.p-about-3minutes_overview__business__growth .title span {
  font-size: 2.8rem;
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__growth .title span {
    font-size: calc(0.6530612245vw + 1.7551020408rem);
  }
}
.p-about-3minutes_overview__business__growth .graph {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_overview__business__growth .graph {
    padding-top: calc(1.6326530612vw + 1.387755102rem);
  }
}
.p-about-3minutes_overview__business__growth .graph .c-graph01,
.p-about-3minutes_overview__business__growth .graph .c-graph02,
.p-about-3minutes_overview__business__growth .graph .c-graph03 {
  width: 31.5%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__growth .graph .c-graph01,
.p-about-3minutes_overview__business__growth .graph .c-graph02 {
    width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__growth .graph .c-graph03 {
    width: 100%;
    margin-top: 2.5%;
  }
  .p-about-3minutes_overview__business__growth .graph .c-graph03 .c-graph03__content {
    width: 55%;
    margin: 0 auto;
  }
}
.p-about-3minutes_overview__business__growth .graph .c-graph04,
.p-about-3minutes_overview__business__growth .graph .c-graph05 {
  width: 49%;
  margin-top: 2.5%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_overview__business__growth .graph .c-graph04,
.p-about-3minutes_overview__business__growth .graph .c-graph05 {
    width: 100%;
  }
}
.p-about-3minutes_overview__business__growth .graph .c-title02 {
  margin-bottom: 1em;
}

.p-about-3minutes_spirit {
  padding: 106px 0;
  background: #f5f5f5;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit {
    padding: calc(4.3265306122vw + 36.7755102041px) 0;
  }
}
.p-about-3minutes_spirit__bg {
  position: absolute;
  bottom: -28%;
  right: 0;
  height: 157%;
  width: 1px;
  background: #f00;
  transform: rotate(50deg);
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_spirit__bg {
    height: 90%;
    bottom: -28%;
  }
}
.p-about-3minutes_spirit::before {
  content: "";
  position: absolute;
  top: -23.2%;
  height: 130%;
  width: 1px;
  background: #2e018a;
  transform: rotate(50deg);
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_spirit::before {
    height: 39%;
    top: -6.9%;
  }
}
.p-about-3minutes_spirit::after {
  content: "";
  position: absolute;
  top: -10%;
  height: 139.8%;
  width: 1px;
  background: #2e018a;
  transform: rotate(-55deg);
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_spirit::after {
    height: 90%;
    bottom: -28%;
    top: auto;
  }
}
.p-about-3minutes_spirit .c-container {
  position: relative;
  z-index: 1;
}
.p-about-3minutes_spirit__sprit {
  padding-top: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__sprit {
    padding-top: calc(3.2653061224vw + 27.7551020408px);
  }
}
.p-about-3minutes_spirit__sprit .c-title03 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__sprit .c-title03 {
    margin-bottom: calc(2.0408163265vw + 17.3469387755px);
  }
}
.p-about-3minutes_spirit__sprit__item {
  padding: 50px 0;
  display: flex;
  align-items: center;
  background: #ffffff;
  margin-top: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__sprit__item {
    padding: calc(2.0408163265vw + 17.3469387755px) 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_spirit__sprit__item {
    display: block;
  }
}
.p-about-3minutes_spirit__sprit__item .title {
  width: 20%;
  margin-right: 1%;
  text-align: center;
  padding: 0 1em;
  box-sizing: border-box;
  font-size: 2.2rem;
  color: #111111;
  font-weight: 500;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__sprit__item .title {
    font-size: calc(0.1632653061vw + 1.9387755102rem);
  }
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_spirit__sprit__item .title {
    width: 25%;
    font-size: calc(0.1632653061vw + 1.7387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_spirit__sprit__item .title {
    width: 100%;
    text-align: left;
    margin-bottom: 1em;
  }
}
.p-about-3minutes_spirit__sprit__item .text {
  width: 79%;
  line-height: 1.4;
  padding: 0 1em;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_spirit__sprit__item .text {
    width: 100%;
  }
}
.p-about-3minutes_spirit__philosophy {
  padding-top: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__philosophy {
    padding-top: calc(3.2653061224vw + 27.7551020408px);
  }
}
.p-about-3minutes_spirit__philosophy .c-title03 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__philosophy .c-title03 {
    margin-bottom: calc(2.0408163265vw + 17.3469387755px);
  }
}
.p-about-3minutes_spirit__philosophy__content {
  padding: 40px 40px 60px 40px;
  background: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__philosophy__content {
    padding: calc(1.6326530612vw + 13.8775510204px) calc(1.6326530612vw + 13.8775510204px) calc(2.4489795918vw + 20.8163265306px) calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-about-3minutes_spirit__philosophy__item {
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.p-about-3minutes_spirit__philosophy__item .title {
  text-align: center;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2e018a;
  font-size: 1.6rem;
  width: 10%;
  padding: 36px 1em;
  margin-right: 1%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__philosophy__item .title {
    padding: calc(1.4693877551vw + 12.4897959184px) 1em;
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.p-about-3minutes_spirit__philosophy__item .text {
  width: 89%;
  padding: 36px 1em;
  font-size: 1.6rem;
  box-sizing: border-box;
  line-height: 1.4;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_spirit__philosophy__item .text {
    padding: calc(1.4693877551vw + 12.4897959184px) 1em;
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}

.p-about-3minutes_global {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global {
    padding-bottom: calc(5.306122449vw + 45.1020408163px);
  }
}
.p-about-3minutes_global__head {
  position: relative;
  padding-top: calc(16.3265306122vw + 118.7755102041px);
}
.p-about-3minutes_global .c-container {
  position: relative;
  background: #ffffff;
  padding-top: 58px;
  margin-top: -90px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global .c-container {
    margin-top: calc(-3.6734693878vw + -31.2244897959px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global .c-container {
    width: 90%;
  }
}
.p-about-3minutes_global .c-container .c-text02 {
  width: 708px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global .c-container .c-text02 {
    width: calc(25.1428571429vw + 305.7142857143px);
    margin-top: calc(2.4489795918vw + 20.8163265306px);
  }
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global .c-container .c-text02 {
    width: 100%;
  }
}
.p-about-3minutes_global__raito {
  text-align: center;
}
.p-about-3minutes_global__raito__text {
  margin-top: 50px;
  font-size: 2.8rem;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__raito__text {
    font-size: calc(0.3265306122vw + 2.2775510204rem);
    margin-top: calc(2.0408163265vw + 17.3469387755px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__raito__text {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}
.p-about-3minutes_global__raito__text span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #2e018a;
  font-size: 5rem;
  margin-right: 0.1em;
  margin-left: 0.2em;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__raito__text span {
    font-size: calc(1.306122449vw + 2.9102040816rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__raito__text span {
    font-size: calc(0.3265306122vw + 1.8775510204rem);
  }
}
.p-about-3minutes_global__raito__main {
  line-height: 1;
  margin-top: 30px;
  padding: 10px 114px 30px;
  display: inline-flex;
  align-items: flex-end;
  background: #2e018a;
  color: #ffffff;
  font-size: 2.8rem;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__raito__main {
    margin-top: calc(1.2244897959vw + 10.4081632653px);
    padding: calc(0.4081632653vw + 3.4693877551px) calc(4.6530612245vw + 39.5510204082px) calc(1.2244897959vw + 10.4081632653px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__raito__main {
    font-size: calc(0.1632653061vw + 1.7387755102rem);
    padding: 0.5em 1em;
  }
}
.p-about-3minutes_global__raito__main .number01 {
  position: relative;
  bottom: -15px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 10rem;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__raito__main .number01 {
    font-size: calc(1.6326530612vw + 7.387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__raito__main .number01 {
    font-size: calc(0.8163265306vw + 2.693877551rem);
    bottom: -2px;
  }
}
.p-about-3minutes_global__raito__main .number02 {
  position: relative;
  bottom: -5px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__raito__main .number02 {
    font-size: calc(1.6326530612vw + 2.387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__raito__main .number02 {
    font-size: calc(0.8163265306vw + 2.693877551rem);
    bottom: -2px;
  }
}
.p-about-3minutes_global__raito__main .percent {
  font-size: 3rem;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__raito__main .percent {
    font-size: calc(0.3265306122vw + 2.4775510204rem);
  }
}
.p-about-3minutes_global__world {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  position: relative;
  z-index: -1;
  min-height: 480px;
  position: relative;
  background-image: url(/career/fresh/common/img/about/3minutes/global_bg.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__world {
    margin-top: calc(2.4489795918vw + 20.8163265306px);
    height: calc(16.3265306122vw + 218.7755102041px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_global__world {
    min-height: auto;
    margin-bottom: calc(7.6335877863vw + 1.4503816794px);
  }
}
.p-about-3minutes_global__world__hub {
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
  position: absolute;
  z-index: 0;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #2e018a;
}
.p-about-3minutes_global__world__hub .text {
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub .text {
    font-size: calc(0.1632653061vw + 0.9387755102rem);
  }
}
.p-about-3minutes_global__world__hub .number {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #2e018a;
  font-size: 5rem;
  margin: 0 0.2em -0.1em;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_global__world__hub .number {
    font-size: calc(1.2244897959vw + 3.0408163265rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub .number {
    font-size: calc(0.8163265306vw + 1.293877551rem);
  }
}
.p-about-3minutes_global__world__hub.-hub01 {
  top: 1%;
  left: 22%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub.-hub01 {
    top: -2%;
    left: 6%;
  }
}
.p-about-3minutes_global__world__hub.-hub02 {
  top: 26%;
  left: 23%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub.-hub02 {
    top: 14%;
    left: 21%;
  }
}
.p-about-3minutes_global__world__hub.-hub03 {
  top: 43%;
  left: 5%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub.-hub03 {
    top: 40%;
    left: 0%;
  }
}
.p-about-3minutes_global__world__hub.-hub04 {
  top: 60%;
  left: 30%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub.-hub04 {
    top: 31%;
    left: 40%;
  }
}
.p-about-3minutes_global__world__hub.-hub05 {
  top: 30%;
  right: 20%;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_global__world__hub.-hub05 {
    top: 9%;
    right: 0;
  }
}
.p-about-3minutes_global__world__area {
  font-size: calc(0.3265306122vw + 1.2775510204rem);
  text-align: center;
  border-bottom: 2px solid #000;
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_global__world__area {
    position: relative;
    transform: translateX(0);
    display: block;
    width: 80%;
    margin: 10px auto 0;
    margin: 0 auto 20px;
  }
}
.p-about-3minutes_global__world__area.-japan {
  border-color: #7b639f;
  left: 46%;
  top: 20%;
}
.p-about-3minutes_global__world__area.-japan strong {
  color: #7b639f;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_global__world__area.-japan {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-about-3minutes_global__world__area.-euro {
  border-color: #00a9ba;
  left: 15%;
  top: 35%;
}
.p-about-3minutes_global__world__area.-euro strong {
  color: #00a9ba;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_global__world__area.-euro {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-about-3minutes_global__world__area.-asia {
  border-color: #0075c2;
  left: 45%;
  top: 50%;
}
.p-about-3minutes_global__world__area.-asia strong {
  color: #0075c2;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_global__world__area.-asia {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-about-3minutes_global__world__area.-usa {
  border-color: #06b4ea;
  left: 75%;
  top: 34%;
}
.p-about-3minutes_global__world__area.-usa strong {
  color: #06b4ea;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_global__world__area.-usa {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-about-3minutes_global__world__area strong {
  font-size: calc(2.1224489796vw + 1.6040816327rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.p-about-3minutes_global__world__area .label {
  font-size: calc(0.4897959184vw + 1.0163265306rem);
  display: block;
  margin-bottom: calc(0.8163265306vw + -3.0612244898px);
}
.p-about-3minutes_global__world + .c-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.p-about-3minutes_global__world + .c-container .c-button03 {
  text-align: center;
}
.p-about-3minutes_global__world + .c-container .c-button03 a {
  display: inline-block;
}

.p-about-3minutes_vision {
  padding: 106px 0 90px;
  background: #f5f5f5;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision {
    padding: calc(4.3265306122vw + 3.6775510204rem) 0 calc(3.6734693878vw + 3.1224489796rem);
  }
}
.p-about-3minutes_vision .c-title03 {
  margin-top: 90px;
  justify-content: center;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision .c-title03 {
    margin-top: calc(3.6734693878vw + 3.1224489796rem);
  }
}
.p-about-3minutes_vision .c-heading01 {
  line-height: 1.5;
}
.p-about-3minutes_vision .c-heading01 .-en {
  margin-bottom: 0.3em;
  display: inline-block;
}
.p-about-3minutes_vision .c-heading02 {
  margin-top: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision .c-heading02 {
    margin-top: calc(2.0408163265vw + 1.7346938776rem);
  }
}
.p-about-3minutes_vision .c-text02 {
  width: 708px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision .c-text02 {
    width: calc(25.1428571429vw + 305.7142857143px);
    margin-top: calc(2.4489795918vw + 20.8163265306px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision .c-text02 {
    width: 100%;
  }
}
.p-about-3minutes_vision__concept {
  width: 750px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision__concept {
    margin-top: calc(2.4489795918vw + 20.8163265306px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_vision__concept {
    width: 516px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__concept {
    width: 260px;
  }
}
.p-about-3minutes_vision__concept__item {
  width: 300px;
  height: 300px;
  position: relative;
  border: 1px solid #707070;
  transform: rotate(-45deg) skew(10deg, 10deg);
  /* 関数同士はスペースで空ける */
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_vision__concept__item {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__concept__item {
    width: 100px;
    height: 100px;
  }
}
.p-about-3minutes_vision__concept__item.-item01 {
  margin: 0 auto;
}
.p-about-3minutes_vision__concept__item.-item02 {
  margin-top: -22%;
}
.p-about-3minutes_vision__concept__item.-item03 {
  margin: -40% 0 0 auto;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_vision__concept__item.-item03 {
    margin-top: -38.5%;
  }
}
.p-about-3minutes_vision__concept__item.-item03 .p-about-3minutes_vision__concept__text {
  top: 53%;
  left: 43%;
}
@media only screen and (max-width: 1023px) {
  .p-about-3minutes_vision__concept__item.-item03 .p-about-3minutes_vision__concept__text {
    top: 53%;
    left: 42%;
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__concept__item.-item03 .p-about-3minutes_vision__concept__text {
    top: 57%;
    left: 40%;
  }
}
.p-about-3minutes_vision__concept__text {
  position: absolute;
  top: 57%;
  left: 43%;
  transform: skew(-10deg, -10deg) rotate(45deg) translate(-50%);
  /* 傾き・回転をリセット */
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__concept__text {
    left: 30%;
    top: 57%;
  }
}
.p-about-3minutes_vision__concept__text .text {
  text-align: center;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__concept__text .text {
    line-height: 1.4;
  }
}
.p-about-3minutes_vision__concept__text .text span {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  color: #2e018a;
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__concept__text .text span {
    font-size: 1.3rem;
  }
}
.p-about-3minutes_vision__target {
  padding-top: 40px;
  width: calc(35vw + 119.38776px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision__target {
    padding-top: calc(1.6326530612vw + 1.387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__target {
    width: 100%;
  }
}
.p-about-3minutes_vision__target .c-graph01,
.p-about-3minutes_vision__target .c-graph02 {
  background: #ffffff;
  width: 47%;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision__target .c-graph01,
.p-about-3minutes_vision__target .c-graph02 {
    margin-bottom: calc(2.2857142857vw + 1.4285714286px);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__target .c-graph01,
.p-about-3minutes_vision__target .c-graph02 {
    width: 49%;
  }
}
.p-about-3minutes_vision__target .c-graph01.-roic .c-graph02__content, .p-about-3minutes_vision__target .c-graph01.-roe .c-graph02__content,
.p-about-3minutes_vision__target .c-graph02.-roic .c-graph02__content,
.p-about-3minutes_vision__target .c-graph02.-roe .c-graph02__content {
  margin-top: 1em;
}
.p-about-3minutes_vision__target .c-graph01.-roic .c-graph__text, .p-about-3minutes_vision__target .c-graph01.-roe .c-graph__text,
.p-about-3minutes_vision__target .c-graph02.-roic .c-graph__text,
.p-about-3minutes_vision__target .c-graph02.-roe .c-graph__text {
  line-height: 1;
}
.p-about-3minutes_vision__target .c-graph__block {
  margin-bottom: 15px;
}
.p-about-3minutes_vision__target .c-graph01__content {
  margin-top: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-about-3minutes_vision__target .c-graph01__content {
    margin-top: calc(0.8163265306vw + 0.693877551rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-about-3minutes_vision__target .c-graph01__content {
    margin-top: 1.7em;
  }
}
.p-about-3minutes_vision__target .c-graph01__content .c-graph__flex .c-blockimage {
  width: 40%;
}
.p-about-3minutes_vision__target .c-graph01__content .c-graph__flex {
  margin-bottom: 10px;
}

.p-feature_head {
  text-align: right;
}

.p-feature_field {
  text-align: center;
}
.p-feature_field__title {
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
}
.p-feature_field__title span {
  display: inline-block;
  background: #2e018a;
  color: #ffffff;
  font-size: calc(0.6530612245vw + 1.7551020408rem);
  margin-bottom: calc(0.4081632653vw + 3.4693877551px);
  padding: calc(0.4081632653vw + 3.4693877551px);
}
.p-feature_field__anchor_list {
  display: flex;
  align-items: center;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin-bottom: calc(2.8571428571vw + 24.2857142857px);
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_list {
    display: block;
    text-align: left;
  }
}
.p-feature_field__anchor_block {
  width: 33.3%;
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block {
    width: 100%;
  }
}
.p-feature_field__anchor_block:nth-child(2) {
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block:nth-child(2) {
    border: none;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }
}
.p-feature_field__anchor_block a {
  display: block;
  height: 100%;
  transition: all 0.3s ease;
  padding: calc(2.8571428571vw + 19.2857142857px) calc(0.8163265306vw + 6.9387755102px) calc(1.6326530612vw + 8.8775510204px);
}
.is-pc .p-feature_field__anchor_block a:hover {
  background: #e5e5e5;
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block a {
    display: flex;
    justify-content: space-between;
  }
}
.p-feature_field__anchor_block__img {
  margin-bottom: calc(2.0408163265vw + 22.3469387755px);
  min-height: calc(2.0408163265vw + 52.3469387755px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block__img {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block__inner {
    width: 68%;
  }
}
.p-feature_field__anchor_block__title {
  font-size: calc(1.4693877551vw + 1.4489795918rem);
  position: relative;
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
  color: #2e018a;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
}
.p-feature_field__anchor_block__title::before {
  display: inline-block;
  content: attr(data-num);
  position: absolute;
  left: calc(-1.2244897959vw + -10.4081632653px);
  top: calc(-1.2244897959vw + -10.4081632653px);
  font-size: calc(0.2448979592vw + 1.5081632653rem);
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #999;
  color: transparent;
}
@media only screen and (max-width: 1023px) {
  .p-feature_field__anchor_block__title {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block__title {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
.p-feature_field__anchor_block__text {
  font-size: calc(0.1632653061vw + 1.2387755102rem);
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block__text br {
    display: none;
  }
}
.p-feature_field__anchor_block__arrow {
  display: inline-block;
  width: 30px;
  margin: 0 auto;
  border-top: 1px solid #dddddd;
}
.p-feature_field__anchor_block__arrow svg,
.p-feature_field__anchor_block__arrow img {
  color: #2e018a;
}
@media only screen and (max-width: 767px) {
  .p-feature_field__anchor_block__arrow {
    width: 100%;
    border-top: none;
    text-align: center;
  }
}

.p-feature_body {
  margin-bottom: calc(5.7142857143vw + 48.5714285714px);
}
.p-feature_body__head {
  background: #2e018a;
  color: #ffffff;
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-bottom: calc(2.0408163265vw + 17.3469387755px);
}
.-energy .p-feature_body__head {
  background: #00a9ba;
}
.-communication .p-feature_body__head {
  background: #6241a7;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__head {
    padding: calc(2.0408163265vw + 17.3469387755px) 0 calc(2.0408163265vw + 17.3469387755px) calc(2.0408163265vw + 17.3469387755px);
    display: block;
  }
}
.p-feature_body__head__img {
  margin-left: auto;
  text-align: right;
  width: calc(66.8402777778vw + -34.4444444444px);
}
@media only screen and (max-width: 767px) {
  .p-feature_body__head__img {
    margin-top: 10px;
    width: 100%;
  }
}
.p-feature_body__head__title {
  position: absolute;
  left: 10%;
  top: 50%;
  font-size: calc(4.3402777778vw + 2.0555555556rem);
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.p-feature_body__head__title::before {
  display: inline-block;
  content: attr(data-num);
  position: absolute;
  left: calc(-3.2653061224vw + -27.7551020408px);
  top: calc(-3.2653061224vw + -27.7551020408px);
  font-size: calc(2.4489795918vw + 1.0816326531rem);
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  color: transparent;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__head__title::before {
    left: calc(-2.4489795918vw + -10.8163265306px);
    top: calc(-2.4489795918vw + -10.8163265306px);
    -webkit-text-stroke-color: #ffffff;
  }
}
.p-feature_body__head__title small {
  display: block;
  font-size: calc(0.3265306122vw + 1.4775510204rem);
  margin-top: calc(1.2244897959vw + 25.4081632653px);
  font-family: "UD新ゴ L", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__head__title small {
    font-size: calc(0.3265306122vw + 1.2775510204rem);
    margin-top: calc(1.2244897959vw + 5.4081632653px);
  }
}
@media only screen and (max-width: 767px) {
  .p-feature_body__head__title {
    position: relative;
    left: 0;
    top: 0;
    margin-top: calc(2.0408163265vw + 17.3469387755px);
    font-size: calc(1.306122449vw + 1.9102040816rem);
  }
}
.p-feature_body__value {
  border-bottom: 1px solid #dddddd;
  margin-bottom: calc(2.8571428571vw + 24.2857142857px);
  padding: calc(1.6326530612vw + 13.8775510204px);
}
@media only screen and (max-width: 767px) {
  .p-feature_body__value {
    padding: calc(1.6326530612vw + 13.8775510204px) 0;
    border-bottom: none;
  }
}
.p-feature_body__value__inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__value__inner {
    display: block;
  }
}
.p-feature_body__value__inner dt {
  font-size: calc(0.1632653061vw + 1.9387755102rem);
  font-weight: normal;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__value__inner dt {
    margin-bottom: calc(0.8163265306vw + 6.9387755102px);
    padding-bottom: calc(0.4081632653vw + 3.4693877551px);
    border-bottom: 1px solid #dddddd;
  }
}
.p-feature_body__value__inner dd {
  padding: calc(0.8163265306vw + 21.9387755102px) calc(2.8571428571vw + 19.2857142857px);
  padding-left: calc(2.4489795918vw + 20.8163265306px);
  margin-left: calc(4.0816326531vw + 34.693877551px);
  border-left: 1px solid #dddddd;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__value__inner dd {
    padding: 0;
    margin-left: 0;
    border: none;
  }
}
.p-feature_body__value__list li {
  position: relative;
  padding-left: calc(0.4081632653vw + 8.4693877551px);
  line-height: 200%;
}
.p-feature_body__value__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #2e018a;
  border-radius: 50%;
}
.-energy .p-feature_body__value__list li::before {
  background: #00a9ba;
}
.-communication .p-feature_body__value__list li::before {
  background: #6241a7;
}
.p-feature_body__slider {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-feature_body__slider {
    width: 80%;
    margin: 0 auto;
  }
}
.p-feature_body__slider .swiper-pagination {
  bottom: -40px;
}
.-energy .p-feature_body__slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #00a9ba;
}
.-communication .p-feature_body__slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #6241a7;
}
.p-feature_body__slide_block {
  border-radius: 20px;
  background: #fff;
  border: 2px solid #2e018a;
  padding: 0 calc(1.6326530612vw + 13.8775510204px) calc(2.0408163265vw + 12.3469387755px);
  text-align: center;
  height: auto;
}
.-energy .p-feature_body__slide_block {
  border-color: #00a9ba;
}
.-communication .p-feature_body__slide_block {
  border-color: #6241a7;
}
.p-feature_body__slide_block__label {
  font-size: calc(0.1632653061vw + 1.0387755102rem);
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  padding: calc(0.2448979592vw + 1.0816326531px) calc(0.4081632653vw + 3.4693877551px);
  background: #2e018a;
  color: #ffffff;
  display: inline-block;
  margin-bottom: calc(0.8163265306vw + 11.9387755102px);
}
.-energy .p-feature_body__slide_block__label {
  background: #00a9ba;
}
.-communication .p-feature_body__slide_block__label {
  background: #6241a7;
}
.p-feature_body__slide_block__title {
  font-size: calc(0.1632653061vw + 1.7387755102rem);
  position: relative;
  text-align: center;
  padding-bottom: calc(0.8163265306vw + 6.9387755102px);
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
.p-feature_body__slide_block__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #2e018a;
}
.-energy .p-feature_body__slide_block__title::before {
  background: #00a9ba;
}
.-communication .p-feature_body__slide_block__title::before {
  background: #6241a7;
}
.p-feature_body__slide_block__img {
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
.p-feature_body__slide_block__text {
  text-align: left;
}

.p-business_index {
  margin-top: 76px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-business_index {
    margin-top: calc(2.1224489796vw + 42.0408163265px);
    margin-bottom: calc(8.1632653061vw + 69.387755102px);
  }
}

.p-business_bnr {
  height: 400px;
  max-width: 1460px;
  margin: 0 auto 10px;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr {
    height: calc(16.3265306122vw + 138.7755102041px);
    max-width: calc(88.5714285714vw + 42.8571428571px);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_bnr {
    width: 100%;
  }
}
.p-business_bnr__link {
  display: block;
  position: relative;
  height: 100%;
  color: #fff;
  overflow: hidden;
}
.p-business_bnr__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 530px;
  height: 396px;
  bottom: 0;
  right: 0;
  mix-blend-mode: overlay;
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-style: solid;
  border-width: 0 0 396px 530px;
  border-color: transparent transparent #fff transparent;
  transform-origin: right bottom;
  opacity: 0.5;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__link::after {
    width: calc(21.6326530612vw + 183.8775510204px);
    height: calc(16.1632653061vw + 137.387755102px);
    border-width: 0 0 calc(16.1632653061vw + 137.387755102px) calc(21.6326530612vw + 183.8775510204px);
  }
}
.is-pc .p-business_bnr__link:hover::after {
  transform: scale(1.2);
}
.p-business_bnr__img {
  position: relative;
  height: 100%;
}
.p-business_bnr__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-business_bnr__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 180px;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__title {
    left: calc(13.0612244898vw + -28.9795918367px);
  }
}
.p-business_bnr__title .en {
  font-size: 1.3rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__title .en {
    font-size: calc(0.2448979592vw + 0.9081632653rem);
    margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  }
}
.p-business_bnr__title .title {
  font-size: 3.4rem;
  font-family: "UD新ゴ M";
  display: inline-block;
  border-bottom: 1px solid #fff;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__title .title {
    font-size: calc(1.1428571429vw + 1.5714285714rem);
  }
}
.p-business_bnr__arrow {
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 60px;
  font-size: 2.1rem;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__arrow {
    font-size: calc(0.3265306122vw + 1.5775510204rem);
  }
}
.p-business_bnr__arrow img,
.p-business_bnr__arrow svg {
  z-index: 2;
  width: 1em;
  height: 1em;
  overflow: hidden;
  position: absolute;
  bottom: 9px;
  right: 12px;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__arrow img,
.p-business_bnr__arrow svg {
    bottom: calc(0.4081632653vw + 2.4693877551px);
    right: calc(0.4081632653vw + 5.4693877551px);
  }
}
.p-business_bnr__arrow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #2e018a transparent;
}
@media only screen and (max-width: 1599px) {
  .p-business_bnr__arrow::after {
    border-width: 0 0 calc(1.6326530612vw + 33.8775510204px) calc(2.2857142857vw + 43.4285714286px);
  }
}

.p-business_movie {
  margin-bottom: 170px;
}
@media only screen and (max-width: 1599px) {
  .p-business_movie {
    margin-bottom: calc(5.7142857143vw + 78.5714285714px);
  }
}
.p-business_movie__box {
  width: 820px;
  height: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .p-business_movie__box {
    width: calc(34.2857142857vw + 271.4285714286px);
    height: calc(21.2244897959vw + 160.4081632653px);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_movie__box {
    width: 100%;
  }
}
.p-business_movie__box iframe {
  width: 100%;
  height: 100%;
}

.p-business_product {
  margin-bottom: 150px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product {
    margin-bottom: calc(6.5306122449vw + 45.5102040816px);
  }
}
.p-business_product__desc {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__desc {
    margin-bottom: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-business_product__ico_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px 60px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__ico_row {
    margin: 0 calc(-2.0408163265vw + 7.6530612245px) calc(3.2653061224vw + 7.7551020408px);
  }
}
.p-business_product__ico_box {
  width: 50%;
  padding: 0 25px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__ico_box {
    padding: calc(2.0408163265vw + -7.6530612245px);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_product__ico_box {
    width: 100%;
    margin-bottom: calc(0.4081632653vw + 8.4693877551px);
  }
}
.p-business_product__ico_box .in {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__ico_box .in {
    padding: calc(1.4693877551vw + 12.4897959184px);
  }
}
.p-business_product__ico_box .c-block_image {
  width: 12%;
  margin-right: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__ico_box .c-block_image {
    margin-right: calc(1.6326530612vw + 3.8775510204px);
  }
}
.p-business_product__ico_box .text .title {
  display: block;
  font-family: "UD新ゴ M";
  color: #111111;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-family: "UD新ゴ M";
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__ico_box .text .title {
    font-size: calc(0.2448979592vw + 1.4081632653rem);
  }
}
.p-business_product__ico_box .text .c-font-mont {
  display: block;
  line-height: 1;
  color: #999;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__ico_box .text .c-font-mont {
    font-size: calc(0.1632653061vw + 0.9387755102rem);
  }
}
.p-business_product__service {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__service {
    margin: 0 calc(-2.0408163265vw + 7.6530612245px);
  }
}
.p-business_product__service__box {
  width: 50%;
  padding: 0 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__service__box {
    padding: 0 calc(2.0408163265vw + -7.6530612245px);
    margin-bottom: calc(2.4489795918vw + 20.8163265306px);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_product__service__box {
    width: 100%;
  }
}
.p-business_product__service__box .thumb {
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__service__box .thumb {
    margin-bottom: calc(1.2244897959vw + 10.4081632653px);
  }
}
.p-business_product__service__box .thumb .num {
  position: absolute;
  top: 0;
  left: 0;
  color: #2e018a;
  font-size: 2.4rem;
  z-index: 3;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__service__box .thumb .num {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
.p-business_product__service__box .thumb .num::before {
  content: "#";
  font-size: 1.6rem;
  font-weight: 400;
}
.p-business_product__service__box .thumb .num::after {
  content: "";
  display: block;
  width: 77px;
  height: 56px;
  border-style: solid;
  border-width: 56px 77px 0 0;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-business_product__service__box .title {
  font-size: 2.2rem;
  font-family: "UD新ゴ M";
  color: #111111;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1599px) {
  .p-business_product__service__box .title {
    font-size: calc(0.3265306122vw + 1.6775510204rem);
    margin-bottom: calc(1.2244897959vw + 5.4081632653px);
  }
}
.p-business_product__service__box .text {
  font-size: 1.4rem;
}

.p-business_point {
  margin-bottom: 100px;
  background-color: #f5f5f5;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1599px) {
  .p-business_point {
    margin-bottom: calc(3.2653061224vw + 47.7551020408px);
    padding: calc(4.0816326531vw + 54.693877551px) 0 calc(3.2653061224vw + 47.7551020408px);
  }
}
.p-business_point::before, .p-business_point::after {
  content: "";
  display: block;
  position: absolute;
  right: -10%;
  top: 65%;
  transform-origin: 85% center;
  transition: transform 0s;
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
.p-business_point::before {
  transform: rotate(36.75deg);
}
.p-business_point::after {
  transform: rotate(-36.75deg);
}
.p-business_point__block {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 90px 15px 15px;
  min-height: 230px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block {
    padding: calc(0.5714285714vw + 5.8571428571px) calc(6.693877551vw + -17.1020408163px) calc(0.5714285714vw + 5.8571428571px) calc(0.5714285714vw + 5.8571428571px);
    min-height: calc(4.0816326531vw + 164.693877551px);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_point__block {
    flex-direction: column;
    padding: calc(0.8163265306vw + 26.9387755102px);
  }
}
.p-business_point__block.-link {
  border: 1px solid transparent;
}
.p-business_point__block.-link:hover {
  border-color: #2e018a;
}
.p-business_point__block::before {
  content: "";
  display: block;
  position: absolute;
  left: -220px;
  top: 0;
  transform-origin: 32% center;
  transition: transform 0s;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  transform: rotate(-36.75deg);
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block::before {
    left: calc(-15.5102040816vw + 28.1632653061px);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_point__block::before {
    width: 120%;
  }
}
.p-business_point__block__num {
  font-size: 1.6rem;
  display: flex;
  align-self: flex-start;
  align-items: baseline;
  color: #2e018a;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .p-business_point__block__num {
    position: absolute;
    top: 10px;
    left: 10px;
  }
}
.p-business_point__block__num .stroke {
  -webkit-text-stroke: 1px #2e018a;
  font-size: 2.5rem;
  color: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block__num .stroke {
    font-size: calc(0.4081632653vw + 18.4693877551px);
  }
}
.p-business_point__block__title {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 2.4rem;
  min-width: 370px;
  max-width: 370px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.p-business_point__block__title .notes{
  font-size: 1.4rem;
}


@media only screen and (max-width: 1599px) {
  .p-business_point__block__title {
    min-width: calc(22.0408163265vw + 17.3469387755px);
    max-width: calc(22.0408163265vw + 17.3469387755px);
    font-size: calc(0.6530612245vw + 1.3551020408rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-business_point__block__title {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-business_point__block__title span {
  padding: 10px 10px 7px;
  line-height: 1.05;
  color: #111111;
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block__title span {
    padding: calc(0.5714285714vw + 0.8571428571px) calc(0.5714285714vw + 0.8571428571px) calc(0.4081632653vw + 0.4693877551px);
  }
}
.p-business_point__block__title .bg {
  background-color: #2e018a;
  color: #fff;
  white-space: nowrap;
  font-size: 3.5rem;
  font-family: "UD新ゴ M";
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block__title .bg {
    font-size: calc(1.387755102vw + 1.2795918367rem);
  }
}
.p-business_point__block__arrow {
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 60px;
  font-size: 2.1rem;
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block__arrow {
    font-size: calc(0.3265306122vw + 1.5775510204rem);
  }
}
.p-business_point__block__arrow img,
.p-business_point__block__arrow svg {
  z-index: 2;
  width: 1em;
  height: 1em;
  overflow: hidden;
  position: absolute;
  bottom: 9px;
  right: 12px;
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block__arrow img,
.p-business_point__block__arrow svg {
    bottom: calc(0.4081632653vw + 2.4693877551px);
    right: calc(0.4081632653vw + 5.4693877551px);
  }
}
.p-business_point__block__arrow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #2e018a transparent;
  transition: all 0.6s ease;
  transform-origin: right bottom;
}
@media only screen and (max-width: 1599px) {
  .p-business_point__block__arrow::after {
    border-width: 0 0 calc(1.6326530612vw + 33.8775510204px) calc(2.2857142857vw + 43.4285714286px);
  }
}
.p-business_point__block.-link:hover .p-business_point__block__arrow::after {
  transform: scale(1.1);
}

.p-business_other__row {
  display: flex;
  flex-wrap: wrap;
}
.p-business_other__item {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .p-business_other__item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-business_other__item a {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .p-business_other__item__img {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .p-business_other__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-business_other__item__text {
  background-color: #f5f5f5;
  padding: 30px 25px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .p-business_other__item__text {
    padding: calc(1.2244897959vw + 10.4081632653px) calc(1.2244897959vw + 5.4081632653px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-business_other__item__text {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .p-business_other__item__text {
    width: 55%;
  }
}
.p-business_other__item__text .main {
  font-size: 2.2rem;
  font-family: "UD新ゴ M";
  color: #111111;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-business_other__item__text .main {
    font-size: calc(0.4897959184vw + 1.4163265306rem);
  }
}
.p-business_other__item__text .en {
  color: #2e018a;
  font-size: 1.3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .p-business_other__item__text .en {
    font-size: calc(0.2448979592vw + 9.0816326531px);
  }
}
.p-business_other__item__text .en::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #707070;
  transform: rotate(-45deg);
  margin: 0 15px;
}
@media only screen and (max-width: 1599px) {
  .p-business_other__item__text .en::before {
    width: calc(0.4081632653vw + 13.4693877551px);
    margin: 0 calc(0.8163265306vw + 1.9387755102px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-business_other__item__text .en::before {
    display: none;
  }
}

.p-movie_row {
  display: flex;
  flex-wrap: wrap;
  counter-reset: movie-list;
}
.p-movie__box {
  width: 50%;
  padding: 0 15px;
  counter-increment: movie-list;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1599px) {
  .p-movie__box {
    padding: 0 calc(0.8163265306vw + 1.9387755102px);
    margin-bottom: calc(2.4489795918vw + 20.8163265306px);
  }
}
@media only screen and (max-width: 767px) {
  .p-movie__box {
    width: 100%;
  }
}
.p-movie__box a {
  display: block;
}
.p-movie__box img {
  display: block;
}
.p-movie__box .iframe {
  position: relative;
  display: block;
}
.p-movie__box .iframe::before {
  content: "";
  display: block;
  padding-top: 75.0769230769%;
}
.p-movie__box .iframe iframe,
.p-movie__box .iframe img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-movie__box__title {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: left;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .p-movie__box__title {
    font-size: calc(0.1632653061vw + 1.7387755102rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-movie__box__title {
    margin-bottom: 0.75em;
  }
}
.p-movie__box__title::before {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  content: "#" counter(movie-list, decimal-leading-zero) " ／";
  color: #2e018a;
  margin-right: 0.5em;
}
@media only screen and (max-width: 1599px) {
  .p-movie__box__title::before {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}

.p-world_data {
  margin-bottom: calc(8.1632653061vw + 69.387755102px);
}

.p-world_data_block {
  padding: calc(2.4489795918vw + 20.8163265306px) calc(2.4489795918vw + 20.8163265306px) calc(0.8163265306vw + 6.9387755102px);
  border: 1px solid #2e018a;
  border-top: none;
}
.p-world_data_block:nth-of-type(1) {
  border-top: 1px solid #2e018a;
}
@media only screen and (max-width: 767px) {
  .p-world_data_block {
    padding: calc(0.8163265306vw + 16.9387755102px) calc(1.6326530612vw + 3.8775510204px);
  }
}
.p-world_data_block.-flex {
  display: flex;
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block.-flex {
    display: block;
  }
}
.p-world_data_block__label {
  text-align: center;
  margin-bottom: calc(2.0408163265vw + 17.3469387755px);
}
.p-world_data_block__label span {
  display: inline-block;
  background: #2e018a;
  color: #ffffff;
  font-size: calc(0.1632653061vw + 1.5387755102rem);
  padding: calc(0.4081632653vw + 3.4693877551px);
}
.p-world_data_block__body {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__body {
    display: block;
  }
}
.p-world_data_block__body__pict {
  margin-right: calc(1.6326530612vw + 13.8775510204px);
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__body__pict {
    margin: 0 auto 20px;
    text-align: center;
  }
}
.p-world_data_block__body__sales {
  font-size: calc(0.6530612245vw + 1.7551020408rem);
  color: #111111;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__body__sales {
    margin: 0 auto 20px;
    text-align: center;
  }
}
.p-world_data_block__body__sales strong {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #2e018a;
  font-size: calc(1.6326530612vw + 4.387755102rem);
}
.p-world_data_block__body__sales strong.big {
  font-size: calc(2.4489795918vw + 7.0816326531rem);
}
.p-world_data_block__body__sales .data_label {
  display: block;
  width: 100%;
  background: #f5f5f5;
  border-radius: 30px;
  text-align: center;
  margin-top: 10px;
  font-size: calc(0.2448979592vw + 1.1081632653rem);
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__body__sales .data_label {
    width: 80%;
    margin: 10px auto 0;
    margin: 10px auto 0;
  }
}
.p-world_data_block__body__percent {
  color: #111111;
  margin-left: calc(2.0408163265vw + 17.3469387755px);
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__body__percent {
    margin: 0 auto;
    justify-content: center;
  }
}
.p-world_data_block__body__percent .title {
  font-size: calc(0.1632653061vw + 1.3387755102rem);
  border-bottom: 2px solid #2e018a;
  margin-right: calc(0.4081632653vw + 8.4693877551px);
}
.p-world_data_block__body__percent .num {
  font-size: calc(0.8163265306vw + 2.193877551rem);
  align-items: baseline;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.p-world_data_block__body__percent strong {
  color: #2e018a;
  font-size: calc(1.6326530612vw + 4.387755102rem);
}
.p-world_data_block__text {
  text-align: right;
  font-size: calc(0.1632653061vw + 0.9387755102rem);
  color: #999;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__text {
    margin-top: 20px;
  }
}
.p-world_data_block__area_list {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  margin: calc(3.2653061224vw + 27.7551020408px) auto 0;
}
.p-world_data_block__area_list__block {
  text-align: center;
  position: relative;
  background-size: auto auto;
  font-size: calc(0.4897959184vw + 1.4163265306rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #ffffff;
  padding: calc(0.8163265306vw + 6.9387755102px);
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_list__block {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-world_data_block__area_list__block .price small {
  font-size: calc(0.1632653061vw + 1.3387755102rem);
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_list__block .price small {
    font-size: calc(0.1632653061vw + 0.9387755102rem);
    display: block;
    line-height: 1;
  }
}
.p-world_data_block__area_list__block.-asia {
  width: 52%;
  background: #0075c2;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255, 255, 255, 0.2) 5px, rgba(255, 255, 255, 0.1) 6px);
}
.p-world_data_block__area_list__block.-asia .label::before {
  border-color: #0075c2;
}
.p-world_data_block__area_list__block.-usa {
  width: 28%;
  background: #06b4ea;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 6px);
}
.p-world_data_block__area_list__block.-usa .label::before {
  border-color: #06b4ea;
}
.p-world_data_block__area_list__block.-euro {
  width: 20%;
  background: #00a9ba;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 6px);
}
@media only screen and (max-width: 767px) {
  .p-world_data_block__area_list__block.-euro .label {
    left: 22%;
  }
}
.p-world_data_block__area_list__block.-euro .label::before {
  border-color: #00a9ba;
}
.p-world_data_block__area_list__block.-japan {
  width: 20%;
  background: #7b639f;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 6px);
}
.p-world_data_block__area_list__block.-japan .label::before {
  border-color: #7b639f;
}
.p-world_data_block__area_list__block .label {
  display: block;
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  color: #111111;
  font-size: calc(0.2448979592vw + 1.1081632653rem);
  font-weight: normal;
  width: 100%;
  white-space: nowrap;
}
.p-world_data_block__area_list__block .label::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 1px;
  height: 15px;
  border-left: 2px dotted #000;
}
@media only screen and (max-width: 767px) {
  .p-world_data_block__area_list__block .label {
    font-size: calc(0.1632653061vw + 0.9387755102rem);
  }
}
.p-world_data_block__grobal_title {
  text-align: center;
  font-size: calc(0.5714285714vw + 1.2857142857rem);
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
}
.p-world_data_block__grobal_title strong {
  font-size: calc(1.6326530612vw + 3.387755102rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #2e018a;
}
.p-world_data_block__area_map {
  background: url(/career/fresh/common/img/global/world/world_bg01.jpg) no-repeat center;
  background-size: contain;
  min-height: 370px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_map {
    min-height: auto;
  }
}
.p-world_data_block__area_map__area {
  font-size: calc(0.3265306122vw + 1.2775510204rem);
  text-align: center;
  border-bottom: 2px solid #000;
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_map__area {
    position: relative;
    transform: translateX(0);
    display: block;
    width: 80%;
    margin: 10px auto 0;
    margin: 0 auto 20px;
  }
}
.p-world_data_block__area_map__area.-japan {
  border-color: #7b639f;
  left: 46%;
  top: 20%;
}
.p-world_data_block__area_map__area.-japan strong {
  color: #7b639f;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_map__area.-japan {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-world_data_block__area_map__area.-euro {
  border-color: #00a9ba;
  left: 15%;
  top: 35%;
}
.p-world_data_block__area_map__area.-euro strong {
  color: #00a9ba;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_map__area.-euro {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-world_data_block__area_map__area.-asia {
  border-color: #0075c2;
  left: 45%;
  top: 50%;
}
.p-world_data_block__area_map__area.-asia strong {
  color: #0075c2;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_map__area.-asia {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-world_data_block__area_map__area.-usa {
  border-color: #06b4ea;
  left: 75%;
  top: 40%;
}
.p-world_data_block__area_map__area.-usa strong {
  color: #06b4ea;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__area_map__area.-usa {
    position: relative;
    left: 0;
    top: 0;
  }
}
.p-world_data_block__area_map__area strong {
  font-size: calc(1.4693877551vw + 1.8489795918rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.p-world_data_block__area_map__area .label {
  font-size: calc(0.1632653061vw + 1.1387755102rem);
  display: block;
}
.p-world_data_block__inner {
  width: 50%;
  padding: calc(1.6326530612vw + 13.8775510204px);
}
.p-world_data_block__inner:first-child {
  border-right: 1px solid #2e018a;
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__inner:first-child {
    border: none;
    border-bottom: 1px solid #2e018a;
  }
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__inner {
    width: 100%;
  }
}
.p-world_data_block__inner_body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
.p-world_data_block__inner_body__pict {
  margin-right: calc(2.0408163265vw + 17.3469387755px);
}
.p-world_data_block__inner_body__num {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: calc(0.8163265306vw + 2.193877551rem);
}
.p-world_data_block__inner_body__num span {
  display: block;
  font-size: calc(0.2448979592vw + 1.2081632653rem);
  font-family: "UD新ゴ L", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  width: 100%;
  font-weight: normal;
}
.p-world_data_block__inner_body__num strong {
  font-size: calc(1.6326530612vw + 5.387755102rem);
  color: #2e018a;
}
.p-world_data_block__inner_body__num small {
  font-size: calc(1.6326530612vw + 3.387755102rem);
}
.p-world_data_block__inner_body__num .data_label {
  display: block;
  width: 100%;
  background: #f5f5f5;
  border-radius: 30px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: calc(0.2448979592vw + 1.1081632653rem);
}
@media only screen and (max-width: 1023px) {
  .p-world_data_block__inner_body__num .data_label {
    width: 80%;
    margin: 10px auto 0;
  }
}
.p-world_data_block__inner_body__desc {
  text-align: center;
  font-size: calc(0.1632653061vw + 1.1387755102rem);
}

.p-report_hero {
  margin-top: calc(2.4489795918vw + 70.8163265306px);
  position: relative;
  z-index: 1000;
  margin-left: calc(4.0816326531vw + 4.693877551px);
  padding: calc(9.7959183673vw + 63.2653061224px) 0;
}
.p-report_hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 999;
}
.p-report_hero__en {
  text-transform: uppercase;
  text-align: center;
}
.p-report_hero__sub {
  font-size: 44px;
  -webkit-text-stroke-color: #ffffff;
  -webkit-text-stroke-width: 1px;
  color: transparent;
  margin-bottom: calc(1.6326530612vw + 23.8775510204px);
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 1599px) {
  .p-report_hero__sub {
    font-size: calc(1.9591836735vw + 1.2653061224rem);
  }
}
.p-report_hero__title {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 130px;
  color: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-report_hero__title {
    font-size: calc(7.3469387755vw + 1.2448979592rem);
  }
}
.p-report_hero__box {
  background: #2e018a;
  padding: calc(1.6326530612vw + 13.8775510204px);
  color: #ffffff;
  text-align: center;
  min-width: 400px;
  position: absolute;
  left: 50%;
  bottom: calc(-2.0408163265vw + -17.3469387755px);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-report_hero__box {
    min-width: 300px;
  }
}
.p-report_hero__box__title {
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: calc(0.2448979592vw + 2.0816326531px);
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
}
.p-report_hero__box__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-report_hero__box__title {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-report_hero__box__name {
  font-size: 30px;
  font-family: "UD新ゴ M";
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1599px) {
  .p-report_hero__box__name {
    font-size: calc(0.8163265306vw + 1.693877551rem);
  }
}

.p-report_head {
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  padding-top: calc(16.3265306122vw + 138.7755102041px);
  padding-bottom: calc(5.7142857143vw + 48.5714285714px);
  margin-top: calc(-8.1632653061vw + -99.387755102px);
}
.p-report_head::before, .p-report_head::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dddddd;
  transform-origin: left;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-report_head::before, .p-report_head::after {
    display: none;
  }
}
.p-report_head::before {
  top: calc(10.612244898vw + 90.2040816327px);
  transform: rotate(35deg);
}
.p-report_head::after {
  top: calc(15.5102040816vw + -188.1632653061px);
  transform: rotate(-35deg);
}
.p-report_head__inner {
  display: flex;
  position: relative;
  z-index: 11;
}
@media only screen and (max-width: 767px) {
  .p-report_head__inner {
    display: block;
  }
}
.p-report_head__thumb {
  flex-shrink: 1;
  width: 45%;
  max-width: 450px;
  text-align: center;
  margin-top: -50px;
}
@media only screen and (max-width: 1023px) {
  .p-report_head__thumb {
    width: 40%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .p-report_head__thumb {
    width: 70%;
    margin: 0 auto 30px;
  }
}
.p-report_head__text {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .p-report_head__text {
    width: 100%;
  }
}
.p-report_head__text__position {
  background: #000000;
  color: #ffffff;
  display: inline-block;
  padding: calc(0.3265306122vw + 2.7755102041px) calc(0.4081632653vw + 3.4693877551px);
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  font-size: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-report_head__text__position {
    font-size: calc(0.4081632653vw + 1.3469387755rem);
  }
}
.p-report_head__text__name {
  font-size: 20px;
  font-family: "UD新ゴ M";
  color: #111111;
}
@media only screen and (max-width: 1599px) {
  .p-report_head__text__name {
    font-size: calc(0.4897959184vw + 1.2163265306rem);
  }
}
.p-report_head__text__year {
  font-size: 14px;
  color: #111111;
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
@media only screen and (max-width: 1599px) {
  .p-report_head__text__year {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-report_head__text__list {
  border-left: 4px solid #dddddd;
  padding-left: calc(1.6326530612vw + 3.8775510204px);
  font-size: 14px;
}
@media only screen and (max-width: 1599px) {
  .p-report_head__text__list {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-report_head__text__list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.p-report_head__text__list span {
  margin-right: 25px;
  white-space: nowrap;
}
@media only screen and (max-width: 1599px) {
  .p-report_head__text__list span {
    margin-right: calc(0.8163265306vw + 6.9387755102px);
  }
}
@media only screen and (max-width: 767px) {
  .p-report_head__text__list br {
    display: none;
  }
}

.p-report_contents {
  padding-top: calc(4.8979591837vw + 51.6326530612px);
  counter-reset: number 0;
}
@media only screen and (min-width: 1600px) {
  .p-report_contents .c-container {
    width: calc(68.1632653061vw + 119.387755102px);
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
.p-report_contents__block {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(4.8979591837vw + 41.6326530612px);
}
@media only screen and (max-width: 1023px) {
  .p-report_contents__block {
    display: block;
  }
}
.p-report_contents__block.-reverse {
  flex-direction: row-reverse;
}
.p-report_contents__block__text {
  width: 50%;
  padding-left: calc(3.2653061224vw + 17.7551020408px);
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-report_contents__block__text {
    width: 100%;
  }
}
.p-report_contents__block__text::before {
  position: absolute;
  left: 0;
  top: calc(0.0816326531vw + 0.693877551px);
  color: #2e018a;
  font-size: calc(0.1632653061vw + 1.3387755102rem);
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  counter-increment: number;
  content: counter(number, decimal-leading-zero) ".";
}
.p-report_contents__block__text::after {
  content: "";
  position: absolute;
  left: calc(0.9795918367vw + 16.3265306122px);
  top: calc(0.3265306122vw + 8.7755102041px);
  width: calc(1.1428571429vw + 7.7142857143px);
  height: 1px;
  background: #cccccc;
  transform-origin: center;
  transform: rotate(-40deg);
}
@media only screen and (max-width: 1023px) {
  .p-report_contents__block__text::after {
    transform: rotate(-50deg);
  }
}
.p-report_contents__block__en {
  color: #2e018a;
  margin-bottom: calc(0.4081632653vw + 8.4693877551px);
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.p-report_contents__block__title {
  font-size: 26px;
  color: #111111;
  font-family: "UD新ゴ M";
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
}
@media only screen and (max-width: 1599px) {
  .p-report_contents__block__title {
    font-size: calc(0.4897959184vw + 1.8163265306rem);
  }
}
.p-report_contents__block__para {
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 1599px) {
  .p-report_contents__block__para {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
  }
}
.p-report_contents__block__img {
  margin-left: calc(3.6734693878vw + 31.2244897959px);
}
@media only screen and (max-width: 1023px) {
  .p-report_contents__block__img {
    width: 100%;
    margin-left: 0;
    margin-top: 25px;
    padding-left: calc(3.2653061224vw + 17.7551020408px);
  }
}
.p-report_contents__block__img img {
  width: 100%;
}
.-w100 .p-report_contents__block__img {
  margin-right: calc(-10.2040816327vw + -86.7346938776px);
  width: calc(29.387755102vw + 239.7959183673px);
}
@media only screen and (max-width: 1023px) {
  .-w100 .p-report_contents__block__img {
    width: 100%;
    margin-right: 0;
  }
}
.-reverse .p-report_contents__block__img {
  margin-left: 0;
  margin-right: calc(3.6734693878vw + 31.2244897959px);
}
@media only screen and (max-width: 1023px) {
  .-reverse .p-report_contents__block__img {
    margin-right: 0;
  }
}
.p-report_contents__block__img .-reverse, .-w100 .p-report_contents__block__img {
  margin-left: calc(-10.2040816327vw + -86.7346938776px);
}
@media only screen and (max-width: 1023px) {
  .p-report_contents__block__img .-reverse, .-w100 .p-report_contents__block__img {
    margin-left: 0;
  }
}

.p-report_schedule {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  margin-bottom: calc(3.6734693878vw + 31.2244897959px);
}
.p-report_schedule::before {
  content: "Time Schedule";
  position: absolute;
  left: 20px;
  top: 0;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  writing-mode: vertical-rl;
  white-space: nowrap;
  color: #ffffff;
  font-size: 110px;
}
@media only screen and (max-width: 1599px) {
  .p-report_schedule::before {
    font-size: calc(5.306122449vw + 2.5102040816rem);
  }
}
.p-report_schedule__inner {
  position: relative;
  z-index: 1;
  padding: calc(4.8979591837vw + 41.6326530612px) 0;
}
.p-report_schedule__inner::before, .p-report_schedule__inner::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 710px;
  height: 1px;
  background: #dddddd;
  z-index: -1;
  transform-origin: right;
}
.p-report_schedule__inner::before {
  transform: rotate(45deg) translateY(20px);
  top: 50%;
}
.p-report_schedule__inner::after {
  transform: rotate(-45deg) translateY(-20px);
  bottom: 50%;
}
.p-report_schedule__title {
  display: flex;
  align-items: center;
  margin-bottom: calc(2.4489795918vw + 20.8163265306px);
}
.p-report_schedule__title__en {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #2e018a;
  font-size: 50px;
  position: relative;
}
.p-report_schedule__title__en::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-1.6326530612vw + -23.8775510204px);
  width: 30px;
  height: 1px;
  background: #707070;
  transform-origin: center;
  transform: rotate(-35deg) translateY(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-report_schedule__title__en {
    font-size: calc(1.6326530612vw + 2.387755102rem);
  }
}
.p-report_schedule__title__ja {
  margin-left: calc(2.4489795918vw + 25.8163265306px);
  font-size: 16px;
}
@media only screen and (max-width: 1599px) {
  .p-report_schedule__title__ja {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
  }
}
.p-report_schedule__list {
  position: relative;
  z-index: 1111;
}
.p-report_schedule__list__wrapper {
  position: relative;
}
.p-report_schedule__list__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #2e018a;
}
.p-report_schedule__list__slide {
  height: 100%;
}
.p-report_schedule__block {
  display: flex;
  align-items: flex-end;
  line-height: 1.8;
  font-size: 14px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-report_schedule__block {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-report_schedule__block::before, .p-report_schedule__block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-report_schedule__block::before {
  bottom: -42px;
  height: 42px;
  border-left: 1px dotted #2e018a;
}
.p-report_schedule__block::after {
  bottom: -43px;
  width: 5px;
  height: 5px;
  background: #2e018a;
  border-radius: 50%;
}
.p-report_schedule__block.-odd {
  margin-top: auto;
  align-items: flex-start;
}
.p-report_schedule__block.-odd::before {
  top: -42px;
  bottom: initial;
}
.p-report_schedule__block.-odd::after {
  top: -43px;
  bottom: initial;
}
.p-report_schedule__block__inner {
  background: #ffffff;
  width: 100%;
  height: auto;
  padding: calc(1.2244897959vw + 5.4081632653px);
}
.p-report_schedule__block__date {
  text-align: center;
  font-size: 15px;
  color: #2e018a;
  margin-bottom: calc(0.4081632653vw + 3.4693877551px);
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media only screen and (max-width: 1599px) {
  .p-report_schedule__block__date {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
.p-report_schedule__block__heading {
  text-align: center;
  font-family: "UD新ゴ M";
  line-height: 1.4;
  margin-bottom: 10px;
  color: #333;
}

.p-report_dayoff {
  margin-bottom: calc(5.7142857143vw + 48.5714285714px);
}
.p-report_dayoff__inner {
  display: flex;
  justify-content: space-between;
  background: #2e018a;
  padding: calc(3.6734693878vw + 31.2244897959px);
}
@media only screen and (max-width: 767px) {
  .p-report_dayoff__inner {
    display: block;
  }
}
.p-report_dayoff__text {
  width: 100%;
  color: #ffffff;
  padding-right: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-report_dayoff__text {
    padding-right: 40px, 80px;
  }
}
@media only screen and (max-width: 767px) {
  .p-report_dayoff__text {
    padding-right: 0;
  }
}
.p-report_dayoff__title {
  display: flex;
  align-items: center;
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
  font-size: 17px;
}
@media only screen and (max-width: 1599px) {
  .p-report_dayoff__title {
    font-size: calc(0.1632653061vw + 1.4387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-report_dayoff__title__en {
    width: 50%;
  }
}
.p-report_dayoff__img {
  flex-shrink: 0;
  max-width: calc(10.2040816327vw + 81.7346938776px);
}
@media only screen and (max-width: 767px) {
  .p-report_dayoff__img {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-report_dayoff__img img {
  border-radius: 50%;
}

.p-report_other {
  margin-bottom: calc(8.1632653061vw + 69.387755102px);
}
.p-report_other .c-title01 {
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}

.p-information-faq {
  padding-bottom: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq {
    padding-bottom: calc(8.1632653061vw + 69.387755102px);
  }
}
.p-information-faq__anchor {
  padding-top: 76px;
  max-width: 685px;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__anchor {
    padding-top: calc(3.1020408163vw + 26.3673469388px);
  }
}
.p-information-faq #recruitment {
  padding-top: 106px;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq #recruitment {
    padding-top: calc(4.3265306122vw + 36.7755102041px);
  }
}
.p-information-faq #work-style,
.p-information-faq #welfare {
  padding-top: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq #work-style,
.p-information-faq #welfare {
    padding-top: calc(8.1632653061vw + 69.387755102px);
  }
}
.p-information-faq__item__faq {
  margin-top: 68px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq {
    margin-top: calc(2.7755102041vw + 23.5918367347px);
  }
}
.p-information-faq__item__faq .title {
  position: relative;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  padding: 46px 100px;
  cursor: pointer;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .title {
    padding: calc(1.8775510204vw + 15.9591836735px) calc(4.0816326531vw + 34.693877551px);
  }
}
.p-information-faq__item__faq .title::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #2e018a;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .title::before {
    height: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-information-faq__item__faq .title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background: #2e018a;
  right: 7%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .title::after {
    height: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-information-faq__item__faq .title.is-opened::before {
  transform: translateY(-50%) rotate(90deg);
}
.p-information-faq__item__faq .title .title-text {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111111;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .title .title-text {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-faq__item__faq .title .title-text {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.p-information-faq__item__faq .title .title-text::before {
  content: "Q";
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  position: absolute;
  top: -0.3em;
  left: -1.3em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2e018a;
  -webkit-text-fill-color: white;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .title .title-text::before {
    font-size: calc(0.1632653061vw + 2.5387755102rem);
  }
}
.p-information-faq__item__faq .text {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 0.8s ease;
  background: #f5f5f5;
  padding: 0 130px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  /*
  &:last-child {
    border-bottom: 1px solid #ddd;
  }
  */
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .text {
    padding: 0 calc(5.306122449vw + 45.1020408163px);
  }
}
.p-information-faq__item__faq .text .link {
  color: #2e018a;
  transition: 0.4s;
  text-decoration: underline;
}
.p-information-faq__item__faq .text.is-opened {
  padding: 40px 130px;
}
@media only screen and (max-width: 1599px) {
  .p-information-faq__item__faq .text.is-opened {
    padding: 40px calc(5.306122449vw + 45.1020408163px);
  }
}
.p-information-faq__item__faq .text .c-text02 {
  position: relative;
}
.p-information-faq__item__faq .text .c-text02::before {
  content: "A.";
  color: #2e018a;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.5rem;
  position: absolute;
  top: -0.4em;
  left: -1.5em;
}

.p-information-requirements {
  margin-bottom: calc(4.4897959184vw + 38.1632653061px);
}
.p-information-requirements__anchor {
  padding-top: 76px;
  max-width: 610px;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__anchor {
    padding-top: calc(3.1020408163vw + 26.3673469388px);
  }
}
.p-information-requirements #requirements {
  padding-top: 106px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements #requirements {
    padding-top: calc(4.3265306122vw + 36.7755102041px);
  }
}
.p-information-requirements #flow,
.p-information-requirements #area {
  padding-top: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements #flow,
.p-information-requirements #area {
    padding-top: calc(8.1632653061vw + 69.387755102px);
  }
}
.p-information-requirements__requirements__item-wrap {
  margin-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__requirements__item-wrap {
    margin-top: calc(2.8571428571vw + 24.2857142857px);
  }
}
.p-information-requirements__requirements__flex{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 300px){
  .p-information-requirements__requirements__flex{
    flex-direction: column;
    gap: 20px;
    align-items: baseline;
  }
 
}
.p-information-requirements__requirements__flex .c-button03{
  margin-left: auto;
}
.p-information-requirements__requirements__flex .c-button03 a{
  padding: 12px 20px;
}
@media only screen and (max-width: 767px){
  .p-information-requirements__requirements__flex .c-button03 a{
    padding: 7px 20px;
  }
}
.p-information-requirements__requirements__item {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  display: flex;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__requirements__item {
    padding: calc(1.2244897959vw + 10.4081632653px) 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__requirements__item {
    display: block;
  }
}
.p-information-requirements__requirements__item .c-text02 .-bold {
  margin-right: 1em;
}
.p-information-requirements__requirements__item:last-child {
  border-bottom: 1px solid #ddd;
}
.p-information-requirements__requirements__item--type02 .c-text02{
  margin-bottom: 1em;
}
.p-information-requirements__requirements__item--type02 .c-text02:last-child{
  margin-bottom: 0;
}
.p-information-requirements__requirements__item .title {
  color: #111111;
  width: 30%;
  box-sizing: border-box;
  padding: 0 74px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__requirements__item .title {
    padding: 0 calc(3.0204081633vw + 25.6734693878px);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__requirements__item .title {
    width: 100%;
    padding: 0 1em;
    margin-bottom: 0.5em;
  }
}
.p-information-requirements__requirements__item .text {
  color: #111111;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__requirements__item .text {
    width: 100%;
    padding: 0 1em;
  }
}
.p-information-requirements__flow__wrap {
  margin-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__flow__wrap {
    margin-top: calc(2.8571428571vw + 24.2857142857px);
  }
}
.p-information-requirements__flow__item-wrap {
  margin-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__flow__item-wrap {
    margin-top: calc(2.4489795918vw + 20.8163265306px);
  }
}
.p-information-requirements__flow__item {
  display: flex;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__flow__item {
    display: block;
  }
}
.p-information-requirements__flow__item:first-child {
  padding-top: 0;
}
.p-information-requirements__flow__item:first-child .p-information-requirements__flow__title::before {
  content: none;
}
.p-information-requirements__flow__title {
  position: relative;
  display: flex;
  align-items: center;
  width: 100px;
  box-sizing: border-box;
  padding: 40px;
  background: #2e018a;
}
.p-information-requirements__flow__title::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  border-right: 2px dotted #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__flow__title {
    padding: calc(1.6326530612vw + 13.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__flow__title {
    width: 100%;
    justify-content: center;
  }
}
.p-information-requirements__flow__title .number {
  font-size: 2.2rem;
  color: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__flow__title .number {
    font-size: calc(0.1632653061vw + 1.9387755102rem);
  }
}
.p-information-requirements__flow__text {
  width: 100%;
  display: flex;
  background: #f5f5f5;
  padding: 40px;
  color: #111111;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__flow__text {
    padding: calc(1.6326530612vw + 13.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__flow__text {
    display: block;
  }
}
.p-information-requirements__flow__text .lead {
  width: 104px;
  margin-right: 40px;
  font-family: "UD新ゴ M";
  font-size: 1.8rem;
  line-height: 1.7;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__flow__text .lead {
    font-size: calc(0.1632653061vw + 1.5387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__flow__text .lead {
    width: 100%;
  }
}
.p-information-requirements__area__wrap {
  margin-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__area__wrap {
    margin-top: calc(2.8571428571vw + 24.2857142857px);
  }
}
.p-information-requirements__area__item-wrap {
  margin-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__area__item-wrap {
    margin-top: calc(2.8571428571vw + 24.2857142857px);
  }
}
.p-information-requirements__area__table {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__area__table {
    overflow: hidden;
    overflow-x: scroll;
  }
}
.p-information-requirements__area__table table {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__area__table table {
    width: 800px;
  }
}
.p-information-requirements__area__table th,
.p-information-requirements__area__table td {
  border-collapse: collapse;
  display: table-cell;
  padding: 20px 30px;
  font-size: 1.4rem;
  vertical-align: middle;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__area__table th,
.p-information-requirements__area__table td {
    font-size: calc(0vw + 1.4rem);
    padding: calc(0.8163265306vw + 6.9387755102px) calc(1.2244897959vw + 10.4081632653px);
  }
}
.p-information-requirements__area__table th {
  text-align: center;
  background: #707070;
  color: #ffffff;
  font-weight: 400;
  border: 1px solid #707070;
}
.p-information-requirements__area__table td {
  border: 1px solid #dddddd;
}
.p-information-requirements__area__table td.-center {
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__area__table {
    margin-top: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-information-requirements__area__item {
  margin-top: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__area__item {
    margin-top: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-information-requirements__contact {
  margin-top: 140px;
  padding: 50px 55px;
  border: 1px solid #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__contact {
    margin-top: calc(5.7142857143vw + 48.5714285714px);
    padding: calc(2.0408163265vw + 17.3469387755px) calc(2.2857142857vw + 18.4285714286px);
  }
}
.p-information-requirements__contact__title {
  font-weight: 700;
  font-size: 2rem;
  padding-bottom: 0.2em;
  position: relative;
  line-height: 1.4;
}
.p-information-requirements__contact__title::before {
  content: "";
  position: absolute;
  bottom: -0.5em;
  width: 2em;
  height: 3px;
  background: #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__contact__title {
    font-size: calc(0.1632653061vw + 1.7387755102rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__contact__title {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.p-information-requirements__contact__text {
  margin-top: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__contact__text {
    margin-top: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-information-requirements__contact__item {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__contact__item {
    margin-top: calc(1.6326530612vw + 13.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__contact__item {
    display: block;
  }
}
.p-information-requirements__contact__item .item {
  width: 49%;
  background: #f5f5f5;
  padding: 34px 34px 34px 50px;
}
@media only screen and (max-width: 1599px) {
  .p-information-requirements__contact__item .item {
    padding: calc(1.387755102vw + 11.7959183673px) calc(1.387755102vw + 11.7959183673px) calc(1.387755102vw + 11.7959183673px) calc(2.0408163265vw + 17.3469387755px);
  }
}
@media only screen and (max-width: 767px) {
  .p-information-requirements__contact__item .item {
    width: 100%;
    margin-bottom: 1em;
  }
}
.p-information-requirements__contact__item .item .c-text02 {
  position: relative;
}
.p-information-requirements__contact__item .item .c-text02::before {
  content: "・";
  color: #2e018a;
  position: absolute;
  left: -1em;
}

.p-needed-resource_contents {
  counter-reset: number 0;
  margin-bottom: calc(8.5714285714vw + 57.8571428571px);
}
.p-needed-resource_contents__block {
  margin-bottom: calc(3.2653061224vw + 22.7551020408px);
  position: relative;
}
.p-needed-resource_contents__block__title {
  font-size: 26px;
  margin-bottom: calc(1.6326530612vw + 8.8775510204px);
}
@media only screen and (max-width: 1599px) {
  .p-needed-resource_contents__block__title {
    font-size: calc(0.6530612245vw + 1.5551020408rem);
  }
}
.p-needed-resource_contents__block__text {
  font-size: 16px;
}
@media only screen and (max-width: 1599px) {
  .p-needed-resource_contents__block__text {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}

@media only screen and (min-width: 1600px) {
  .p-worklife-balance_data .c-container {
    width: calc(68.1632653061vw + 119.387755102px);
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
.p-worklife-balance_data__desc {
  max-width: 820px;
  margin: calc(2.8571428571vw + 24.2857142857px) auto calc(2.8571428571vw + 34.2857142857px);
}
.p-worklife-balance_data__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-0.8163265306vw + -6.9387755102px);
  margin-right: calc(-0.8163265306vw + -6.9387755102px);
  margin-bottom: calc(5.7142857143vw + 78.5714285714px);
}
.p-worklife-balance_data__block {
  width: 33.3%;
  padding: calc(0.8163265306vw + 6.9387755102px);
}
@media only screen and (max-width: 1023px) {
  .p-worklife-balance_data__block {
    width: 50%;
  }
}
.p-worklife-balance_data__block__inner {
  background: #f7f7f7;
  height: 100%;
  padding: calc(1.6326530612vw + 13.8775510204px) calc(0.8163265306vw + 6.9387755102px) calc(0.8163265306vw + 6.9387755102px) calc(1.6326530612vw + 13.8775510204px);
}
.p-worklife-balance_data__block__title {
  margin-bottom: 20px;
}
.p-worklife-balance_data__block__title span {
  font-size: calc(0.1632653061vw + 1.5387755102rem);
  display: inline-block;
  border-bottom: 2px solid #2e018a;
}
.p-worklife-balance_data__block__pict {
  margin-left: auto;
  margin-right: calc(0.8163265306vw + 6.9387755102px);
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_data__block__pict {
    width: 50%;
  }
}
.p-worklife-balance_data__block__num {
  color: #111111;
  font-size: calc(0.6530612245vw + 1.7551020408rem);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_data__block__num {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}
.p-worklife-balance_data__block__num strong {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #2e018a;
  font-size: calc(4.0816326531vw + 3.4693877551rem);
  line-height: 1;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_data__block__num strong {
    font-size: calc(1.6326530612vw + 3.387755102rem);
  }
}
.p-worklife-balance_data__block__num small {
  font-size: calc(1.6326530612vw + 4.387755102rem);
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_data__block__num small {
    font-size: calc(1.6326530612vw + 1.387755102rem);
  }
}
.p-worklife-balance_data__block__num .sub {
  color: #2e018a;
  font-size: calc(0.1632653061vw + 1.5387755102rem);
  position: relative;
}
.p-worklife-balance_data__block__num .total {
  font-size: calc(0.1632653061vw + 1.3387755102rem);
  background: #fff;
  border-radius: 9999px;
  display: inline-block;
  padding: calc(0.2448979592vw + 2.0816326531px) calc(0.4081632653vw + 3.4693877551px);
  margin-top: calc(0.4081632653vw + 8.4693877551px);
}
.p-worklife-balance_data__block__num .man {
  color: #0075c2;
}
.p-worklife-balance_data__block__num .woman {
  color: #ec6d74;
}
.p-worklife-balance_data__block__small {
  font-size: calc(0.1632653061vw + 0.9387755102rem);
  text-align: right;
  margin-top: calc(1.2244897959vw + 10.4081632653px);
  color: #999;
}

.p-worklife-balance_other {
  counter-reset: number;
  margin-bottom: calc(8.1632653061vw + 69.387755102px);
}
.p-worklife-balance_other__list {
  margin-top: calc(2.8571428571vw + 24.2857142857px);
  border-top: 1px solid #dddddd;
}
.p-worklife-balance_other__block {
  padding: calc(2.0408163265vw + 17.3469387755px) calc(1.6326530612vw + 13.8775510204px);
  display: flex;
  border-bottom: 1px solid #dddddd;
  counter-increment: number;
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_other__block {
    display: block;
  }
}
.p-worklife-balance_other__block dt {
  font-size: calc(0.1632653061vw + 1.7387755102rem);
  position: relative;
  font-weight: normal;
  padding-left: calc(0.8163265306vw + 26.9387755102px);
  width: 25%;
  min-width: 340px;
}
@media only screen and (max-width: 1023px) {
  .p-worklife-balance_other__block dt {
    min-width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_other__block dt {
    margin-bottom: 15px;
  }
}
.p-worklife-balance_other__block dt::before {
  content: counter(number, decimal-leading-zero);
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  left: 0;
  top: 0;
  font-size: calc(0.1632653061vw + 1.7387755102rem);
  color: #2e018a;
}
.p-worklife-balance_other__block dd {
  font-size: calc(0.1632653061vw + 1.3387755102rem);
}
.p-worklife-balance_other__certification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #2e018a;
  padding: calc(1.6326530612vw + 13.8775510204px) calc(2.8571428571vw + 24.2857142857px);
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_other__certification {
    display: block;
  }
}
.p-worklife-balance_other__certification__text {
  max-width: 610px;
  margin-right: calc(1.6326530612vw + 13.8775510204px);
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_other__certification__text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.p-worklife-balance_other__certification__title {
  font-size: calc(0.3265306122vw + 1.6775510204rem);
  position: relative;
  padding-bottom: calc(0.4081632653vw + 8.4693877551px);
  margin-bottom: calc(0.8163265306vw + 11.9387755102px);
}
.p-worklife-balance_other__certification__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #2e018a;
}

.p-worklife-balance_voice__list {
  margin-top: calc(3.2653061224vw + 27.7551020408px);
  margin-bottom: calc(4.8979591837vw + 41.6326530612px);
}
.p-worklife-balance_voice_block__worklife_body {
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
}
.p-worklife-balance_voice_block__worklife_body.is-opened {
  padding: calc(3.2653061224vw + 7.7551020408px) calc(5.7142857143vw + 8.5714285714px);
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_voice_block__worklife_body {
    display: block;
  }
}
.p-worklife-balance_voice_block__worklife_body__left {
  max-width: 240px;
  width: 35%;
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_voice_block__worklife_body__left {
    width: 100%;
    max-width: 100%;
    margin-bottom: calc(0.8163265306vw + 16.9387755102px);
  }
}
.p-worklife-balance_voice_block__worklife_body__right {
  margin-left: calc(3.2653061224vw + 7.7551020408px);
  max-width: 600px;
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .p-worklife-balance_voice_block__worklife_body__right {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.p-worklife-balance_voice_block__worklife_body__img {
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
}
.p-worklife-balance_voice_block__worklife_body__division {
  font-size: calc(0.0816326531vw + 1.1693877551rem);
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  line-height: 150%;
}
.p-worklife-balance_voice_block__worklife_body__name {
  font-size: calc(0.1632653061vw + 1.5387755102rem);
  margin-bottom: calc(0.4081632653vw + 8.4693877551px);
}
.p-worklife-balance_voice_block__worklife_body__info {
  font-size: calc(0.0816326531vw + 1.0693877551rem);
  background: #ffffff;
  border-radius: 2px;
  text-align: center;
}
.p-worklife-balance_voice_block__worklife_body__text {
  font-size: calc(0.1632653061vw + 1.1387755102rem);
}
.p-worklife-balance_voice_block__worklife_body__note {
  font-size: calc(0.0816326531vw + 1.0693877551rem);
  margin-top:calc(0.8163265306vw + 6.9387755102px);
  line-height: 150%;
}

.p-life-on-base_map {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 1023px) {
  .p-life-on-base_map {
    display: none;
  }
}
.p-life-on-base_map__name {
  background: #ffffff;
  border: 1px solid #2e018a;
  border-radius: 30px;
  display: inline-block;
  padding: calc(0.4081632653vw + 3.4693877551px) calc(0.6530612245vw + 4.5510204082px);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: 0.4s;
}
.is-pc .p-life-on-base_map__name:hover {
  background: #2e018a;
  color: #ffffff;
}
.p-life-on-base_map__name::before {
  content: "";
  position: absolute;
}
.p-life-on-base_map__name::after {
  content: "";
  position: absolute;
  width: calc(0.5208333333vw + 6.6666666667px);
  height: calc(0.5208333333vw + 6.6666666667px);
  background: #2e018a;
  border-radius: 50%;
}
.p-life-on-base_map__name.-itami {
  left: 34.7%;
  top: 49%;
}
.p-life-on-base_map__name.-itami::before {
  left: 50%;
  top: 100%;
  border-left: 1px dotted #2e018a;
  border-bottom: 1px dotted #2e018a;
  width: 55px;
  height: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-itami::before {
    width: calc(3.4722222222vw + -0.5555555556px);
    height: calc(3.4722222222vw + 24.4444444444px);
  }
}
.p-life-on-base_map__name.-itami::after {
  right: -45px;
  bottom: -85px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-itami::after {
    right: calc(-3.4722222222vw + 10.5555555556px);
    bottom: calc(-3.4722222222vw + -29.4444444444px);
  }
}
.p-life-on-base_map__name.-osaka {
  left: 42%;
  top: 68.5%;
}
.p-life-on-base_map__name.-osaka::before {
  left: 50%;
  top: -60px;
  width: 55px;
  height: 60px;
  border-left: 1px dotted #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-osaka::before {
    top: calc(-5.2083333333vw + 23.3333333333px);
    width: calc(3.4722222222vw + -0.5555555556px);
    height: calc(5.2083333333vw + -23.3333333333px);
  }
}
.p-life-on-base_map__name.-osaka::after {
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-osaka::after {
    top: calc(-5.2083333333vw + 23.3333333333px);
  }
}
.p-life-on-base_map__name.-yokkaichi {
  left: 48%;
  top: 52%;
}
.p-life-on-base_map__name.-yokkaichi::before {
  left: 50%;
  bottom: -60px;
  width: 55px;
  height: 60px;
  border-left: 1px dotted #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-yokkaichi::before {
    bottom: calc(-5.2083333333vw + 23.3333333333px);
    width: calc(3.4722222222vw + -0.5555555556px);
    height: calc(5.2083333333vw + -23.3333333333px);
  }
}
.p-life-on-base_map__name.-yokkaichi::after {
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-yokkaichi::after {
    bottom: calc(-5.2083333333vw + 23.3333333333px);
  }
}
.p-life-on-base_map__name.-yokohama {
  left: 67.8%;
  top: 62%;
}
.p-life-on-base_map__name.-yokohama::before {
  left: 50%;
  top: -60px;
  width: 55px;
  height: 60px;
  border-left: 1px dotted #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-yokohama::before {
    top: calc(-5.2083333333vw + 23.3333333333px);
    width: calc(3.4722222222vw + -0.5555555556px);
    height: calc(5.2083333333vw + -23.3333333333px);
  }
}
.p-life-on-base_map__name.-yokohama::after {
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-yokohama::after {
    top: calc(-5.2083333333vw + 23.3333333333px);
  }
}
.p-life-on-base_map__name.-hitachi {
  left: 83.5%;
  top: 51%;
}
.p-life-on-base_map__name.-hitachi::before {
  left: -70px;
  top: 0;
  border-left: 1px dotted #2e018a;
  border-bottom: 1px dotted #2e018a;
  width: 70px;
  height: 50px;
  transform: translateY(-50%) translateX(0);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-hitachi::before {
    left: calc(-2.6041666667vw + -28.3333333333px);
    width: calc(2.6041666667vw + 28.3333333333px);
    height: calc(3.4722222222vw + -5.5555555556px);
  }
}
.p-life-on-base_map__name.-hitachi::after {
  left: -70px;
  top: -40px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-hitachi::after {
    left: calc(-2.6041666667vw + -28.3333333333px);
    top: calc(-3.4722222222vw + 15.5555555556px);
  }
}
.p-life-on-base_map__name.-tochigi {
  left: 78.7%;
  top: 44%;
}
.p-life-on-base_map__name.-tochigi::before {
  left: -70px;
  top: 0;
  border-bottom: 1px dotted #2e018a;
  width: 70px;
  height: 50px;
  transform: translateY(-50%) translateX(0);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-tochigi::before {
    left: calc(-2.6041666667vw + -28.3333333333px);
    width: calc(2.6041666667vw + 28.3333333333px);
    height: calc(3.4722222222vw + -5.5555555556px);
  }
}
.p-life-on-base_map__name.-tochigi::after {
  left: -70px;
  bottom: calc(50% - 8px);
  transform: translateX(-50%) translateY(50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-tochigi::after {
    left: calc(-2.6041666667vw + -28.3333333333px);
  }
}
.p-life-on-base_map__name.-yamanashi {
  left: 61.9%;
  top: 39.8%;
}
.p-life-on-base_map__name.-yamanashi::before {
  left: 50%;
  bottom: -110px;
  width: 55px;
  height: 110px;
  border-left: 1px dotted #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-yamanashi::before {
    bottom: calc(-5.2083333333vw + -26.6666666667px);
    width: calc(3.4722222222vw + -0.5555555556px);
    height: calc(5.2083333333vw + 26.6666666667px);
  }
}
.p-life-on-base_map__name.-yamanashi::after {
  left: 50%;
  bottom: -110px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-yamanashi::after {
    bottom: calc(-5.2083333333vw + -26.6666666667px);
  }
}

.p-life-on-base_map__name.-aichi {
  left: 53%;
  top: 66%;
}
.p-life-on-base_map__name.-aichi::before {
  left: 50%;
  top: -60px;
  width: 55px;
  height: 60px;
  border-left: 1px dotted #2e018a;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-aichi::before {
    top: calc(-3.4722222222vw + -4.4444444444px);
    width: calc(3.4722222222vw + -0.5555555556px);
    height: calc(3.4722222222vw + 4.4444444444px);
  }
}
.p-life-on-base_map__name.-aichi::after {
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base_map__name.-aichi::after {
    top: calc(-2.9513888889vw + -12.7777777778px);
  }
}

.p-life-on-base {
  margin: calc(-4.8979591837vw + -31.6326530612px) 0 calc(8.1632653061vw + 69.387755102px);
}
.p-life-on-base__acco_title {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-life-on-base__title_img {
    width: 50px;
  }
}
.p-life-on-base__title {
  margin-left: calc(2.0408163265vw + 17.3469387755px);
}
.p-life-on-base__title__area {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(0.0816326531vw + 1.1693877551rem);
  color: #2e018a;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.p-life-on-base__body {
  height: 0;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.p-life-on-base__body::before {
  content: "VOICE";
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 130px;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .p-life-on-base__body::before {
    font-size: calc(2.4489795918vw + 9.0816326531rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-life-on-base__body::before {
    font-size: calc(1.6326530612vw + 4.387755102rem);
  }
}
.p-life-on-base__body.is-opened {
  padding: calc(3.2653061224vw + 17.7551020408px) calc(9.7959183673vw + -16.7346938776px);
}
@media only screen and (max-width: 767px) {
  .p-life-on-base__body {
    display: block;
  }
}
.p-life-on-base__comment_list {
  position: relative;
  z-index: 10;
  display: flex;
}
.p-life-on-base__comment_list.-right {
  justify-content: flex-end;
}
.p-life-on-base__comment_list.-left {
  justify-content: flex-start;
}
.p-life-on-base__comment_list__img {
  margin-bottom: 10px;
}
.p-life-on-base__comment_list__img img {
  border-radius: 10px;
}
.p-life-on-base__comment_list__block {
  margin-bottom: calc(0.8163265306vw + 16.9387755102px);
}
.-left .p-life-on-base__comment_list__block {
  display: flex;
}
.p-life-on-base__comment_list__thumb {
  margin-right: 30px;
  width: 90px;
}
@media only screen and (max-width: 767px) {
  .p-life-on-base__comment_list__thumb {
    min-width: 70px;
    max-width: 70px;
  }
}
.p-life-on-base__comment_list__fukidashi {
  padding: calc(1.2244897959vw + 15.4081632653px);
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}
.p-life-on-base__comment_list__fukidashi::before {
  content: "";
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.-left .p-life-on-base__comment_list__fukidashi {
  background: #ffffff;
  max-width: 520px;
}
.-left .p-life-on-base__comment_list__fukidashi::before {
  left: -10px;
  border-width: 10px 20px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}
.-right .p-life-on-base__comment_list__fukidashi {
  max-width: 350px;
  margin-left: auto;
  background: #e2ebef;
}
.-right .p-life-on-base__comment_list__fukidashi::before {
  right: -10px;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #e2ebef;
}

.p-diver-city__border_block {
  border: 1px solid #dddddd;
  padding: calc(2.0408163265vw + 12.3469387755px);
  margin-bottom: calc(3.2653061224vw + 27.7551020408px);
}
.p-diver-city__border_block__title {
  font-size: calc(0.3265306122vw + 1.4775510204rem);
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
  text-align: center;
}
.p-diver-city__border_block__title span {
  color: #2e018a;
  padding: 0 calc(0.4081632653vw + 3.4693877551px);
}
.p-diver-city__border_block__list {
  max-width: 500px;
  margin: 0 auto;
}
.p-diver-city__border_block__list li {
  position: relative;
  counter-increment: list;
  padding-left: calc(1.6326530612vw + 23.8775510204px);
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
}
.p-diver-city__border_block__list li::before {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: #2e018a;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: calc(0.1632653061vw + 1.1387755102rem);
  background: #f7f7f7;
  width: calc(0.3265306122vw + 24.7755102041px);
  height: calc(0.3265306122vw + 24.7755102041px);
  border-radius: 50%;
  text-align: center;
}

.p-diver-city_policy {
  margin-bottom: calc(6.5306122449vw + 55.5102040816px);
}
.p-diver-city_policy__block {
  margin-top: calc(2.4489795918vw + 20.8163265306px);
  border: 1px solid #dddddd;
  padding: calc(2.4489795918vw + 20.8163265306px) calc(4.8979591837vw + 1.6326530612px);
}
.p-diver-city_policy__block__title {
  font-size: calc(0.1632653061vw + 1.7387755102rem);
  text-align: center;
  line-height: 2;
  margin-bottom: calc(1.2244897959vw + 25.4081632653px);
}
.p-diver-city_policy__block__title span {
  color: #2e018a;
}
.p-diver-city_policy__block__list li {
  background: #f7f7f7;
  padding: calc(1.2244897959vw + 10.4081632653px) calc(4.0816326531vw + 34.693877551px);
  margin-bottom: calc(0.4081632653vw + 8.4693877551px);
  position: relative;
  counter-increment: list;
}
.p-diver-city_policy__block__list li::before {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  left: calc(2.0408163265vw + 17.3469387755px);
  top: 50%;
  transform: translateY(-50%);
  color: #2e018a;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-diver-city_system {
  margin-bottom: calc(6.5306122449vw + 55.5102040816px);
  position: relative;
  z-index: 1;
}
.p-diver-city_system::before {
  content: "";
  display: block;
  background-image: url(/career/fresh/common/img/environment/diver-city/system_hero_bg.png);
  background-size: cover;
  width: 930px;
  height: 342px;
  position: absolute;
  z-index: -1;
  top: -100px;
  right: 0;
}
@media only screen and (max-width: 3840px) and (min-width: 320px) and (min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
  .p-diver-city_system::before {
    background-image: url(/career/fresh/common/img/environment/diver-city/system_hero_bg@2x.png);
  }
}
@media only screen and (max-width: 1599px) {
  .p-diver-city_system::before {
    top: calc(-4.0816326531vw + -34.693877551px);
    width: calc(49.7959183673vw + 133.2653061224px);
    height: calc(18.2857142857vw + 49.4285714286px);
  }
}
.p-diver-city_system__list {
  margin-bottom: calc(2.0408163265vw + 17.3469387755px);
}
.p-diver-city_system__block {
  background: #f7f7f7;
  padding: calc(1.2244897959vw + 10.4081632653px);
  margin-bottom: 5px;
}
.p-diver-city_system__block__title {
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
}

.p-diver-city_womans {
  margin-bottom: calc(7.3469387755vw + 62.4489795918px);
}
.p-diver-city_womans__img_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-diver-city_womans__img_list {
    display: block;
    text-align: center;
  }
}
.p-diver-city_womans__img_list__arrow {
  padding: calc(0.4897959184vw + 4.1632653061px);
}
@media only screen and (max-width: 767px) {
  .p-diver-city_womans__img_list__arrow {
    transform-origin: center;
    transform: rotate(90deg);
    display: inline-block;
    padding: 20px;
  }
}

.p-education_philosophy {
  margin-bottom: calc(6.5306122449vw + 55.5102040816px);
}
.p-education_philosophy__contents {
  margin-bottom: calc(2.4489795918vw + 20.8163265306px);
}
.p-education_philosophy__body {
  display: flex;
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
@media only screen and (max-width: 767px) {
  .p-education_philosophy__body {
    flex-direction: column-reverse;
  }
}
.p-education_philosophy__body__text {
  max-width: 510px;
  margin-right: calc(3.2653061224vw + 17.7551020408px);
}
@media only screen and (max-width: 1023px) {
  .p-education_philosophy__body__text {
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .p-education_philosophy__body__text {
    margin-right: 0;
    margin-bottom: calc(0.8163265306vw + 16.9387755102px);
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-education_philosophy__body__img {
    margin-bottom: calc(1.6326530612vw + 23.8775510204px);
  }
}
.p-education_philosophy__circle_list {
  display: flex;
  justify-content: space-around;
  margin-bottom: calc(1.2244897959vw + 25.4081632653px);
}
@media only screen and (max-width: 767px) {
  .p-education_philosophy__circle_list {
    display: block;
  }
}
.p-education_philosophy__circle_list li {
  width: calc(12.0192307692vw + 87.6923076923px);
  height: calc(12.0192307692vw + 87.6923076923px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2e018a;
  border-radius: 50%;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}
@media only screen and (max-width: 1599px) {
  .p-education_philosophy__circle_list li {
    font-size: calc(0.3265306122vw + 1.2775510204rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-education_philosophy__circle_list li {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: calc(0.4081632653vw + 13.4693877551px);
    padding: calc(1.2244897959vw + 10.4081632653px);
  }
}
.p-education_philosophy__circle_list li span {
  color: #2e018a;
}
.p-education_philosophy__summary {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: calc(4.8979591837vw + 41.6326530612px);
  line-height: 1.2;
}
@media only screen and (max-width: 1599px) {
  .p-education_philosophy__summary {
    font-size: calc(0.8163265306vw + 1.093877551rem);
  }
}
.p-education_philosophy__summary span {
  display: inline-block;
  margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  border-bottom: 1px solid #111111;
}

.p-education_grobal {
  margin-bottom: calc(6.5306122449vw + 55.5102040816px);
}

.p-education_training {
  margin-bottom: calc(7.3469387755vw + 62.4489795918px);
}
.p-education_training__block {
  background: #f5f5f5;
  padding: calc(1.2244897959vw + 10.4081632653px);
  display: flex;
  margin-bottom: calc(0.8163265306vw + 16.9387755102px);
}
.p-education_training__block__circle {
  width: calc(4.0816326531vw + 74.693877551px);
  height: calc(4.0816326531vw + 74.693877551px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2e018a;
  color: #ffffff;
  border-radius: 50%;
  margin-right: calc(1.6326530612vw + 13.8775510204px);
  flex-shrink: 0;
}
.p-education_training__block__circle .month {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .p-education_training__block__circle .month {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
.p-education_training__block__circle .month span {
  font-size: 2.6rem;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .p-education_training__block__circle .month span {
    font-size: calc(0.4897959184vw + 1.8163265306rem);
  }
}
.p-crosstalk_member {
  margin-bottom: 170px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member {
    margin-bottom: calc(6.5306122449vw + 65.5102040816px);
  }
}
.p-crosstalk_member .c-title01 {
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member .c-title01 {
    padding-bottom: calc(0.8163265306vw + 6.9387755102px);
  }
}
.p-crosstalk_member .c-title01::after {
  content: "";
  display: block;
  width: 2px;
  height: 70px;
  background-color: #2e018a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member .c-title01::after {
    height: calc(1.6326530612vw + 43.8775510204px);
  }
}
.p-crosstalk_member__row {
  display: flex;
  flex-wrap: wrap;
}
.p-crosstalk_member__item {
  width: 50%;
  border: 1px solid #dddddd;
  margin-left: -1px;
  margin-top: -1px;
  padding: 60px 60px 55px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item {
    padding: calc(2.4489795918vw + 20.8163265306px) calc(3.6734693878vw + 1.2244897959px) calc(2.0408163265vw + 22.3469387755px);
  }
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_member__item {
    width: 100%;
    margin-left: 0;
  }
}
.p-crosstalk_member__item::before {
  content: "";
  display: block;
  position: absolute;
  left: -10%;
  top: 0;
  transform-origin: 32% center;
  transition: transform 0s;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  transform: rotate(-36.75deg);
}
.p-crosstalk_member__item__num {
  position: absolute;
  top: 15px;
  left: 20px;
  -webkit-text-stroke: 1px #2e018a;
  color: #fff;
  font-size: 2.5rem;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item__num {
    font-size: calc(0.4081632653vw + 1.8469387755rem);
    top: calc(0.5714285714vw + 0.5857142857rem);
    left: calc(0.8163265306vw + 6.9387755102px);
  }
}
.p-crosstalk_member__item__head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item__head {
    margin-bottom: calc(1.2244897959vw + 10.4081632653px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-crosstalk_member__item__head {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_member__item__head {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
}
.p-crosstalk_member__item__head .img {
  margin-right: 40px;
  position: relative;
  z-index: 1;
  min-width: 140px;
  max-width: 140px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item__head .img {
    margin-right: calc(3.2653061224vw + -12.2448979592px);
    min-width: calc(3.6734693878vw + 81.2244897959px);
    max-width: calc(3.6734693878vw + 81.2244897959px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-crosstalk_member__item__head .img {
    margin-right: 0;
    margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  }
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_member__item__head .img {
    margin-right: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-crosstalk_member__item__head .img::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #6241a7;
  z-index: -1;
}
.p-crosstalk_member__item__head .profile .division {
  color: #2e018a;
  font-size: 1.4rem;
  font-family: "UD新ゴ M";
  line-height: 1.57;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item__head .profile .division {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-crosstalk_member__item__head .profile .name {
  display: inline-block;
  padding: 8px;
  border-radius: 2px;
  color: #fff;
  background-color: #111111;
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item__head .profile .name {
    font-size: calc(0.4081632653vw + 1.6469387755rem);
  }
}
.p-crosstalk_member__item__head .profile .info {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_member__item__head .profile .info {
    font-size: calc(0.1632653061vw + 1.0387755102rem);
  }
}
.p-crosstalk_member__note {
  text-align: right;
  margin-top: 1em;
  color: #999;
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_member__note {
    text-align: left;
  }
}

.p-crosstalk_section {
  margin-bottom: 180px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section {
    margin-bottom: calc(6.5306122449vw + 75.5102040816px);
  }
}
.p-crosstalk_section__head {
  width: 91vw;
  height: 470px;
  overflow: hidden;
  margin-left: auto;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__head {
    height: calc(22.0408163265vw + 117.3469387755px);
  }
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_section__head {
    width: 100vw;
  }
}
.p-crosstalk_section__head::after {
  content: "";
  display: block;
  width: 91vw;
  height: 110px;
  background-color: #fff;
  position: absolute;
  left: -9vw;
  bottom: 0;
  border-radius: 0 10px 0 0;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__head::after {
    height: calc(5.7142857143vw + 18.5714285714px);
  }
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_section__head::after {
    width: 98vw;
    left: -2vw;
  }
}
.p-crosstalk_section__head.-left {
  margin-left: 0;
  margin-right: auto;
}
.p-crosstalk_section__head.-left::after {
  left: auto;
  right: -9vw;
  border-radius: 10px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .p-crosstalk_section__head.-left::after {
    right: -2vw;
  }
}
.p-crosstalk_section__head__pic {
  width: 100%;
  height: 100%;
}
.p-crosstalk_section__head__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.p-crosstalk_section__head__en {
  font-size: 12rem;
  letter-spacing: 0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  position: absolute;
  top: 265px;
  left: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__head__en {
    font-size: calc(6.5306122449vw + 1.5510204082rem);
    top: calc(11.4285714286vw + 82.1428571429px);
  }
}
.p-crosstalk_section__head.-left .p-crosstalk_section__head__en {
  left: auto;
  right: 0;
}
.p-crosstalk_section__body {
  max-width: 925px;
  margin: 0 auto;
}
.p-crosstalk_section__heading {
  margin-bottom: 65px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__heading {
    margin-bottom: calc(2.4489795918vw + 25.8163265306px);
  }
}
.p-crosstalk_section__heading .sub {
  display: flex;
  color: #2e018a;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__heading .sub {
    margin-bottom: calc(1.2244897959vw + 10.4081632653px);
  }
}
.p-crosstalk_section__heading .sub .en {
  font-size: 1.6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__heading .sub .en {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
  }
}
.p-crosstalk_section__heading .sub .en::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #707070;
  transform: rotate(-40deg);
  margin: 0 10px;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__heading .sub .en::after {
    width: calc(0.4081632653vw + 13.4693877551px);
    margin: 0 calc(0.4081632653vw + 3.4693877551px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-crosstalk_section__heading .sub .en::after {
    display: none;
  }
}
.p-crosstalk_section__heading .main {
  font-size: 2.6rem;
  font-family: "UD新ゴ M";
  color: #111111;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1599px) {
  .p-crosstalk_section__heading .main {
    font-size: calc(0.4897959184vw + 18.1632653061px);
  }
}

.p-office-tour_contents {
  position: relative;
  padding-top: 130px;
  margin-bottom: calc(8.1632653061vw + 69.387755102px);
}
@media only screen and (max-width: 1599px) {
  .p-office-tour_contents {
    padding-top: calc(4.8979591837vw + 51.6326530612px);
  }
}
.p-office-tour_contents::before {
  content: "Office tour";
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: calc(0.8163265306vw + 16.9387755102px);
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5e5e5;
  font-size: 130px;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 1599px) {
  .p-office-tour_contents::before {
    font-size: calc(6.5306122449vw + 2.5510204082rem);
  }
}
.p-office-tour_contents__slider {
  cursor: grab;
}
.p-office-tour_contents__slider__main {
  transition: all 0.3s ease;
  transform: scale(0.8);
  margin-bottom: calc(3.2653061224vw + 27.7551020408px);
}
.p-office-tour_contents__slider__main.swiper-slide-active {
  transform: scale(1);
}
.p-office-tour_contents__slider__tag {
  color: #2e018a;
  font-size: 16px;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: calc(0.4081632653vw + 3.4693877551px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1599px) {
  .p-office-tour_contents__slider__tag {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.swiper-slide-active .p-office-tour_contents__slider__tag {
  opacity: 1;
}
.p-office-tour_contents__slider__text {
  margin-top: calc(-1.2244897959vw + -25.4081632653px);
  opacity: 0;
  transition: all 0.3s ease;
}
.swiper-slide-active .p-office-tour_contents__slider__text {
  opacity: 1;
}
.p-office-tour_contents__slider__text .title {
  text-align: center;
  font-size: 22px;
  margin-bottom: calc(1.2244897959vw + 10.4081632653px);
}
@media only screen and (max-width: 1599px) {
  .p-office-tour_contents__slider__text .title {
    font-size: calc(0.6530612245vw + 1.1551020408rem);
  }
}
.p-office-tour_contents__slider__text .title span {
  display: inline-block;
  padding: calc(0.8163265306vw + 6.9387755102px);
  background: #2e018a;
  color: #fff;
}
.p-office-tour_contents__slider__text p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 1599px) {
  .p-office-tour_contents__slider__text p {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.p-office-tour_contents__slider__thumb {
  overflow: hidden;
  margin: 0 calc(2.0408163265vw + 17.3469387755px);
}
.p-office-tour_contents__slider__thumb .swiper-slide {
  opacity: 0.5;
}
.p-office-tour_contents__slider__thumb .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.p-candidate-needs_section {
  margin-bottom: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs_section {
    margin-bottom: calc(8.1632653061vw + 69.387755102px);
  }
}
.p-candidate-needs__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-candidate-needs__block {
  color: #0075c2;
  background-color: #edf5fb;
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  padding: 70px 50px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid transparent;
  transition: border 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block {
    width: calc(50% - calc(2.6041666667vw + -21.640625px));
    padding: calc(2.8571428571vw + 24.2857142857px) calc(2.0408163265vw + 17.3469387755px);
    margin-bottom: calc(0.8163265306vw + 16.9387755102px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__block {
    width: 100%;
  }
}
.p-candidate-needs__block.-green {
  color: #00a9ba;
  background-color: #edf9fa;
}
.p-candidate-needs__block.-purple {
  color: #7b639f;
  background-color: #f6f4f8;
}
.p-candidate-needs__block:hover {
  border-color: currentColor;
}
.p-candidate-needs__block__num {
  font-size: 8rem;
  letter-spacing: 0.03;
  -webkit-text-stroke: 1px #0075c2;
  color: #fff;
  margin-right: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block__num {
    font-size: calc(6.0763888889vw + -1.7161458333rem);
    margin-right: calc(2.0408163265vw + 7.3469387755px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__block__num {
    font-size: calc(3.6734693878vw + 2.1224489796rem);
  }
}
.p-candidate-needs__block.-green .p-candidate-needs__block__num {
  -webkit-text-stroke: 1px #00a9ba;
}
.p-candidate-needs__block.-purple .p-candidate-needs__block__num {
  -webkit-text-stroke: 1px #7b639f;
}
.p-candidate-needs__block__text {
  font-family: "UD新ゴ M";
  color: #111111;
  font-size: 2.2rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block__text {
    font-size: calc(0.4897959184vw + 1.4163265306rem);
  }
}
.p-candidate-needs__block__text span {
  color: #0075c2;
  font-size: 3rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block__text span {
    font-size: calc(0.8163265306vw + 1.693877551rem);
  }
}
.p-candidate-needs__block.-green .p-candidate-needs__block__text span {
  color: #00a9ba;
}
.p-candidate-needs__block.-purple .p-candidate-needs__block__text span {
  color: #7b639f;
}
.p-candidate-needs__block__arrow {
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 60px;
  font-size: 2.1rem;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block__arrow {
    font-size: calc(0.3265306122vw + 1.5775510204rem);
  }
}
.p-candidate-needs__block__arrow img,
.p-candidate-needs__block__arrow svg {
  z-index: 2;
  width: 1em;
  height: 1em;
  overflow: hidden;
  position: absolute;
  bottom: 9px;
  right: 12px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block__arrow img,
.p-candidate-needs__block__arrow svg {
    bottom: calc(0.4081632653vw + 2.4693877551px);
    right: calc(0.4081632653vw + 5.4693877551px);
  }
}
.p-candidate-needs__block__arrow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #0075c2 transparent;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__block__arrow::after {
    border-width: 0 0 calc(1.6326530612vw + 33.8775510204px) calc(2.2857142857vw + 43.4285714286px);
  }
}
.p-candidate-needs__block.-green .p-candidate-needs__block__arrow::after {
  border-color: transparent transparent #00a9ba transparent;
}
.p-candidate-needs__block.-purple .p-candidate-needs__block__arrow::after {
  border-color: transparent transparent #7b639f transparent;
}
.p-candidate-needs__overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  cursor: pointer;
}
.p-candidate-needs__close {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  color: #0075c2;
  z-index: 9998;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__close {
    top: calc(1.2244897959vw + 10.4081632653px);
    right: calc(1.2244897959vw + 10.4081632653px);
    width: calc(0.8979591837vw + 21.6326530612px);
    height: calc(0.8979591837vw + 21.6326530612px);
  }
}
.p-candidate-needs__close[data-color=green] {
  color: #00a9ba;
}
.p-candidate-needs__close[data-color=purple] {
  color: #7b639f;
}
.p-candidate-needs__close::before, .p-candidate-needs__close::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 0%;
  left: 48%;
}
.p-candidate-needs__close::before {
  transform: rotate(45deg);
}
.p-candidate-needs__close::after {
  transform: rotate(-45deg);
}
.p-candidate-needs__modal {
  display: none;
  width: 1200px;
  height: 80vh;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  border: 1px solid #0075c2;
  background-color: #edf5fb;
  overflow: scroll;
  z-index: 9999;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal {
    width: calc(69.7959183673vw + 83.2653061224px);
  }
}
.p-candidate-needs__modal.-green {
  border-color: #00a9ba;
  background-color: #edf9fa;
}
.p-candidate-needs__modal.-purple {
  border-color: #7b639f;
  background-color: #f6f4f8;
}
.p-candidate-needs__modal__head {
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 30px 0;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__head {
    padding: calc(1.2244897959vw + 10.4081632653px) 0;
  }
}
.p-candidate-needs__modal__head .num {
  -webkit-text-stroke: 1px #0075c2;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__head .num {
    font-size: calc(0.9795918367vw + 1.9326530612rem);
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__head .num {
  -webkit-text-stroke: 1px #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__head .num {
  -webkit-text-stroke: 1px #7b639f;
}
.p-candidate-needs__modal__head .title {
  font-family: "UD新ゴ M";
  color: #111111;
  font-size: 2.2rem;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__head .title {
    font-size: calc(0.4897959184vw + 1.4163265306rem);
  }
}
.p-candidate-needs__modal__head .title span {
  color: #0075c2;
  font-size: 3rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__head .title span {
    font-size: calc(0.8163265306vw + 1.693877551rem);
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__head .title span {
  color: #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__head .title span {
  color: #7b639f;
}
.p-candidate-needs__modal__head .sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-candidate-needs__modal__head .sp {
    display: block;
  }
}
.p-candidate-needs__modal__body {
  padding: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body {
    padding: calc(3.6734693878vw + 11.2244897959px);
  }
}
.p-candidate-needs__modal__body .result {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .result {
    align-items: center;
  }
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__modal__body .result {
    align-items: center;
  }
}
.p-candidate-needs__modal__body .result_percent::after {
  content: "";
  display: block;
  height: 60px;
  width: 1px;
  border-right: 1px dotted #0075c2;
  margin: 15px auto 0;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .result_percent::after {
    height: calc(2.4489795918vw + 20.8163265306px);
    margin: calc(0.8163265306vw + 1.9387755102px) auto 0;
  }
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__modal__body .result_percent::after {
    display: none;
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__body .result_percent::after {
  border-color: #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__body .result_percent::after {
  border-color: #7b639f;
}
.p-candidate-needs__modal__body .result_percent .fukidashi {
  color: #fff;
  background-color: #0075c2;
  border-radius: 999px;
  text-align: center;
  padding: 10px;
  line-height: 1;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .result_percent .fukidashi {
    font-size: calc(0.6530612245vw + 0.7551020408rem);
    padding: calc(0.4081632653vw + 3.4693877551px);
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__body .result_percent .fukidashi {
  background-color: #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__body .result_percent .fukidashi {
  background-color: #7b639f;
}
.p-candidate-needs__modal__body .result_percent .num {
  font-size: 5rem;
  line-height: 1;
  color: #0075c2;
  white-space: nowrap;
  text-align: center;
  min-width: 5.1em;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .result_percent .num {
    font-size: calc(2.4489795918vw + 1.0816326531rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-candidate-needs__modal__body .result_percent .num {
    min-width: 4.4em;
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__body .result_percent .num {
  color: #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__body .result_percent .num {
  color: #7b639f;
}
.p-candidate-needs__modal__body .result_percent .num span {
  font-size: 12rem;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .result_percent .num span {
    font-size: calc(6.5306122449vw + 1.5510204082rem);
  }
}
.p-candidate-needs__modal__body .result_percent.-no::after {
  border-color: #898989 !important;
}
.p-candidate-needs__modal__body .result_percent.-no .fukidashi {
  background-color: #898989 !important;
}
.p-candidate-needs__modal__body .result_percent.-no .num {
  color: #898989 !important;
}
.p-candidate-needs__modal__body .result_graph {
  margin: 0 95px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .result_graph {
    margin: 0 calc(6.1224489796vw + -2.9591836735px);
  }
}
.p-candidate-needs__modal__body .result_graph.js-anim_elm {
  opacity: 0;
  transition: 1.2s opacity 2.4s;
}
.p-candidate-needs__modal__body .result_graph.js-anim_elm.is-act {
  opacity: 1;
}
.p-candidate-needs__modal__body .comment_row {
  display: flex;
  margin: 0 -58px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_row {
    margin: 0 calc(-4.7346938776vw + 17.7551020408px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__modal__body .comment_row {
    flex-direction: column;
    margin: 0;
  }
}
.p-candidate-needs__modal__body .comment_col {
  width: 50%;
  padding: 0 58px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_col {
    padding: 0 calc(4.7346938776vw + -17.7551020408px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__modal__body .comment_col {
    width: 100%;
    padding: 0;
    margin-bottom: calc(2.0408163265vw + 17.3469387755px);
  }
}
.p-candidate-needs__modal__body .comment_title {
  display: none;
  color: #0075c2;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-size: calc(2.0408163265vw + 1.7346938776rem);
  padding: calc(0.8163265306vw + 6.9387755102px) 0;
  margin-bottom: calc(2.0408163265vw + 17.3469387755px);
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .p-candidate-needs__modal__body .comment_title {
    display: block;
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__body .comment_title {
  color: #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__body .comment_title {
  color: #7b639f;
}
.p-candidate-needs__modal__body .comment_title.-no {
  color: #898989 !important;
}
.p-candidate-needs__modal__body .comment_after {
  background-color: #ffffff;
  padding: 30px 40px;
  margin-top: 50px;
  position: relative;
  border-radius: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_after {
    padding: calc(0.8163265306vw + 21.9387755102px) calc(2.0408163265vw + 12.3469387755px) calc(1.2244897959vw + 15.4081632653px);
    margin-top: calc(1.6326530612vw + 23.8775510204px);
  }
}
.p-candidate-needs__modal__body .comment_after .en {
  left: 0;
  text-transform: uppercase;
  top: 30px;
  position: absolute;
  background-color: #2e018a;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.9em 1.5em;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_after .en {
    top: calc(0.8163265306vw + 16.9387755102px);
    font-size: calc(0.3265306122vw + 0.7775510204rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-candidate-needs__modal__body .comment_after .en {
    top: 0;
    left: 20px;
    transform: translateY(-50%);
  }
}
.p-candidate-needs__modal__body .comment_after .title {
  line-height: 1.5;
  font-size: 2rem;
  display: flex;
  padding-left: 125px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_after .title {
    padding-left: calc(5.306122449vw + 40.1020408163px);
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-candidate-needs__modal__body .comment_after .title {
    padding-left: 0;
  }
}
.p-candidate-needs__modal__body .comment_after .title span {
  border-bottom: 1px solid #2e018a;
}
.p-candidate-needs__modal__body .comment_after .c-text02 {
  margin-bottom: 0;
  line-height: 1.75;
}
.p-candidate-needs__modal__body .comment_after__container {
  margin-top: 20px;
  display: flex;
}
@media only screen and (max-width: 567px) {
  .p-candidate-needs__modal__body .comment_after__container {
    align-items: flex-start;
  }
}
.p-candidate-needs__modal__body .comment_after__container > * {
  width: 100%;
}
.p-candidate-needs__modal__body .comment_after__container .text {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_after__container .text {
    padding: calc(1.2244897959vw + 10.4081632653px);
    font-size: calc(0.2448979592vw + 1.2081632653rem);
  }
}
.p-candidate-needs__modal__body .comment_after__container .text::after {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: -1em;
  margin-top: -0.5em;
  border-right: 1em solid #fff;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
}
@media only screen and (max-width: 567px) {
  .p-candidate-needs__modal__body .comment_after__container .text::after {
    top: 1em;
    margin-top: 0;
    width: 0.8em;
    border-top: 0.4em solid transparent;
    height: 0.8em;
    left: -0.8em;
    border-right: 0.8em solid #fff;
    border-bottom: 0.4em solid transparent;
  }
}
.p-candidate-needs__modal__body .comment_after__container .c-blockimage {
  max-width: 92px;
  min-width: 92px;
  margin-right: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment_after__container .c-blockimage {
    max-width: calc(3.8367346939vw + 30.612244898px);
    min-width: calc(3.8367346939vw + 30.612244898px);
    margin-left: calc(0.4081632653vw + -6.5306122449px);
    margin-right: calc(1.2244897959vw + 10.4081632653px);
  }
}
.p-candidate-needs__modal__body .comment {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.p-candidate-needs__modal__body .comment .icon {
  min-width: 70px;
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 22px;
  /*
  .p-candidate-needs__modal.-green & {
    background-color: f.$bg_green_color;
  }
  .p-candidate-needs__modal.-purple & {
    background-color: f.$bg_purple_color;
  }*/
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment .icon {
    min-width: calc(2.2040816327vw + 41.7346938776px);
    max-width: calc(2.2040816327vw + 41.7346938776px);
    height: calc(2.2040816327vw + 41.7346938776px);
  }
}
.p-candidate-needs__modal__body .comment .icon .job {
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  font-size: 1.3rem;
  white-space: nowrap;
  margin-top: 0.5em;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment .icon .job {
    font-size: calc(0.3265306122vw + 0.7775510204rem);
  }
}
.p-candidate-needs__modal__body .comment .fukidashi {
  border: 1px solid #0075c2;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  font-size: 1.6rem;
}
.p-candidate-needs__modal__body .comment .fukidashi .bold {
  font-weight: 700;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment .fukidashi {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
    border-radius: calc(0.4081632653vw + 3.4693877551px);
    padding: calc(1.6326530612vw + 3.8775510204px);
  }
}
.p-candidate-needs__modal__body .comment .fukidashi::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 15px 9px 0;
  border-color: transparent #0075c2 transparent transparent;
  position: absolute;
  top: 25px;
  left: -15px;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__body .comment .fukidashi::after {
    border-width: calc(0.2448979592vw + 5.0816326531px) calc(0.2448979592vw + 11.0816326531px) calc(0.2448979592vw + 5.0816326531px) 0;
    left: calc(-0.2448979592vw + -11.0816326531px);
    top: calc(0.8163265306vw + 11.9387755102px);
  }
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__body .comment .fukidashi {
  border-color: #00a9ba;
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__body .comment .fukidashi::after {
  border-color: transparent #00a9ba transparent transparent;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__body .comment .fukidashi {
  border-color: #7b639f;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__body .comment .fukidashi::after {
  border-color: transparent #7b639f transparent transparent;
}
.p-candidate-needs__modal__body .comment.-no .fukidashi {
  border-color: #898989 !important;
}
.p-candidate-needs__modal__body .comment.-no .fukidashi::after {
  border-color: transparent #898989 transparent transparent !important;
}
.p-candidate-needs__modal__close {
  background-color: #0075c2;
  border: 1px solid #0075c2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  cursor: pointer;
  transition: all 0.6s ease;
}
@media only screen and (max-width: 1599px) {
  .p-candidate-needs__modal__close {
    padding: calc(0.4081632653vw + 13.4693877551px);
  }
}
.p-candidate-needs__modal__close:hover {
  background-color: #fff !important;
  color: #0075c2;
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__close {
  background-color: #00a9ba;
  border-color: #00a9ba;
}
.p-candidate-needs__modal.-green .p-candidate-needs__modal__close:hover {
  color: #00a9ba;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__close {
  background-color: #7b639f;
  border-color: #7b639f;
}
.p-candidate-needs__modal.-purple .p-candidate-needs__modal__close:hover {
  color: #7b639f;
}
.p-candidate-needs__modal__close i {
  width: 16px;
  height: 16px;
  position: relative;
}
.p-candidate-needs__modal__close i::before, .p-candidate-needs__modal__close i::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 0%;
}
.p-candidate-needs__modal__close i::before {
  transform: rotate(45deg);
}
.p-candidate-needs__modal__close i::after {
  transform: rotate(-45deg);
}

.p-dna_archive {
  padding-top: 130px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive {
    padding-top: calc(8.1632653061vw + -0.612244898px);
  }
}
@media only screen and (max-width: 767px) {
  .p-dna_archive {
    margin-bottom: 0;
  }
}
.p-dna_archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1010px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-dna_archive__list {
    display: none;
  }
}
.p-dna_archive__list.-top {
  align-items: flex-start;
}
.p-dna_archive__list.-middle {
  align-items: flex-end;
  margin-top: -45px;
}
.p-dna_archive__list.-bottom {
  align-items: flex-end;
  flex-wrap: nowrap;
}
.p-dna_archive__item {
  cursor: pointer;
}
.p-dna_archive__item img,
.p-dna_archive__item svg {
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item img,
.p-dna_archive__item svg {
    width: 100%;
  }
}
.p-dna_archive__item .bg {
  fill: #fff;
  transition: all 0.3s ease;
}
.p-dna_archive__item .frame {
  fill: #111;
}
.p-dna_archive__item .text {
  fill: #222;
  transition: all 0.3s ease;
}
.p-dna_archive__item .stroke {
  fill: #fff;
  stroke: #111;
  transition: all 0.3s ease;
}
.is-pc .p-dna_archive__item:hover .bg {
  fill: #2e018a;
}
.is-pc .p-dna_archive__item:hover .frame {
  fill: #2e018a;
}
.is-pc .p-dna_archive__item:hover .text {
  fill: #fff;
}
.is-pc .p-dna_archive__item:hover .stroke {
  fill: #2e018a;
  stroke: #fff;
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no01 {
    width: 43.5%;
  }
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no02 {
    width: 24.7%;
  }
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no03 {
    width: 21.5%;
  }
}
.p-dna_archive__item.-no04 {
  padding-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no04 {
    width: 31.2%;
  }
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no05 {
    width: 32%;
  }
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no08 {
    width: 15.3465346535%;
  }
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no06 {
    width: 45.5445544554%;
  }
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__item.-no07 {
    width: 30.9900990099%;
  }
}
.p-dna_archive__logo {
  align-self: center;
  padding-top: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-dna_archive__logo {
    padding-top: calc(2.4489795918vw + 10.8163265306px);
  }
}
.p-dna__overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  cursor: pointer;
}
.p-dna__arrows {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  color: #2e018a;
  width: 720px;
  justify-content: space-between;
}
.p-dna__arrows .arrow {
  cursor: pointer;
  transition: all 0.4s ease;
}
.is-pc .p-dna__arrows .arrow:hover {
  opacity: 0.8;
}
.p-dna__arrows .arrow.is-remove {
  visibility: hidden;
}
.p-dna__modal {
  display: none;
  max-width: 620px;
  width: 100%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: #f5f5f5;
  overflow: scroll;
  z-index: 9998;
}
@media only screen and (max-width: 767px) {
  .p-dna__modal {
    max-width: 100%;
    position: static;
    overflow: visible;
    display: block;
    transform: translate(0, 0);
    background-color: #fff;
  }
}
.p-dna__modal:nth-child(odd) {
  background-color: #f5f5f5;
}
@media only screen and (max-width: 767px) {
  .p-dna__modal#modal08 {
    margin-bottom: calc(8.1632653061vw + 69.387755102px);
  }
}
.p-dna__modal__inner {
  padding: 115px 90px;
}
@media only screen and (max-width: 1599px) {
  .p-dna__modal__inner {
    padding: calc(4.4897959184vw + 43.1632653061px) calc(3.6734693878vw + 31.2244897959px);
  }
}
@media only screen and (max-width: 767px) {
  .p-dna__modal__inner {
    padding: calc(3.6734693878vw + 31.2244897959px) calc(3.0204081633vw + 26.6734693878px);
  }
}
.p-dna__modal__head {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .p-dna__modal__head {
    margin-bottom: calc(1.2244897959vw + 30.4081632653px);
  }
}
.p-dna__modal__text {
  line-height: 1.87;
}
.p-dna__modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  z-index: 9999;
  color: #fff;
  background-color: #2e018a;
  border: 1px solid #2e018a;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1599px) {
  .p-dna__modal__close {
    width: calc(2.3673469388vw + 16.1224489796px);
    height: calc(2.3673469388vw + 16.1224489796px);
  }
}
@media only screen and (max-width: 767px) {
  .p-dna__modal__close {
    display: none;
  }
}
.p-dna__modal__close::before, .p-dna__modal__close::after {
  content: "";
  display: block;
  width: 1px;
  height: 46%;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 27%;
  left: 48%;
}
.p-dna__modal__close::before {
  transform: rotate(45deg);
}
.p-dna__modal__close::after {
  transform: rotate(-45deg);
}
.is-pc .p-dna__modal__close:hover {
  background-color: #fff;
  color: #2e018a;
}

.p-project_index {
  margin-top: 76px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-project_index {
    margin-top: calc(2.1224489796vw + 42.0408163265px);
    margin-bottom: calc(8.1632653061vw + 69.387755102px);
  }
}

.p-project_bnr {
  max-width: 1280px;
  margin: 0 auto 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr {
    max-width: calc(73.8775510204vw + 97.9591836735px);
    margin-bottom: calc(1.6326530612vw + -6.1224489796px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_bnr {
    max-width: 100%;
  }
}
.p-project_bnr__link {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.is-pc .p-project_bnr__link:hover .p-project_bnr__img img {
  transform: scale(1.05);
}
.p-project_bnr__img {
  position: relative;
  height: 100%;
  height: 400px;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__img {
    height: calc(16.3265306122vw + 138.7755102041px);
  }
}
.p-project_bnr__img::before {
  content: "";
  display: block;
  position: absolute;
  left: -220px;
  top: 0;
  transform-origin: 32% center;
  transition: transform 0s;
  width: 100%;
  border-bottom: 1px solid #fff;
  transform: rotate(-36.75deg);
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__img::before {
    left: calc(-13.8775510204vw + 2.0408163265px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_bnr__img::before {
    width: 120%;
  }
}
.p-project_bnr__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}
.p-project_bnr__num {
  font-size: 2.9rem;
  display: flex;
  align-self: flex-start;
  align-items: baseline;
  color: #fff;
  z-index: 3;
  position: absolute;
  top: 30px;
  left: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__num {
    font-size: calc(1.2244897959vw + 0.9408163265rem);
    top: calc(1.6326530612vw + 3.8775510204px);
    left: calc(0.4081632653vw + 8.4693877551px);
  }
}
.p-project_bnr__num .stroke {
  -webkit-text-stroke: 1px #fff;
  font-size: 4.5rem;
  color: transparent;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__num .stroke {
    font-size: calc(1.8775510204vw + 14.9591836735px);
  }
}
.p-project_bnr__title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__title {
    font-size: calc(0.6530612245vw + 0.7551020408rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_bnr__title {
    position: relative;
    z-index: 2;
    margin-top: -2.05em;
  }
}
.p-project_bnr__title small {
  display: block;
  padding: 0.6em 0.6em 0.55em;
  line-height: 1;
  background-color: #2e018a;
  color: #fff;
}
.p-project_bnr__title .title {
  font-size: 3.2rem;
  font-family: "UD新ゴ M";
  line-height: 1;
  background-color: #fff;
  padding: 0.63em;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__title .title {
    font-size: calc(1.306122449vw + 1.1102040816rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_bnr__title .title {
    padding: 0.78em 0.5em;
    width: 100%;
  }
}
.p-project_bnr__arrow {
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 60px;
  font-size: 2.1rem;
  z-index: 3;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__arrow {
    font-size: calc(0.8979591837vw + 0.6632653061rem);
  }
}
.p-project_bnr__arrow img,
.p-project_bnr__arrow svg {
  z-index: 2;
  width: 1em;
  height: 1em;
  overflow: hidden;
  position: absolute;
  bottom: 9px;
  right: 12px;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__arrow img,
.p-project_bnr__arrow svg {
    bottom: calc(0.4081632653vw + 2.4693877551px);
    right: calc(0.4081632653vw + 5.4693877551px);
  }
}
.p-project_bnr__arrow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #2e018a transparent;
}
@media only screen and (max-width: 1599px) {
  .p-project_bnr__arrow::after {
    border-width: 0 0 calc(2.4489795918vw + 20.8163265306px) calc(3.2653061224vw + 27.7551020408px);
  }
}

.p-project_other {
  margin-bottom: 200px;
}
@media only screen and (max-width: 1599px) {
  .p-project_other {
    margin-bottom: calc(8.1632653061vw + 69.387755102px);
  }
}
.p-project_other__inner {
  max-width: 1460px;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .p-project_other__inner {
    max-width: calc(88.5714285714vw + 42.8571428571px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_other__inner {
    max-width: 100%;
  }
}
.p-project_other__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.p-project_other__item {
  width: 50%;
  padding: 0 4px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .p-project_other__item {
    width: 100%;
    margin-bottom: 2px;
  }
}
.p-project_other__item a {
  display: block;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-project_other__item a {
    display: flex;
    background-color: #f5f5f5;
  }
}
.is-pc .p-project_other__item a:hover .p-project_other__item__img img {
  transform: scale(1.05);
}
@media only screen and (max-width: 767px) {
  .p-project_other__item__img {
    width: 40%;
  }
}
.p-project_other__item__img img {
  transition: all 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .p-project_other__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-project_other__item__text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-project_other__item__text {
    position: static;
    transform: translateY(0);
    color: #111111;
    width: 60%;
    text-align: left;
    padding: 1em;
  }
}
.p-project_other__item__text .num {
  -webkit-text-stroke: 1px #fff;
  font-size: 3.3rem;
  color: transparent;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 1599px) {
  .p-project_other__item__text .num {
    font-size: calc(1.2244897959vw + 1.3408163265rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_other__item__text .num {
    -webkit-text-stroke: 1px #2e018a;
    margin-bottom: 0.3em;
  }
}
.p-project_other__item__text .main {
  font-size: 2.2rem;
  font-family: "UD新ゴ M";
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-project_other__item__text .main {
    font-size: calc(0.4897959184vw + 1.4163265306rem);
  }
}
.p-project_other__item__text .en {
  font-size: 1.3rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .p-project_other__item__text .en {
    font-size: calc(0.2448979592vw + 9.0816326531px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_other__item__text .en {
    color: #2e018a;
  }
}

.p-project_prologue {
  position: relative;
  z-index: 1;
  padding-top: 165px;
  margin-bottom: 160px;
  overflow: hidden;
  max-width: 100vw;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue {
    padding-top: calc(6.9387755102vw + 53.9795918367px);
    margin-bottom: calc(6.9387755102vw + 53.9795918367px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-project_prologue .c-container {
    width: 100%;
  }
}
.p-project_prologue__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  height: 710px;
  z-index: -1;
  overflow: hidden;
}
.p-project_prologue__bg::before, .p-project_prologue__bg::after {
  content: "";
  display: block;
  position: absolute;
  right: -10%;
  top: 30%;
  transform-origin: 85% center;
  transition: transform 0s;
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
.p-project_prologue__bg::before {
  transform: rotate(36.75deg);
}
.p-project_prologue__bg::after {
  transform: rotate(-36.75deg);
}
.p-project_prologue__title {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__title {
    margin-bottom: calc(1.6326530612vw + 18.8775510204px);
  }
}
.p-project_prologue__title__en {
  font-size: 1.4rem;
  color: #2e018a;
  text-transform: uppercase;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__title__en {
    font-size: calc(0.1632653061vw + 11.387755102px);
    margin-bottom: calc(1.6326530612vw + 8.8775510204px);
  }
}
.p-project_prologue__title__en::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #2e018a;
  transform: rotate(-45deg);
  margin: 0 10px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__title__en::after {
    width: calc(0.4081632653vw + 8.4693877551px);
    margin: 0 calc(0.4081632653vw + 3.4693877551px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-project_prologue__title__en::after {
    display: none;
  }
}
.p-project_prologue__title__main {
  font-size: 3.4rem;
  font-family: "UD新ゴ M";
  font-weight: normal;
  line-height: 1.8;
  color: #111111;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__title__main {
    font-size: calc(1.1428571429vw + 1.5714285714rem);
  }
}
.p-project_prologue__title__main .bg {
  font-family: "UD新ゴ M";
  color: #fff;
  background-color: #2e018a;
  padding: 10px;
}
.p-project_prologue__text {
  margin-bottom: 125px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__text {
    margin-bottom: calc(5.306122449vw + 40.1020408163px);
  }
}
.p-project_prologue__member {
  position: relative;
}
.p-project_prologue__member__title {
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 3;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__title {
    width: calc(14.1224489796vw + 147.0408163265px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_prologue__member__title {
    top: calc(-1.6326530612vw + -43.8775510204px);
  }
}
.p-project_prologue__member__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 1025px) {
  .p-project_prologue__member__list {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .p-project_prologue__member__list {
    flex-direction: column;
  }
}
.p-project_prologue__member__item {
  width: 25%;
  padding: 0 20px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__item {
    padding: 0 calc(1.6326530612vw + -6.1224489796px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-project_prologue__member__item {
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: calc(1.6326530612vw + 3.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_prologue__member__item {
    width: 100%;
  }
}
.p-project_prologue__member__item .img {
  position: relative;
  z-index: 1;
  width: 220px;
  margin: 0 auto 25px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__item .img {
    width: calc(10.612244898vw + 50.2040816327px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-project_prologue__member__item .img {
    margin-left: 0;
    margin-right: calc(0.8163265306vw + 6.9387755102px);
    width: calc(3.0816640986vw + 88.4745762712px);
  }
}
.p-project_prologue__member__item .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: -6px;
  background-color: #6241a7;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__item .img::after {
    top: calc(0.2448979592vw + 2.0816326531px);
    left: calc(-0.2448979592vw + -2.0816326531px);
  }
}
.p-project_prologue__member__item .textarea {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1025px) {
  .p-project_prologue__member__item .textarea {
    align-items: flex-start;
    text-align: left;
  }
}
.p-project_prologue__member__item .textarea .division {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.57;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__item .textarea .division {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
    margin-bottom: calc(0.6530612245vw + 4.5510204082px);
  }
}
.p-project_prologue__member__item .textarea .name {
  background-color: #111111;
  color: #fff;
  font-family: "UD新ゴ M";
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__item .textarea .name {
    font-size: calc(0.5714285714vw + 1.2857142857rem);
    padding: calc(0.2448979592vw + 4.0816326531px);
    border-radius: calc(0.2448979592vw + 1.0816326531px);
  }
}
.p-project_prologue__member__item .textarea .year {
  font-size: 1.3rem;
  color: #777;
}
@media only screen and (max-width: 1599px) {
  .p-project_prologue__member__item .textarea .year {
    font-size: calc(0.1632653061vw + 1.0387755102rem);
  }
}
.p-project_prologue__note {
  text-align: right;
  margin-top: 1em;
  color: #999;
}
@media only screen and (max-width: 767px) {
  .p-project_prologue__note {
    text-align: left;
  }
}

.p-project_section {
  position: relative;
  width: 1260px;
  margin: 0 auto 220px;
  max-width: 100vw;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .p-project_section {
    width: calc(72.2448979592vw + 104.0816326531px);
    margin-bottom: calc(11.4285714286vw + 37.1428571429px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section {
    padding-left: calc(2.8571428571vw + 9.2857142857px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
  }
}
@media only screen and (max-width: 374px) {
  .p-project_section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-project_section__en {
  font-size: 13rem;
  color: #f5f5f5;
  position: absolute;
  top: 0;
  right: calc((100vw - 1260px) * -0.5);
  z-index: -1;
  white-space: nowrap;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__en {
    right: calc((100vw - calc(72.2448979592vw + 104.0816326531px)) * -0.5);
    font-size: calc(7.3469387755vw + 1.2448979592rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section__en {
    right: 0;
  }
}
.p-project_section.-reverse .p-project_section__en {
  right: auto;
  left: calc((100vw - 1260px) * -0.5);
}
@media only screen and (max-width: 1599px) {
  .p-project_section.-reverse .p-project_section__en {
    left: calc((100vw - calc(72.2448979592vw + 104.0816326531px)) * -0.5);
  }
}
.p-project_section__pic {
  position: sticky;
  top: 2rem;
  float: left;
  width: 570px;
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__pic {
    width: calc(34.2857142857vw + 21.4285714286px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section__pic {
    position: relative;
    float: none;
    width: 100%;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-project_section__pic::after {
  content: "";
  display: block;
  background-color: #2e018a;
  position: absolute;
  top: 35%;
  right: 0;
  left: -170px;
  height: 250px;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__pic::after {
    height: calc(4.0816326531vw + 184.693877551px);
    left: calc((100vw - calc(72.2448979592vw + 104.0816326531px)) * -0.5);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section__pic::after {
    left: -20px;
  }
}
.p-project_section.-reverse .p-project_section__pic {
  float: right;
}
@media only screen and (max-width: 767px) {
  .p-project_section.-reverse .p-project_section__pic {
    float: none;
  }
}
.p-project_section.-reverse .p-project_section__pic::after {
  left: 0;
  right: -170px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section.-reverse .p-project_section__pic::after {
    right: calc((100vw - calc(72.2448979592vw + 104.0816326531px)) * -0.5);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section.-reverse .p-project_section__pic::after {
    right: -20px;
  }
}
.p-project_section__pic.-large {
  width: 740px;
  margin-left: -170px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__pic.-large {
    width: calc(48.1632653061vw + -30.612244898px);
    margin-left: calc((100vw - calc(72.2448979592vw + 104.0816326531px)) * -0.5);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section__pic.-large {
    width: 100%;
    margin-left: 0;
  }
}
.p-project_section__pic.-large::after {
  height: 300px;
  top: auto;
  bottom: -40px;
  left: -40px;
  right: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__pic.-large::after {
    height: calc(12.2448979592vw + 104.0816326531px);
    bottom: calc(-2.0408163265vw + -7.3469387755px);
    right: calc(1.6326530612vw + 13.8775510204px);
    left: calc(-1.6326530612vw + -13.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section__pic.-large::after {
    left: -20px;
  }
}
.p-project_section.-reverse .p-project_section__pic.-large {
  margin-left: auto;
  margin-right: -170px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section.-reverse .p-project_section__pic.-large {
    margin-right: calc((100vw - calc(72.2448979592vw + 104.0816326531px)) * -0.5);
  }
}
.p-project_section.-reverse .p-project_section__pic.-large::after {
  right: -40px;
  left: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section.-reverse .p-project_section__pic.-large::after {
    left: calc(1.6326530612vw + 13.8775510204px);
    right: calc(-1.6326530612vw + -13.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section.-reverse .p-project_section__pic.-large::after {
    right: -20px;
  }
}
.p-project_section__body {
  padding-left: 44vw;
  padding-left: 690px;
  padding-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__body {
    padding-top: calc(2.8571428571vw + 24.2857142857px);
    padding-left: calc(44.0816326531vw + -15.306122449px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section__body {
    padding-left: 0;
  }
}
.p-project_section.-reverse .p-project_section__body {
  padding-left: 0;
  padding-right: 44vw;
  padding-right: 690px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section.-reverse .p-project_section__body {
    padding-right: calc(44.0816326531vw + -15.306122449px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_section.-reverse .p-project_section__body {
    padding-right: 0;
  }
}
.p-project_section__body .c-text02 {
  margin-bottom: 20px;
}
.p-project_section__title {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__title {
    margin-bottom: calc(1.6326530612vw + 23.8775510204px);
  }
}
.p-project_section__title .en {
  font-size: 1.4rem;
  color: #2e018a;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__title .en {
    font-size: calc(0.1632653061vw + 11.387755102px);
    margin-bottom: calc(0.8163265306vw + 6.9387755102px);
  }
}
.p-project_section__title .en::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #2e018a;
  transform: rotate(-40deg);
  margin: 0 10px;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__title .en::after {
    width: calc(0.4081632653vw + 8.4693877551px);
    margin: 0 calc(0.4081632653vw + 3.4693877551px);
  }
}
@media only screen and (max-width: 1025px) {
  .p-project_section__title .en::after {
    display: none;
  }
}
.p-project_section__title .main {
  display: inline;
  color: #111111;
  font-family: "UD新ゴ M";
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #111111;
  line-height: 1.5;
}
@media only screen and (max-width: 1599px) {
  .p-project_section__title .main {
    font-size: calc(0.6530612245vw + 1.7551020408rem);
  }
}

.p-project_hero {
  position: relative;
  z-index: 1;
  margin-bottom: 250px;
}
@media only screen and (max-width: 1599px) {
  .p-project_hero {
    margin-bottom: calc(10.612244898vw + 80.2040816327px);
  }
}
.p-project_hero__en {
  max-width: 100vw;
  overflow: hidden;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16rem;
  white-space: nowrap;
  text-transform: uppercase;
  color: #f5f5f5;
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-project_hero__en {
    font-size: calc(4.8979591837vw + 4.1632653061rem);
  }
}
.p-project_hero__pic {
  position: relative;
}
.p-project_hero__pic::after {
  content: "";
  display: block;
  width: 88%;
  height: 30%;
  background-color: #2e018a;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (max-width: 1599px) {
  .p-project_hero__pic::after {
    bottom: calc(-1.6326530612vw + -3.8775510204px);
  }
}
@media only screen and (max-width: 767px) {
  .p-project_hero__pic::after {
    width: 92%;
  }
}

.p-occupation_major {
  margin-bottom: calc(5.7142857143vw + 78.5714285714px);
}
.p-occupation_major__desc {
  font-size: 2rem;
  display: inline-block;
  font-family: "UD新ゴ M";
  border-bottom: 1px solid #111111;
  margin-bottom: calc(2.0408163265vw + 12.3469387755px);
  font-family: "UD新ゴ M";
}
@media only screen and (max-width: 1599px) {
  .p-occupation_major__desc {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}
.p-occupation_major__tab_trg {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(0.8163265306vw + 16.9387755102px);
}
@media only screen and (max-width: 1023px) {
  .p-occupation_major__tab_trg {
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 5px;
  }
}
.p-occupation_major__tab_trg li {
  border: 1px solid #dddddd;
  background: #f5f5f5;
  padding: 0.8em 2em;
  border-radius: 9999px;
  line-height: 1;
  position: relative;
  cursor: pointer;
  display: flex;
}
.p-occupation_major__tab_trg li::before, .p-occupation_major__tab_trg li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  opacity: 0;
}
.p-occupation_major__tab_trg li::before {
  bottom: -6px;
  border-color: #2e018a transparent transparent transparent;
}
.p-occupation_major__tab_trg li::after {
  bottom: -5px;
  border-color: #f5f5f5 transparent transparent transparent;
}
.p-occupation_major__tab_trg li span {
  color: #2e018a;
}
.p-occupation_major__tab_trg li.is-act {
  color: #2e018a;
  border-color: #2e018a;
}
.p-occupation_major__tab_trg li.is-act::before, .p-occupation_major__tab_trg li.is-act::after {
  opacity: 1;
}
.p-occupation_major__tab_title {
  background: #2e018a;
  color: #ffffff;
  font-size: 2rem;
  padding: calc(0.4081632653vw + 18.4693877551px);
}
@media only screen and (max-width: 1599px) {
  .p-occupation_major__tab_title {
    font-size: calc(0.1632653061vw + 1.7387755102rem);
  }
}
.p-occupation_major .js-tab_body {
  display: none;
}
.p-occupation_major__tab_body {
  border: 1px solid #2e018a;
  padding: 0 0 calc(0.4081632653vw + 18.4693877551px);
}
.p-occupation_major__tab_body__inner {
  display: flex;
  padding: calc(1.2244897959vw + 15.4081632653px) calc(1.6326530612vw + 13.8775510204px) 0;
}
@media only screen and (max-width: 1023px) {
  .p-occupation_major__tab_body__inner {
    display: block;
  }
}
.p-occupation_major__tab_body__list {
  padding: 0 15px;
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .p-occupation_major__tab_body__list {
    width: 100%;
  }
}
.p-occupation_major__tab_body__list.-expert {
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
@media only screen and (max-width: 1023px) {
  .p-occupation_major__tab_body__list.-expert {
    display: block;
    padding: 0 15px;
  }
}
.p-occupation_major__tab_body__block {
  width: 100%;
  margin-bottom: calc(1.6326530612vw + 13.8775510204px);
}
.-expert .p-occupation_major__tab_body__block {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .-expert .p-occupation_major__tab_body__block {
    width: 100%;
    padding: 0;
  }
}
.p-occupation_major__tab_body__block .title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-size: calc(0.3265306122vw + 1.2775510204rem);
  color: #111111;
  font-family: "UD新ゴ M";
  font-weight: bold;
}
.p-occupation_major__tab_body__block .title a {
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: all 0.5s ease;
}
.is-pc .p-occupation_major__tab_body__block .title a:hover {
  color: #2e018a;
}
.is-pc .p-occupation_major__tab_body__block .title a:hover .arrow {
  transform: translateX(10px);
  background-color: #fff;
  color: #2e018a;
}
.p-occupation_major__tab_body__block .title .arrow {
  width: 26px;
  height: 26px;
  background-color: #2e018a;
  border: 1px solid #2e018a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-left: 0.5em;
  transition: all 0.5s ease;
}
.p-occupation_major__tab_body__block .title .arrow img,
.p-occupation_major__tab_body__block .title .arrow svg {
  width: 1em;
  height: 1em;
}
.p-occupation_major__tab_body__acco {
  border-bottom: 1px solid #dddddd;
}
.p-occupation_major__tab_body__acco dt,
.p-occupation_major__tab_body__acco dd {
  width: 100%;
  position: relative;
  padding: 0.5em 0;
  margin: 0.5em 0;
  font-size: calc(0.1632653061vw + 1.3387755102rem);
  font-weight: 500;
  color: #111111;
}
.p-occupation_major__tab_body__acco dt.-large,
.p-occupation_major__tab_body__acco dd.-large {
  font-size: calc(0.3265306122vw + 1.2775510204rem);
  font-family: "UD新ゴ M";
}
.p-occupation_major__tab_body__acco dt {
  cursor: pointer;
}
.p-occupation_major__tab_body__acco dt::before, .p-occupation_major__tab_body__acco dt::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #2e018a;
  transform-origin: center;
  transition: all 0.4s ease;
}
.p-occupation_major__tab_body__acco dt::before {
  transform: translateY(-50%);
}
.p-occupation_major__tab_body__acco dt::after {
  opacity: 1;
  transform: rotate(-90deg) translateY(-50%);
}
.p-occupation_major__tab_body__acco dt.is-opened::after {
  opacity: 0;
  transform: rotate(0deg) translateY(-50%);
}
.p-occupation_major__tab_body__acco dd {
  background: #f5f5f5;
  height: 0;
  padding: 0 1em;
  margin: 0;
  overflow: hidden;
  transition: all 0.8s ease;
}
.p-occupation_major__tab_body__acco dd.is-opened {
  padding: 1em;
}

.p-occupation_field {
  margin-bottom: calc(6.5306122449vw + 75.5102040816px);
}
.p-occupation_field__figure {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-occupation_field__figure {
    margin-bottom: calc(2.4489795918vw + 40.8163265306px);
  }
}
.p-occupation_field__figure__row {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-occupation_field__figure__row {
    flex-direction: column;
  }
}
.p-occupation_field__figure__item img {
  width: 100%;
}
.p-occupation_field__figure__item.-sales, .p-occupation_field__figure__item.-research {
  width: 203px;
}
@media only screen and (max-width: 1599px) {
  .p-occupation_field__figure__item.-sales, .p-occupation_field__figure__item.-research {
    width: calc(8.2448979592vw + 71.0816326531px);
  }
}
@media only screen and (max-width: 767px) {
  .p-occupation_field__figure__item.-sales, .p-occupation_field__figure__item.-research {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-occupation_field__figure__item.-sales {
    margin-top: -10px;
  }
}
.p-occupation_field__figure__item.-business {
  width: 714px;
  margin: 0 -10px;
}
@media only screen and (max-width: 1599px) {
  .p-occupation_field__figure__item.-business {
    width: calc(29.1428571429vw + 247.7142857143px);
    margin: 0 calc(-0.4081632653vw + -3.4693877551px);
  }
}
@media only screen and (max-width: 767px) {
  .p-occupation_field__figure__item.-business {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: -10px;
  }
}
.p-occupation_field__figure__item.-corporate {
  width: 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-occupation_field__figure__item.-corporate {
    margin-top: calc(0.4081632653vw + 13.4693877551px);
  }
}
.p-occupation_field__figure__item a {
  transition: all 0.5s ease;
}
.is-pc .p-occupation_field__figure__item a:hover {
  opacity: 0.7;
}
.p-occupation_field__block {
  padding: calc(1.2244897959vw + 15.4081632653px) calc(4.4897959184vw + 3.1632653061px);
  background: #f5f5f5;
  position: relative;
  margin-bottom: 30px;
}
.p-occupation_field__block.-staff, .p-occupation_field__block.-corporate {
  background: #ffffff;
  border: 1px solid #7b639f;
}
.p-occupation_field__block__title {
  background: #0075c2;
  color: #ffffff;
  font-family: "UD新ゴ M";
  text-align: center;
  font-size: calc(0.1632653061vw + 1.7387755102rem);
  padding: 0.7em;
  border-radius: 9999px;
}
.-research .p-occupation_field__block__title {
  background-color: #00a9ba;
}
.-sales .p-occupation_field__block__title {
  background-color: #06b4ea;
}
.-staff .p-occupation_field__block__title, .-corporate .p-occupation_field__block__title {
  background: #7b639f;
}
.p-occupation_field__block__title small {
  display: block;
  font-weight: normal;
  font-size: calc(0.1632653061vw + 1.1387755102rem);
}
.p-occupation_field__block__inner {
  display: flex;
  margin-top: calc(1.2244897959vw + 15.4081632653px);
}
.p-occupation_field__block__pict {
  flex-shrink: 0;
  margin-right: calc(1.2244897959vw + 10.4081632653px);
}
@media only screen and (max-width: 767px) {
  .p-occupation_field__block__pict {
    min-width: 26%;
    max-width: 26%;
  }
}
.p-occupation_field__block__text {
  line-height: 2;
}
.p-occupation_field__block__text .title {
  font-size: calc(0.2448979592vw + 1.4081632653rem);
  color: #0075c2;
  font-family: "UD新ゴ M";
}
.-research .p-occupation_field__block__text .title {
  color: #00a9ba;
}
.-sales .p-occupation_field__block__text .title {
  color: #06b4ea;
}
.-staff .p-occupation_field__block__text .title, .-corporate .p-occupation_field__block__text .title {
  color: #7b639f;
}
.p-occupation_field__block__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.p-occupation_field__block__list li {
  color: #7b639f;
  border: 1px dotted #7b639f;
  border-radius: 5px;
  padding: 0.8em;
  margin: 0 3px;
  line-height: 1;
  min-width: 120px;
  text-align: center;
  margin-bottom: 6px;
}
.p-occupation_field__block__list li.last {
  border: none;
  min-width: auto;
}

.p-internship {
  padding-top: 200px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-internship {
    padding-top: calc(4.0816326531vw + 134.693877551px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship .-ta-sp {
    text-align: left;
  }
}
.p-internship > *:not(.p-internship__line):not(.p-internship__en) {
  position: relative;
}
.p-internship__main {
  counter-reset: internship-section;
}
.p-internship_lower + .p-internship__main {
  margin-top: -150px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower + .p-internship__main {
    margin-top: calc(-6.1224489796vw + -52.0408163265px);
  }
}
.p-internship__section {
  counter-increment: internship-section;
}
.p-internship__section__inner:not(:first-child) {
  margin-top: 120px;
}
@media only screen and (max-width: 1599px) {
  .p-internship__section__inner:not(:first-child) {
    margin-top: calc(4.8979591837vw + 41.6326530612px);
  }
}
.p-internship__section__subheading {
  font-size: 5rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-internship__section__subheading {
    margin-bottom: calc(0.8163265306vw + 26.9387755102px);
    font-size: calc(1.6326530612vw + 2.387755102rem);
  }
}
.p-internship__section__subheading .en {
  color: #111111;
  letter-spacing: 0.05;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: normal;
  display: block;
  text-transform: uppercase;
}
.p-internship__section__subheading .ja {
  display: block;
  line-height: 1.5;
  letter-spacing: 0.05;
  font-size: 1.4rem;
  margin-top: 0.5em;
}
.p-internship__section__heading {
  text-align: center;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  z-index: 1;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-internship__section__heading {
    margin-bottom: calc(3.2653061224vw + 27.7551020408px);
  }
}
.p-internship__section__heading .heading {
  position: relative;
  z-index: 1;
  color: #111111;
}
.p-internship__section__heading .en {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0;
  white-space: nowrap;
  font-size: 15rem;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  color: #f5f5f5;
}
.-gray .p-internship__section__heading .en {
  color: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-internship__section__heading .en {
    font-size: calc(6.1224489796vw + 5.2040816327rem);
  }
}
.-technical .p-internship__section__heading::before, .-technical .p-internship__section__heading::after {
  color: #0075c2;
}
.-work-place .p-internship__section__heading::before, .-work-place .p-internship__section__heading::after {
  color: #00a9ba;
}
.-office-work .p-internship__section__heading::before, .-office-work .p-internship__section__heading::after {
  color: #7b639f;
}
.p-internship__section__heading::before, .p-internship__section__heading::after {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  display: block;
  z-index: 1;
  position: relative;
}
.p-internship__section__heading::before {
  content: counter(internship-section, decimal-leading-zero);
  margin-bottom: 1.5em;
}
.p-internship__section__heading::after {
  content: "";
  width: 2.5em;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid;
  border-radius: 1px;
  margin-top: 1.75em;
}
.p-internship__section__container {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
.p-internship_lower + .p-internship__main .p-internship__section:first-child .p-internship__section__container {
  padding-top: 320px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower + .p-internship__main .p-internship__section:first-child .p-internship__section__container {
    padding-top: calc(13.0612244898vw + 111.0204081633px);
  }
}
@media only screen and (max-width: 1599px) {
  .p-internship__section__container {
    padding-top: calc(4.8979591837vw + 41.6326530612px);
    padding-bottom: calc(4.8979591837vw + 41.6326530612px);
  }
}
.-gray .p-internship__section__container::before {
  content: "";
  display: block;
  position: absolute;
  left: -200px;
  right: -200px;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  background-color: #f5f5f5;
}
@media only screen and (max-width: 1599px) {
  .-gray .p-internship__section__container::before {
    left: calc(-17.9591836735vw + 87.3469387755px);
    right: calc(-17.9591836735vw + 87.3469387755px);
  }
}
@media only screen and (max-width: 567px) {
  .-gray .p-internship__section__container::before {
    left: -20px;
    right: -20px;
    border-radius: 0;
  }
}
.p-internship__line {
  position: relative;
  display: block;
}
.p-internship__line::before, .p-internship__line::after {
  content: "";
  display: block;
  position: absolute;
  width: 200vw;
  border-bottom: 1px solid #ededed;
  transform-origin: right center;
  right: 0;
}
.p-internship__line::before {
  top: 150px;
  transform: rotate(-37deg);
}
@media only screen and (max-width: 1599px) {
  .p-internship__line::before {
    top: calc(6.1224489796vw + 52.0408163265px);
  }
}
.p-internship__line::after {
  top: 365px;
  transform: rotate(37deg);
}
@media only screen and (max-width: 1599px) {
  .p-internship__line::after {
    top: calc(14.9387755102vw + 125.9795918367px);
  }
}
.p-internship__en {
  position: absolute;
  top: 120px;
  left: 0;
  writing-mode: vertical-lr;
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 16rem;
  line-height: 0.5;
  letter-spacing: 0.05em;
  color: #eeeeee;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .p-internship__en {
    font-size: calc(4.8979591837vw + 4.1632653061rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship__en {
    left: auto;
    right: 0;
    line-height: 1;
  }
}

.p-internship_kv__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-internship_kv__head .heading {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
@media only screen and (max-width: 567px) {
  .p-internship_kv__head .heading {
    display: block;
    padding-right: 0;
  }
  .p-internship_kv__head .heading .number{
    margin: 15px 0 10px;
  }
}
.p-internship_kv__head .c-text01 {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
@media only screen and (max-width: 767px) {
  .p-internship_kv__head .c-text01 {
    margin-bottom: 0;
    margin-top: 0.5em;
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_kv__head .c-text01 {
    margin-top: 1em;
  }
}
.p-internship_kv__head .en {
  line-height: 1.25;
  font-size: 8.2rem;
  letter-spacing: 0.1em;
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #111111;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .p-internship_kv__head .en {
    font-size: calc(3.3469387755vw + 2.8448979592rem);
  }
}
.p-internship_kv__head .number {
  display: block;
  position: relative;
  width: 100%;
  max-width: 223px;
  min-width: 223px;
  /* transform: translate(-12.5%, -7.5%); */
  transform: translate(0, -7.5%);
}
@media only screen and (max-width: 1599px) {
  .p-internship_kv__head .number {
    max-width: calc(10.8571428571vw + 49.2857142857px);
    min-width: calc(10.8571428571vw + 49.2857142857px);
  }
}
.p-internship_kv__head .number::before {
  content: "";
  display: block;
  padding-top: 38.5650224215%;
}
.p-internship_kv__head .number img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-internship_menu {
  margin-top: 80px;
}
.p-internship_menu__list {
  display: flex;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__list {
    margin-top: calc(2.4489795918vw + 40.8163265306px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-internship_menu__list {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__list {
    display: block;
  }
}
.p-internship_menu__item {
  width: 100%;
  max-width: 33.3333333333%;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-internship_menu__item {
    max-width: 50%;
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__item {
    max-width: 100%;
  }
}
.p-internship_menu__item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-internship_menu__item a .js-bgmedia {
  position: relative;
  display: block;
}
.p-internship_menu__item a .js-bgmedia::before {
  content: "";
  display: block;
  padding-top: 100%;
  background-color: rgba(12, 55, 83, 0.15);
}
.is-pc .p-internship_menu__item a .js-bgmedia {
  transform: scale(1.05);
}
.p-internship_menu__item a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.is-pc .p-internship_menu__item a::after {
  content: "";
  transition: 0.4s opacity;
}
.is-pc .p-internship_menu__item a .js-bgmedia {
  transition: 1.2s transform;
}
.is-pc .p-internship_menu__item a .js-svg .frame {
  transition: 0.4s opacity;
}
.is-pc .p-internship_menu__item a:hover .js-bgmedia {
  transform: scale(1);
}
.is-pc .p-internship_menu__item a:hover .arrow {
  width: 92px;
  height: 92px;
  bottom: -6px;
  right: -6px;
}
@media only screen and (max-width: 1599px) {
  .is-pc .p-internship_menu__item a:hover .arrow {
    height: calc(2.4489795918vw + 52.8163265306px);
    width: calc(2.4489795918vw + 52.8163265306px);
  }
}
.is-pc .p-internship_menu__item a:hover::after,
.is-pc .p-internship_menu__item a:hover .js-svg .frame {
  opacity: 0;
}
.p-internship_menu__item.-technical a::after {
  background-color: #0075c2;
}
.p-internship_menu__item.-work-place a::after {
  background-color: #00a9ba;
}
.p-internship_menu__item.-office-work a::after {
  background-color: #7b639f;
}
.p-internship_menu__item__container {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  color: #ffffff;
  bottom: 50px;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__item__container {
    top: calc(2.4489795918vw + 10.8163265306px);
    left: calc(2.4489795918vw + 10.8163265306px);
    right: calc(2.4489795918vw + 10.8163265306px);
    bottom: calc(2.4489795918vw + 10.8163265306px);
  }
}
.p-internship_menu__item__container .number {
  position: absolute;
  top: 0;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  color: transparent;
  display: flex;
  align-items: center;
  left: 0;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__item__container .number {
    font-size: calc(3.6734693878vw + 3.1224489796rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__item__container .number {
    font-size: calc(2.4489795918vw + 5.0816326531rem);
  }
}
.p-internship_menu__item__container .number::after {
  content: "";
  display: block;
  position: relative;
  width: 0.5em;
  transform: rotate(-40deg);
  margin-left: 0.25em;
  color: #ffffff;
  border-bottom: 2px dotted;
}
.p-internship_menu__item__container .heading {
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-internship_menu__item__container .heading .title {
  height: 90px;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__item__container .heading .title {
    height: calc(2.4489795918vw + 50.8163265306px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__item__container .heading .title {
    height: calc(1.2244897959vw + 70.4081632653px);
  }
}
.p-internship_menu__item__container .heading .title .js-svg {
  width: 100%;
  height: 100%;
}
.p-internship_menu__item__container .heading .subtitle {
  display: block;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__item__container .heading .subtitle {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__item__container .heading .subtitle {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.p-internship_menu__item__container .en {
  position: absolute;
  top: 0;
  right: 0;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__item__container .en {
    font-size: calc(0.4081632653vw + 1.3469387755rem);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__item__container .en {
    font-size: calc(0.2448979592vw + 1.6081632653rem);
  }
}
.p-internship_menu__item__container .arrow {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid;
  bottom: 0;
  border-radius: 9999px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-pc .p-internship_menu__item__container .arrow {
  transition: 0.8s;
}
@media only screen and (max-width: 1599px) {
  .p-internship_menu__item__container .arrow {
    width: calc(2.4489795918vw + 40.8163265306px);
    height: calc(2.4489795918vw + 40.8163265306px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_menu__item__container .arrow {
    width: calc(1.6326530612vw + 53.8775510204px);
    height: calc(1.6326530612vw + 53.8775510204px);
  }
}
.p-internship_scroll {
  margin-top: 150px;
  margin-bottom: 90px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_scroll {
    margin-top: calc(6.1224489796vw + 52.0408163265px);
    margin-bottom: calc(3.6734693878vw + 31.2244897959px);
  }
}
.p-internship_scroll__list {
  display: flex;
  justify-content: center;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 1599px) {
  .p-internship_scroll__list {
    font-size: calc(0.3265306122vw + 1.0775510204rem);
  }
}
.-technical .p-internship_scroll__list {
  border-left: 1px solid #0075c2;
  border-right: 1px solid #0075c2;
}
.-technical .p-internship_scroll__list .js-svg {
  color: #0075c2;
}
.-work-place .p-internship_scroll__list {
  border-left: 1px solid #00a9ba;
  border-right: 1px solid #00a9ba;
}
.-work-place .p-internship_scroll__list .js-svg {
  color: #00a9ba;
}
.-office-work .p-internship_scroll__list {
  border-left: 1px solid #7b639f;
  border-right: 1px solid #7b639f;
}
.-office-work .p-internship_scroll__list .js-svg {
  color: #7b639f;
}
.p-internship_scroll__item {
  width: 100%;
  max-width: 33.3333333333%;
}
.p-internship_scroll__item .text {
  display: block;
  margin-top: -0.5em;
}
@media only screen and (max-width: 567px) {
  .p-internship_scroll__item .text {
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.-technical .p-internship_scroll__item {
  border-right: 1px solid #0075c2;
}
.-work-place .p-internship_scroll__item {
  border-right: 1px solid #00a9ba;
}
.-office-work .p-internship_scroll__item {
  border-right: 1px solid #7b639f;
}
.p-internship_scroll__item:last-child {
  border-right: none;
}
.p-internship_scroll__item .js-svg {
  width: 2em;
  height: 2em;
  line-height: 1;
  margin-bottom: -1em;
  margin-top: -0.25em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-internship_scroll__item a {
  display: block;
  text-align: center;
}
.is-pc .p-internship_scroll__item a {
  transition: 0.4s color;
}
.is-pc .p-internship_scroll__item a .js-svg {
  transition: 0.4s transform;
}
.is-pc .-technical .p-internship_scroll__item a:hover {
  color: #0075c2;
}
.is-pc .-technical .p-internship_scroll__item a:hover .js-svg {
  transform: translateY(25%);
}
.is-pc .-work-place .p-internship_scroll__item a:hover {
  color: #00a9ba;
}
.is-pc .-work-place .p-internship_scroll__item a:hover .js-svg {
  transform: translateY(25%);
}
.is-pc .-office-work .p-internship_scroll__item a:hover {
  color: #7b639f;
}
.is-pc .-office-work .p-internship_scroll__item a:hover .js-svg {
  transform: translateY(25%);
}

.p-internship_lower {
  position: relative;
  z-index: 1;
}
.p-internship_lower__info {
  display: flex;
  align-items: center;
}
.p-internship_lower__info .number {
  display: flex;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: transparent;
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
  align-items: center;
}
.p-internship_lower__info .number::after {
  content: "";
  display: block;
  width: 0.75em;
  margin-left: 0.25em;
  margin-right: 0.25em;
  transform: rotate(-40deg);
  border-bottom: 2px dotted;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower__info .number {
    font-size: calc(1.1428571429vw + 3.1714285714rem);
  }
}
.p-internship_lower__info .en {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: italic;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower__info .en {
    font-size: calc(0.2448979592vw + 1.1081632653rem);
  }
}
.-technical .p-internship_lower__info .number {
  -webkit-text-stroke: 1px #0075c2;
  text-stroke: 1px #0075c2;
}
.-technical .p-internship_lower__info .number::after {
  color: #0075c2;
}
.-technical .p-internship_lower__info .en {
  color: #0075c2;
}
.-work-place .p-internship_lower__info .number {
  -webkit-text-stroke: 1px #00a9ba;
  text-stroke: 1px #00a9ba;
}
.-work-place .p-internship_lower__info .number::after {
  color: #00a9ba;
}
.-work-place .p-internship_lower__info .en {
  color: #00a9ba;
}
.-office-work .p-internship_lower__info .number {
  -webkit-text-stroke: 1px #7b639f;
  text-stroke: 1px #7b639f;
}
.-office-work .p-internship_lower__info .number::after {
  color: #7b639f;
}
.-office-work .p-internship_lower__info .en {
  color: #7b639f;
}
.p-internship_lower__heading {
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 4.4rem;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower__heading {
    font-size: calc(1.7959183673vw + 1.5265306122rem);
  }
}
.p-internship_lower__heading .text {
  padding: 0.35em 0.5em;
}
.p-internship_lower__heading .title {
  display: flex;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.p-internship_lower__heading .title .text {
  border-radius: 3px;
}
.p-internship_lower__heading .title.-subtitle .text {
  border-bottom-left-radius: 0;
}
.p-internship_lower__heading .subtitle {
  letter-spacing: 0.05em;
  display: flex;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower__heading .subtitle {
    font-size: calc(0.1632653061vw + 1.3387755102rem);
  }
}
.p-internship_lower__heading .subtitle .text {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.-technical .p-internship_lower__heading .title .text {
  background-color: #0075c2;
}
.-technical .p-internship_lower__heading .subtitle .text {
  color: #0075c2;
}
.-work-place .p-internship_lower__heading .title .text {
  background-color: #00a9ba;
}
.-work-place .p-internship_lower__heading .subtitle .text {
  color: #00a9ba;
}
.-office-work .p-internship_lower__heading .title .text {
  background-color: #7b639f;
}
.-office-work .p-internship_lower__heading .subtitle .text {
  color: #7b639f;
}
.p-internship_lower__picture {
  display: block;
  height: 600px;
  margin-top: 100px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower__picture {
    margin-top: calc(4.0816326531vw + 34.693877551px);
    height: calc(32.6530612245vw + 77.5510204082px);
  }
}
.p-internship_lower__picture img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  object-fit: cover;
  position: relative;
}
.p-internship_lower__picture::before {
  content: "";
  display: block;
  position: absolute;
  left: 50px;
  bottom: -40px;
  border-bottom-left-radius: 10px;
  right: 0;
  top: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_lower__picture::before {
    left: calc(2.0408163265vw + 17.3469387755px);
    bottom: calc(-1.6326530612vw + -13.8775510204px);
  }
}
.-technical .p-internship_lower__picture::before {
  background-color: #0075c2;
}
.-work-place .p-internship_lower__picture::before {
  background-color: #00a9ba;
}
.-office-work .p-internship_lower__picture::before {
  background-color: #7b639f;
}

.p-internship_overview {
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.p-internship_overview__data {
  border-bottom: 1px dotted;
  border-top: 1px dotted;
}
.p-internship_overview__data dl {
  border-bottom: 1px dotted;
  display: flex;
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_overview__data dl {
    padding-left: calc(2.0408163265vw + 12.3469387755px);
    padding-right: calc(2.0408163265vw + 12.3469387755px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_overview__data dl {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-internship_overview__data dl:last-child {
  border-bottom: none;
}
.p-internship_overview__data dl dt {
  width: 100%;
  max-width: 180px;
  min-width: 180px;
  color: #111111;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}
.p-internship_overview__data dl dd img {
  margin-top: 5px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_overview__data dl dt {
    min-width: calc(6.5306122449vw + 75.5102040816px);
    max-width: calc(6.5306122449vw + 75.5102040816px);
  }
}
.p-internship_overview__data dl dd {
  width: 100%;
}

.p-internship_footer {
  max-width: 1600px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (max-width: 1599px) {
  .p-internship_footer {
    margin-top: calc(1.6326530612vw + 23.8775510204px);
  }
}
.p-internship_footer .arrow {
  display: flex;
  width: 95px;
  min-width: 95px;
  height: 95px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid;
}
.p-internship_footer .arrow .js-svg {
  letter-spacing: 0;
  width: 25%;
  height: 25%;
}
@media only screen and (max-width: 1599px) {
  .p-internship_footer .arrow {
    width: calc(3.6734693878vw + 36.2244897959px);
    min-width: calc(3.6734693878vw + 36.2244897959px);
    height: calc(3.6734693878vw + 36.2244897959px);
  }
}
.is-pc .p-internship_footer .arrow,
.is-pc .p-internship_footer .arrow .js-svg {
  transition: 0.4s transform;
}
.is-pc .p-internship_footer a:hover .arrow {
  transform: scale(1.2);
}
.is-pc .p-internship_footer a:hover .arrow .js-svg {
  transform: scale(0.833);
}

.p-internship_entry a {
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 15px;
  position: relative;
  height: 380px;
}
.-technical .p-internship_entry a {
  background-color: #0075c2;
}
.-work-place .p-internship_entry a {
  background-color: #00a9ba;
}
.-office-work .p-internship_entry a {
  background-color: #7b639f;
}
@media only screen and (max-width: 1599px) {
  .p-internship_entry a {
    height: calc(15.5102040816vw + 131.8367346939px);
  }
}
.p-internship_entry a::before, .p-internship_entry a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  color: #666666;
  border-bottom: 1px solid;
  left: 0;
  transform-origin: left center;
  mix-blend-mode: hard-light;
}
.is-pc .p-internship_entry a::before, .is-pc .p-internship_entry a::after {
  transition: 0.8s color;
}
.is-pc .p-internship_entry a {
  transition: 0.8s background-color;
}
.is-pc .p-internship_entry a::before, .is-pc .p-internship_entry a::after {
  transition: 0.8s color;
}
.is-pc .p-internship_entry a:hover {
  background-color: #2e018a;
}
.is-pc .p-internship_entry a:hover::before, .is-pc .p-internship_entry a:hover::after {
  color: rgba(255, 255, 255, 0.5);
}
.p-internship_entry a::before {
  transform: rotate(37deg);
  top: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_entry a::before {
    top: calc(1.2244897959vw + 10.4081632653px);
  }
}
.p-internship_entry a::after {
  top: 270px;
  transform: rotate(-37deg);
}
@media only screen and (max-width: 1599px) {
  .p-internship_entry a::after {
    top: calc(11.0204081633vw + 93.6734693878px);
  }
}
.p-internship_entry .text {
  line-height: 1.75;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  margin-right: 2em;
  margin-top: 1em;
}
.p-internship_entry .text::after {
  content: "";
  display: block;
  border-bottom: 2px solid;
  margin-top: 1em;
  width: 1.5em;
  border-radius: 1px;
}
@media only screen and (max-width: 567px) {
  .p-internship_entry .text {
    margin-right: 0;
  }
}
.p-internship_entry .arrow {
  margin-left: auto;
}
.p-internship_entry__container {
  position: relative;
  z-index: 1;
}
.p-internship_entry__container,
.p-internship_entry__container .container {
  display: flex;
  align-items: center;
}
.p-internship_entry__container .container {
  flex-wrap: wrap;
}
.p-internship_entry__en {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 11rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 0.75em;
  margin-left: -0.025em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_entry__en {
    font-size: calc(5.306122449vw + 2.5102040816rem);
  }
}

.p-internship_entry + .p-internship_nav {
  margin-top: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_entry + .p-internship_nav {
    margin-top: calc(0.8163265306vw + 16.9387755102px);
  }
}
.p-internship_nav .arrow {
  width: 80px;
  height: 80px;
  min-width: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav .arrow {
    width: calc(3.2653061224vw + 27.7551020408px);
    min-width: calc(3.2653061224vw + 27.7551020408px);
    height: calc(3.2653061224vw + 27.7551020408px);
  }
}
.p-internship_nav__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav__list {
    margin-left: calc(-0.4081632653vw + -8.4693877551px);
    margin-right: calc(-0.4081632653vw + -8.4693877551px);
    margin-bottom: calc(-0.8163265306vw + -16.9387755102px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-internship_nav__list {
    display: block;
    margin: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.p-internship_nav__item {
  width: 100%;
  max-width: 50%;
  min-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav__item {
    margin-bottom: calc(0.8163265306vw + 16.9387755102px);
    padding-left: calc(0.4081632653vw + 8.4693877551px);
    padding-right: calc(0.4081632653vw + 8.4693877551px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-internship_nav__item {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}
.p-internship_nav__item .number {
  font-size: 9rem;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 0.2em;
  margin-right: 0.4em;
  color: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav__item .number {
    font-size: calc(3.6734693878vw + 3.1224489796rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_nav__item .number {
    margin-left: -0.025em;
  }
}
.p-internship_nav__item .heading .title {
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav__item .heading .title {
    font-size: calc(0.4897959184vw + 1.6163265306rem);
  }
}
@media only screen and (max-width: 1023px) {
  .p-internship_nav__item .heading .title br {
    display: none;
  }
}
.p-internship_nav__item .heading .title .small {
  color: #111111;
  mix-blend-mode: hard-light;
}
.is-pc .p-internship_nav__item .heading .title .small {
  transition: 0.4s color;
}
.p-internship_nav__item .heading .subtitle {
  padding: 0.5em;
  line-height: 1.25;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
  display: inline-block;
  color: #ffffff;
  border-radius: 2px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav__item .heading .subtitle {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.is-pc .p-internship_nav__item .heading .subtitle {
  transition: 0.4s background-color, 0.4s color;
}
.p-internship_nav__item a {
  display: flex;
  border: 1px solid;
  border-radius: 15px;
  height: 100%;
  align-items: center;
  padding: 60px 40px;
}
.is-pc .p-internship_nav__item a {
  transition: 0.4s color, 0.4s background-color;
}
.is-pc .p-internship_nav__item a:hover {
  color: #ffffff;
}
.is-pc .p-internship_nav__item a:hover .subtitle {
  background-color: #ffffff;
}
.is-pc .p-internship_nav__item a:hover .small {
  color: #ffffff;
}
@media only screen and (max-width: 1599px) {
  .p-internship_nav__item a {
    padding: calc(2.4489795918vw + 20.8163265306px) calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-internship_nav__item a .arrow {
  margin-left: auto;
}
.p-internship_nav__item.-technical a {
  color: #0075c2;
}
.is-pc .p-internship_nav__item.-technical a:hover {
  background-color: #0075c2;
}
.is-pc .p-internship_nav__item.-technical a:hover .subtitle {
  color: #0075c2;
}
.p-internship_nav__item.-technical a .number {
  -webkit-text-stroke: 1px #0075c2;
  text-stroke: 1px #0075c2;
}
.p-internship_nav__item.-technical a .subtitle {
  background-color: #0075c2;
}
.p-internship_nav__item.-work-place a {
  color: #00a9ba;
}
.is-pc .p-internship_nav__item.-work-place a:hover {
  background-color: #00a9ba;
}
.is-pc .p-internship_nav__item.-work-place a:hover .subtitle {
  color: #00a9ba;
}
.p-internship_nav__item.-work-place a .number {
  -webkit-text-stroke: 1px #00a9ba;
  text-stroke: 1px #00a9ba;
}
.p-internship_nav__item.-work-place a .subtitle {
  background-color: #00a9ba;
}
.p-internship_nav__item.-office-work a {
  color: #7b639f;
}
.is-pc .p-internship_nav__item.-office-work a:hover {
  background-color: #7b639f;
}
.is-pc .p-internship_nav__item.-office-work a:hover .subtitle {
  color: #7b639f;
}
.p-internship_nav__item.-office-work a .number {
  -webkit-text-stroke: 1px #7b639f;
  text-stroke: 1px #7b639f;
}
.p-internship_nav__item.-office-work a .subtitle {
  background-color: #7b639f;
}

.p-internship_flow__container {
  display: flex;
}
.p-internship_flow__days {
  width: 100%;
  max-width: 115px;
  min-width: 115px;
  margin-right: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_flow__days {
    margin-right: calc(0.8163265306vw + 16.9387755102px);
    max-width: calc(4.0816326531vw + 49.693877551px);
    min-width: calc(4.0816326531vw + 49.693877551px);
  }
}
.p-internship_flow__days__item {
  height: 36%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.p-internship_flow__days__item:first-child {
  padding-top: 0;
}
.p-internship_flow__days__item:nth-child(2) {
  height: 28%;
}
.p-internship_flow__days__item:last-child {
  padding-bottom: 0;
}
.p-internship_flow__days__item .day {
  display: flex;
  height: 100%;
  align-items: center;
  width: 100%;
  border-right: 2px dotted #00a9ba;
}
.p-internship_flow__days__item .day span {
  display: flex;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  align-items: center;
  border-radius: 9999px;
  color: #ffffff;
  background-color: #00a9ba;
  justify-content: center;
  height: 80px;
  width: 80px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_flow__days__item .day span {
    font-size: calc(0.2448979592vw + 1.0081632653rem);
    height: calc(2.4489795918vw + 40.8163265306px);
    width: calc(2.4489795918vw + 40.8163265306px);
  }
}
.p-internship_flow__list {
  width: 100%;
  counter-reset: internship-flow;
}
.p-internship_flow__item {
  counter-increment: internship-flow;
  display: flex;
  padding: 4px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_flow__item {
    margin-bottom: calc(0.4081632653vw + 3.4693877551px);
  }
}
.p-internship_flow__item:last-child {
  margin-bottom: 0;
}
.p-internship_flow__item__head {
  width: 100%;
  height: 70px;
  max-width: 166px;
  min-width: 166px;
  margin-right: 4px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  justify-content: center;
  color: #7b639f;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 1599px) {
  .p-internship_flow__item__head {
    height: calc(0.8163265306vw + 56.9387755102px);
    font-size: calc(0.2448979592vw + 1.0081632653rem);
    max-width: calc(5.7959183673vw + 73.2653061224px);
    min-width: calc(5.7959183673vw + 73.2653061224px);
  }
}
.p-internship_flow__item__head span::after {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  content: counter(internship-flow, decimal-leading-zero);
  margin-left: 0.25em;
  color: transparent;
  -webkit-text-stroke: 1px #7b639f;
}
@media only screen and (max-width: 1599px) {
  .p-internship_flow__item__head span::after {
    font-size: calc(0.4897959184vw + 1.4163265306rem);
  }
}
.p-internship_flow__item__body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #111111;
  display: flex;
  padding-left: 60px;
  padding-right: 60px;
  align-items: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_flow__item__body {
    font-size: calc(0.2448979592vw + 1.2081632653rem);
    padding-left: calc(4.0816326531vw + -5.306122449px);
    padding-right: calc(4.0816326531vw + -5.306122449px);
  }
}

.p-internship_voice__illust {
  border-radius: 9999px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 140px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_voice__illust {
    max-width: calc(3.2653061224vw + 87.7551020408px);
  }
}
.-technical .p-internship_voice__illust {
  background-color: #ecf5fb;
}
.-work-place .p-internship_voice__illust {
  background-color: #e8f9fa;
}
.-office-work .p-internship_voice__illust {
  background-color: #f1eef5;
}
.-technical .p-internship_voice__illust {
  color: #0075c2;
}
.-work-place .p-internship_voice__illust {
  color: #00a9ba;
}
.-office-work .p-internship_voice__illust {
  color: #7b639f;
}
.p-internship_voice__slider {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  position: relative;
}
.p-internship_voice__slider__button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  transform: translate(50%, -50%);
  justify-content: center;
  color: #ffffff;
}
.-technical .p-internship_voice__slider__button .-prev,
.-technical .p-internship_voice__slider__button .-next {
  background-color: #0075c2;
}
.-work-place .p-internship_voice__slider__button .-prev,
.-work-place .p-internship_voice__slider__button .-next {
  background-color: #00a9ba;
}
.-office-work .p-internship_voice__slider__button .-prev,
.-office-work .p-internship_voice__slider__button .-next {
  background-color: #7b639f;
}
@media only screen and (max-width: 1299px) {
  .p-internship_voice__slider__button {
    transform: translate(0%, 0%);
    position: relative;
    margin-top: calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-internship_voice__slider__button .-prev,
.p-internship_voice__slider__button .-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  cursor: pointer;
  border-radius: 9999px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_voice__slider__button .-prev,
.p-internship_voice__slider__button .-next {
    width: calc(3.2653061224vw + 32.7551020408px);
    height: calc(3.2653061224vw + 32.7551020408px);
  }
}
.p-internship_voice__slider__button .-prev svg,
.p-internship_voice__slider__button .-next svg {
  width: 25%;
  letter-spacing: 0;
  height: 25%;
}
.is-pc .p-internship_voice__slider__button .-prev,
.is-pc .p-internship_voice__slider__button .-next {
  transition: 0.4s opacity;
}
.is-pc .p-internship_voice__slider__button .-prev:hover,
.is-pc .p-internship_voice__slider__button .-next:hover {
  opacity: 0.5;
}
.p-internship_voice__slider__button .-prev svg {
  transform: rotate(180deg);
}
.p-internship_voice__slider__button .-next {
  margin-left: 10px;
}
.p-internship_voice__item .text {
  border-top: 1px dotted;
  padding-top: 1.5em;
  margin-top: 40px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_voice__item .text {
    margin-top: calc(1.6326530612vw + 13.8775510204px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_voice__item .text {
    line-height: 1.9;
  }
}
.p-internship_voice__item .title {
  line-height: 1.5;
  margin-bottom: -1em;
  margin-top: 1em;
}
.p-internship_voice__item__container {
  border-radius: 10px;
  padding: 50px 60px;
  background-color: #ffffff;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-internship_voice__item__container {
    padding: calc(2.4489795918vw + 10.8163265306px) calc(3.2653061224vw + 7.7551020408px);
  }
}
.-technical .p-internship_voice__item__container {
  border: 1px solid #0075c2;
}
.-work-place .p-internship_voice__item__container {
  border: 1px solid #00a9ba;
}
.-office-work .p-internship_voice__item__container {
  border: 1px solid #7b639f;
}
.p-internship_voice__item__number {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.5rem;
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  letter-spacing: 0;
  display: flex;
  line-height: 1;
  align-items: flex-start;
  color: transparent;
}
@media only screen and (max-width: 1599px) {
  .p-internship_voice__item__number {
    font-size: calc(0.4081632653vw + 2.8469387755rem);
  }
}
.-technical .p-internship_voice__item__number {
  -webkit-text-stroke: 1px #0075c2;
  text-stroke: 1px #0075c2;
}
.-technical .p-internship_voice__item__number::before {
  color: #0075c2;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.-work-place .p-internship_voice__item__number {
  -webkit-text-stroke: 1px #00a9ba;
  text-stroke: 1px #00a9ba;
}
.-work-place .p-internship_voice__item__number::before {
  color: #00a9ba;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.-office-work .p-internship_voice__item__number {
  -webkit-text-stroke: 1px #7b639f;
  text-stroke: 1px #7b639f;
}
.-office-work .p-internship_voice__item__number::before {
  color: #7b639f;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.p-internship_voice__item__number::before {
  content: "#";
  font-size: 2rem;
}
@media only screen and (max-width: 1599px) {
  .p-internship_voice__item__number::before {
    font-size: calc(0.1632653061vw + 1.7387755102rem);
  }
}

.p-internship_program__list {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__list {
    margin-left: calc(-0.8163265306vw + -6.9387755102px);
    margin-right: calc(-0.8163265306vw + -6.9387755102px);
    margin-top: calc(2.4489795918vw + 30.8163265306px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_program__list {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.p-internship_program__item {
  width: 100%;
  max-width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item {
    padding-left: calc(0.8163265306vw + 6.9387755102px);
    padding-right: calc(0.8163265306vw + 6.9387755102px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_program__item {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: calc(1.6326530612vw + 23.8775510204px);
  }
  .p-internship_program__item:last-child {
    margin-bottom: 0;
  }
}
.p-internship_program__item__container {
  padding: 45px;
  border-radius: 15px;
  height: 100%;
  background-color: #ffffff;
}
.p-internship_program__list.-border .p-internship_program__item__container {
  border: 1px solid #dddddd;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item__container {
    padding: calc(2.0408163265vw + 12.3469387755px) calc(3.0048076923vw + -3.0769230769px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_program__item__container {
    padding: calc(1.2244897959vw + 25.4081632653px) calc(2.0408163265vw + 12.3469387755px) calc(2.0408163265vw + 12.3469387755px);
  }
}
.p-internship_program__item .en {
  position: absolute;
  font-size: 1.5rem;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  transform: translate(25%, -50%);
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item .en {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
.-technical .p-internship_program__item .en {
  color: #0075c2;
}
.-technical .p-internship_program__item .en .number {
  -webkit-text-stroke: 1px #0075c2;
  text-stroke: 1px #0075c2;
}
.-work-place .p-internship_program__item .en {
  color: #00a9ba;
}
.-work-place .p-internship_program__item .en .number {
  -webkit-text-stroke: 1px #00a9ba;
  text-stroke: 1px #00a9ba;
}
.-office-work .p-internship_program__item .en {
  color: #7b639f;
}
.-office-work .p-internship_program__item .en .number {
  -webkit-text-stroke: 1px #7b639f;
  text-stroke: 1px #7b639f;
}
.p-internship_program__item .en .number {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 6rem;
  line-height: 0.75;
  color: #ffffff;
  margin-right: 0.1em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item .en .number {
    font-size: calc(1.2244897959vw + 4.0408163265rem);
  }
}
.p-internship_program__item__body {
  margin-top: 20px;
  display: flex;
  align-items: center;
  align-items: flex-start;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item__body {
    margin-top: calc(0.8163265306vw + 6.9387755102px);
  }
}
.p-internship_program__item__body .date,
.p-internship_program__item__body .title {
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}
.p-internship_program__item__body .date,
.p-internship_program__item__body .text {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item__body .date,
.p-internship_program__item__body .text {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-internship_program__item__body .date {
  width: 90px;
  min-width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  letter-spacing: 0;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  justify-content: center;
  border-radius: 9999px;
  margin-right: 25px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item__body .date {
    width: calc(3.6057692308vw + 32.3076923077px);
    min-width: calc(3.6057692308vw + 32.3076923077px);
    height: calc(3.6057692308vw + 32.3076923077px);
    margin-right: calc(0.6009615385vw + 15.3846153846px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_program__item__body .date {
    margin-right: calc(0.4081632653vw + 18.4693877551px);
    width: calc(2.4489795918vw + 50.8163265306px);
    min-width: calc(2.4489795918vw + 50.8163265306px);
    height: calc(2.4489795918vw + 50.8163265306px);
  }
}
.p-internship_program__item__body .date::after {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  left: 50%;
  bottom: 100%;
}
@media only screen and (max-width: 567px) {
  .p-internship_program__item__body .date::after {
    top: -35%;
  }
}
.-technical .p-internship_program__item__body .date {
  background-color: #0075c2;
}
.-technical .p-internship_program__item__body .date::after {
  border-left: 2px dotted #0075c2;
}
.-work-place .p-internship_program__item__body .date {
  background-color: #00a9ba;
}
.-work-place .p-internship_program__item__body .date::after {
  border-left: 2px dotted #00a9ba;
}
.-office-work .p-internship_program__item__body .date {
  background-color: #7b639f;
}
.-office-work .p-internship_program__item__body .date::after {
  border-left: 2px dotted #7b639f;
}
.p-internship_program__item__body .text {
  line-height: 1.75;
  margin-top: 0.5em;
}
.p-internship_program__item__body .title {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__item__body .title {
    font-size: calc(0.4807692308vw + 1.2307692308rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_program__item__body .title {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
  }
}
.-technical .p-internship_program__item__body .title .color {
  color: #0075c2;
}
.-work-place .p-internship_program__item__body .title .color {
  color: #00a9ba;
}
.-office-work .p-internship_program__item__body .title .color {
  color: #7b639f;
}
.p-internship_program__item .c-blockimage {
  overflow: hidden;
  z-index: 0;
  border-radius: 15px;
}
.p-internship_program__item .c-blockimage::before {
  padding-top: 63.6363636364%;
}
.p-internship_program__item .c-blockimage.-thin::before {
  padding-top: 40.9090909091%;
}
.p-internship_program__item .c-blockimage img {
  object-fit: cover;
}
.p-internship_program__data {
  margin-top: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__data {
    margin-top: calc(1.6326530612vw + 23.8775510204px);
  }
}
.p-internship_program__data dl {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 40px 55px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__data dl {
    padding: calc(1.6326530612vw + 13.8775510204px) calc(2.8571428571vw + 9.2857142857px);
  }
}
.p-internship_program__data dl:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 567px) {
  .p-internship_program__data dl {
    display: block;
  }
}
.p-internship_program__data dl dt {
  display: flex;
  padding-right: 1em;
  width: 100%;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  max-width: 290px;
  min-width: 290px;
}
.p-internship_program__data dl dt .js-svg {
  width: 1.2em;
  min-width: 1.2em;
  height: 1.2em;
  margin-right: 0.25em;
  margin-top: 0.45em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__data dl dt {
    max-width: calc(13.0612244898vw + 81.0204081633px);
    min-width: calc(13.0612244898vw + 81.0204081633px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_program__data dl dt {
    min-width: 0;
    max-width: 100%;
  }
}
.-technical .p-internship_program__data dl dt {
  color: #0075c2;
}
.-work-place .p-internship_program__data dl dt {
  color: #00a9ba;
}
.-office-work .p-internship_program__data dl dt {
  color: #7b639f;
}
.p-internship_program__data dl dd {
  border-left: 2px dotted #dddddd;
  width: 100%;
  padding-left: 50px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_program__data dl dd {
    padding-left: calc(2.4489795918vw + 10.8163265306px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_program__data dl dd {
    margin-top: 1em;
  }
}

.p-internship_schedule__list {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 70px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_schedule__list {
    margin-top: calc(2.4489795918vw + 30.8163265306px);
    margin-left: calc(-0.8163265306vw + -6.9387755102px);
    margin-right: calc(-0.8163265306vw + -6.9387755102px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-internship_schedule__list {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: calc(-2.4489795918vw + -30.8163265306px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_schedule__list {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.p-internship_schedule__item {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 33.3333333333%;
}
@media only screen and (max-width: 1599px) {
  .p-internship_schedule__item {
    padding-left: calc(0.8163265306vw + 6.9387755102px);
    padding-right: calc(0.8163265306vw + 6.9387755102px);
  }
}
@media only screen and (max-width: 1023px) {
  .p-internship_schedule__item {
    max-width: 50%;
    margin-bottom: calc(1.6326530612vw + 43.8775510204px);
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_schedule__item {
    padding-left: 0;
    max-width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 567px) {
  .p-internship_schedule__item .u-relative {
    display: block;
  }
}
.p-internship_schedule__item .c-blockimage {
  border-radius: 15px;
  overflow: hidden;
  z-index: 0;
  width: 100%;
}
.p-internship_schedule__item .c-blockimage::before {
  padding-top: 70.5882352941%;
}
.p-internship_schedule__item__body {
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_schedule__item__body {
    margin-top: calc(0.8163265306vw + 6.9387755102px);
  }
}
.p-internship_schedule__item__body .date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-align: center;
  width: 80px;
  min-width: 80px;
  color: #ffffff;
  line-height: 1.65;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  border-radius: 9999px;
  height: 80px;
  position: relative;
}
.-technical .p-internship_schedule__item__body .date {
  background-color: #0075c2;
}
.-technical .p-internship_schedule__item__body .date::before {
  border-left: 2px dotted #0075c2;
}
.-work-place .p-internship_schedule__item__body .date {
  background-color: #00a9ba;
}
.-work-place .p-internship_schedule__item__body .date::before {
  border-left: 2px dotted #00a9ba;
}
.-office-work .p-internship_schedule__item__body .date {
  background-color: #7b639f;
}
.-office-work .p-internship_schedule__item__body .date::before {
  border-left: 2px dotted #7b639f;
}
@media only screen and (max-width: 1599px) {
  .p-internship_schedule__item__body .date {
    width: calc(1.6326530612vw + 53.8775510204px);
    min-width: calc(1.6326530612vw + 53.8775510204px);
    height: calc(1.6326530612vw + 53.8775510204px);
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-internship_schedule__item__body .date::before {
  content: "";
  display: block;
  position: absolute;
  height: 50%;
  top: -50%;
}
.p-internship_schedule__item__body .c-text02 {
  line-height: 1.8125;
  padding-left: 1.5em;
}
.p-internship_schedule__item .en {
  position: absolute;
  top: 0;
  line-height: 1;
  left: 0;
  font-size: 1.5rem;
  letter-spacing: 0;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  transform: translate(25%, -50%);
}
@media only screen and (max-width: 1599px) {
  .p-internship_schedule__item .en {
    font-size: calc(0.1632653061vw + 1.2387755102rem);
  }
}
.p-internship_schedule__item .en .number {
  font-size: 6rem;
  line-height: 0.75;
  margin-right: 0.1em;
  color: #ffffff;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media only screen and (max-width: 1599px) {
  .p-internship_schedule__item .en .number {
    font-size: calc(1.2244897959vw + 4.0408163265rem);
  }
}
.-technical .p-internship_schedule__item .en {
  color: #0075c2;
}
.-technical .p-internship_schedule__item .en .number {
  -webkit-text-stroke: 1px #0075c2;
  text-stroke: 1px #0075c2;
}
.-work-place .p-internship_schedule__item .en {
  color: #00a9ba;
}
.-work-place .p-internship_schedule__item .en .number {
  -webkit-text-stroke: 1px #00a9ba;
  text-stroke: 1px #00a9ba;
}
.-office-work .p-internship_schedule__item .en {
  color: #7b639f;
}
.-office-work .p-internship_schedule__item .en .number {
  -webkit-text-stroke: 1px #7b639f;
  text-stroke: 1px #7b639f;
}

.p-internship_day__result {
  margin-top: -30px;
  padding-left: 55px;
  padding-right: 55px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__result {
    margin-top: calc(-1.2244897959vw + -10.4081632653px);
    padding-right: calc(2.8571428571vw + 9.2857142857px);
    padding-left: calc(2.8571428571vw + 9.2857142857px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_day__result {
    margin-top: calc(1.6326530612vw + 23.8775510204px);
  }
}
.p-internship_day__result__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 700px;
  height: 80px;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #ffffff;
  border-radius: 9999px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__result__item {
    font-size: calc(0.3265306122vw + 1.4775510204rem);
    height: calc(1.6326530612vw + 53.8775510204px);
  }
}
.-technical .p-internship_day__result__item {
  border: 1px solid #0075c2;
  background-color: #0075c2;
}
.-technical .p-internship_day__result__item .color {
  color: #0075c2;
}
.-work-place .p-internship_day__result__item {
  border: 1px solid #00a9ba;
  background-color: #00a9ba;
}
.-work-place .p-internship_day__result__item .color {
  color: #00a9ba;
}
.-office-work .p-internship_day__result__item {
  border: 1px solid #7b639f;
  background-color: #7b639f;
}
.-office-work .p-internship_day__result__item .color {
  color: #7b639f;
}
.plus + .p-internship_day__result__item {
  color: #111111;
  background-color: #ffffff;
}
.p-internship_day__result .plus {
  width: 35px;
  height: 35px;
  display: block;
  position: relative;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__result .plus {
    width: calc(0.8163265306vw + 21.9387755102px);
    height: calc(0.8163265306vw + 21.9387755102px);
    margin-top: calc(0.4081632653vw + 8.4693877551px);
    margin-bottom: calc(0.4081632653vw + 8.4693877551px);
  }
}
.p-internship_day__result .plus::before, .p-internship_day__result .plus::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  border-bottom: 1px solid;
}
.p-internship_day__result .plus::after {
  transform: rotate(90deg);
}
.-technical .p-internship_day__result .plus {
  color: #0075c2;
}
.-work-place .p-internship_day__result .plus {
  color: #00a9ba;
}
.-office-work .p-internship_day__result .plus {
  color: #7b639f;
}
.p-internship_day__list {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  counter-reset: internship-day;
  margin-top: 60px;
  margin-bottom: -30px;
  flex-wrap: wrap;
}
.p-internship_day__list.-add {
  margin-bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__list {
    margin-top: calc(1.6326530612vw + 33.8775510204px);
    margin-left: calc(-0.8163265306vw + -6.9387755102px);
    margin-right: calc(-0.8163265306vw + -6.9387755102px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_day__list {
    display: block;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-internship_day__item {
  counter-increment: internship-day;
  width: 100%;
  max-width: 50%;
  min-width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px;
}
.p-internship_day__list.-add .p-internship_day__item {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-internship_day__list.-add .p-internship_day__item {
    margin-bottom: calc(1.6326530612vw + 13.8775510204px);
  }
  .p-internship_day__list.-add .p-internship_day__item:last-child {
    margin-bottom: 0;
  }
}
.p-internship_day__item.-full {
  min-width: 0;
  max-width: 100%;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__item {
    padding-left: calc(0.8163265306vw + 6.9387755102px);
    padding-right: calc(0.8163265306vw + 6.9387755102px);
  }
}
@media only screen and (max-width: 767px) {
  .p-internship_day__item {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: calc(1.6326530612vw + 13.8775510204px);
  }
  .p-internship_day__item:last-child {
    margin-bottom: 0;
  }
}
.p-internship_day__item__container {
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #dddddd;
  padding: 0 40px 40px;
  height: 100%;
}
.p-internship_day__list.-add .p-internship_day__item__container {
  padding: 0 40px 80px;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__list.-add .p-internship_day__item__container {
    padding: 0 calc(1.6326530612vw + 13.8775510204px) calc(3.2653061224vw + 27.7551020408px);
  }
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__item__container {
    padding: 0 calc(1.6326530612vw + 13.8775510204px) calc(1.6326530612vw + 13.8775510204px);
  }
}
.p-internship_day__item__container .c-blockimage {
  border-radius: 15px;
  margin-top: 30px;
  overflow: hidden;
  z-index: 0;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__item__container .c-blockimage {
    margin-top: calc(0.8163265306vw + 16.9387755102px);
  }
}
.p-internship_day__item__container .c-blockimage::before {
  padding-top: 63.6363636364%;
}
.-gray .p-internship_day__item__container {
  border: none;
}
.p-internship_day__item__container .title {
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: "UD新ゴ M", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__item__container .title {
    font-size: calc(0.4897959184vw + 1.8163265306rem);
  }
}
.p-internship_day__item__container .title::after {
  content: "";
  display: block;
  border-bottom: 2px dotted;
  width: 1.25em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5em;
}
.-technical .p-internship_day__item__container .title::after {
  color: #0075c2;
}
.-work-place .p-internship_day__item__container .title::after {
  color: #00a9ba;
}
.-office-work .p-internship_day__item__container .title::after {
  color: #7b639f;
}
.p-internship_day__item__container .title small {
  display: block;
  font-family: "UD新ゴ L", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__item__container .title small {
    font-size: calc(0.3265306122vw + 1.2775510204rem);
  }
}
.-job .p-internship_day__item__container .label::before {
  content: "Job " counter(internship-day, decimal-leading-zero);
}
.-work .p-internship_day__item__container .label::before {
  content: "Work " counter(internship-day, decimal-leading-zero);
}
.p-internship_day__item__container .label {
  display: flex;
  color: #ffffff;
  justify-content: center;
  font-size: 1.4rem;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .p-internship_day__item__container .label {
    font-size: calc(0.1632653061vw + 1.1387755102rem);
  }
}
.p-internship_day__item__container .label::before {
  padding: 0.75em 1em;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.-technical .p-internship_day__item__container .label::before {
  background-color: #0075c2;
}
.-work-place .p-internship_day__item__container .label::before {
  background-color: #00a9ba;
}
.-office-work .p-internship_day__item__container .label::before {
  background-color: #7b639f;
}

/* COURSE table style */
@media only screen and (max-width: 1599px) {
  .p-information-requirements__area__table .course th,
  .p-information-requirements__area__table .course td {
    font-size: calc(0vw + 1.3rem);
    padding: calc(0.4vw + 6.9387755102px) calc(0.2244897959vw + 6.4081632653px);
  }
  .p-information-requirements__area__table .course th.course_field{
	
	padding: calc(0.4vw + 6.9387755102px) calc(0.2244897959vw + 2.4081632653px);
  }

  .p-information-requirements__area__table .course th.course_field span{
    writing-mode: vertical-rl;
    white-space: pre;
  }
}

@media only screen and (max-width: 767px) {
	.p-information-requirements__area__table .course th.subject_major{
		width: 7%;
	}
}

