@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
  These remedies are recommended
  as a starter for any project.
category: file
*/
/* @docs
label: Box Sizing
note: |
  Use border-box by default, globally.
category: global
*/
*, ::before, ::after {
  box-sizing: border-box;
}

/* @docs
label: Line Sizing
note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.
links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property
category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins
note: |
  Remove the tiny space around the edge of the page.
category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute
note: |
  Maintain `hidden` behaviour when overriding `display` values.
  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes
note: |
  Switch to rem units for headings
category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins
note: |
  Keep h1 margins consistent, even when nested.
category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping
note: |
  Overflow by default is bad...
category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule
note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`
category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds
note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default
category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images
note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.
  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely
category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios
note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.
category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width
note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.
category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders
note: |
  Remove the border on images inside links in IE 10 and earlier.
category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow
note: |
  Hide the overflow in IE 10 and earlier.
category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements
note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)
links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/
category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs
note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10
category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*---------------------------------
  variable
---------------------------------*/
/* layout */
/* color */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  font-size: 1.4rem;
  word-break: break-all;
  color: #3e3a39;
}
@media (min-width: 1024px) {
  body {
    font-size: 1.8rem;
  }
}

img {
  display: inline;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

a {
  text-decoration: none;
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) {
  .tab {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 1024px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 1024px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 1024px) {
  .pc {
    display: block;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}
@media (min-width: 1366px) {
  .pc-only {
    display: none;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1366px) {
  .desktop {
    display: block;
  }
}

.desktop-none {
  display: block;
}
@media (min-width: 1366px) {
  .desktop-none {
    display: none;
  }
}

/* font */
.f_serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.f_en {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.italic {
  font-style: italic;
}

/* contents */
.page__kv {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .page__kv {
    padding-top: 100px;
  }
}
.page__kv .catch.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.page__kv .catch.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.center {
  text-align: center;
}

/*---------------------------------
  footer
---------------------------------*/
#foot__cv {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
@media (min-width: 769px) {
  #foot__cv {
    padding: 100px 0;
    gap: 50px;
  }
}
@media (min-width: 1600px) {
  #foot__cv {
    padding: 200px 0;
  }
}
#foot__cv p {
  text-align: center;
}
#foot__cv a {
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #foot__cv a:hover {
    opacity: 0.7;
  }
}

#footer {
  background-color: #0b318f;
  color: #fff;
  padding-bottom: 80px;
}
@media (min-width: 1481px) {
  #footer {
    padding-bottom: 30px;
  }
}
#footer .foot__nav__wrap .item a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  #footer .foot__nav__wrap {
    padding-bottom: 50px;
  }
  #footer .foot__nav__wrap .foot__nav__logo {
    padding: 15px 0 15px 15px;
  }
  #footer .foot__nav__wrap .foot__nav__logo img {
    height: 28px;
  }
  #footer .foot__nav__wrap .items {
    padding: 0 25px;
  }
  #footer .foot__nav__wrap .items .item a, #footer .foot__nav__wrap .items .item p {
    display: block;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 0.8rem 0;
  }
  #footer .foot__nav__wrap .items .item:first-of-type p {
    border-top: 1px solid #fff;
  }
  #footer .foot__nav__wrap .items .item a {
    position: relative;
  }
  #footer .foot__nav__wrap .items .item a::after {
    content: "";
    display: block;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background-color: #fff;
    width: 12px;
    height: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  #footer .foot__nav__wrap .items .item .inner_nav li a {
    padding-left: 2rem;
  }
  #footer .foot__nav__wrap .items .item__btn {
    display: none;
  }
}
@media (min-width: 769px) {
  #footer .foot__nav__wrap {
    padding-top: 60px;
    display: flex;
    margin-left: 30px;
    margin-right: 30px;
  }
  #footer .foot__nav__wrap .foot__nav__logo {
    margin-right: 5%;
  }
  #footer .foot__nav__wrap .foot__nav__logo img {
    height: 38px;
  }
  #footer .foot__nav__wrap .items {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  #footer .foot__nav__wrap .items .item {
    width: 50%;
    margin-bottom: 60px;
  }
  #footer .foot__nav__wrap .items .item a, #footer .foot__nav__wrap .items .item p {
    color: #fff;
  }
  #footer .foot__nav__wrap .items .item p {
    padding: 0.5rem 0;
  }
  #footer .foot__nav__wrap .items .item li {
    padding: 0.5rem 0;
  }
  #footer .foot__nav__wrap .items .item .inner_nav li a {
    padding-left: 2rem;
  }
  #footer .foot__nav__wrap .items .item__btn {
    margin-top: 30px;
  }
  #footer .foot__nav__wrap .items .item__btn img {
    width: 160px;
  }
}
@media (min-width: 1600px) {
  #footer .foot__nav__wrap {
    margin-left: 60px;
    margin-right: 60px;
  }
  #footer .foot__nav__wrap .foot__nav__logo {
    margin-right: 9%;
  }
  #footer .foot__nav__wrap .foot__nav__logo img {
    height: 48px;
  }
  #footer .foot__nav__wrap .items {
    width: 70%;
  }
}
#footer .copy {
  text-align: center;
  font-weight: 400;
}

/*---------------------------------
  header
---------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
}
#header .nav__wrap .item a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
#header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #header {
    height: 50px;
  }
  #header .header__inner {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #header .logo img {
    height: 28px;
  }
  #header .nav__box {
    display: none;
  }
  #header .nav__hamburger {
    width: 25px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #header .nav__hamburger span {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #header .nav__hamburger.is-active span {
    background-color: #fff;
  }
  #header .nav__hamburger.is-active span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(35deg) scaleX(1.4);
            transform: translateY(9px) rotate(35deg) scaleX(1.4);
  }
  #header .nav__hamburger.is-active span:nth-child(2) {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  #header .nav__hamburger.is-active span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-35deg) scaleX(1.4);
            transform: translateY(-9px) rotate(-35deg) scaleX(1.4);
  }
}
@media (min-width: 769px) {
  #header {
    height: 100px;
  }
  #header .header__inner {
    height: 100px;
    padding-left: 3.13vw;
    padding-right: 9.38vw;
    justify-content: space-between;
  }
  #header .logo a {
    display: block;
    height: 3.28vw;
  }
  #header .logo a img {
    height: 100%;
    width: auto;
  }
  #header .nav__box {
    display: none;
  }
  #header .nav__hamburger {
    width: 88px;
    height: 38px;
    position: absolute;
    top: 35px;
    right: 2.6vw;
    z-index: 100;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #header .nav__hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #header .nav__hamburger.is-active span {
    background-color: #000;
  }
  #header .nav__hamburger.is-active span:nth-child(1) {
    -webkit-transform: translateY(18px) rotate(35deg);
            transform: translateY(18px) rotate(35deg);
  }
  #header .nav__hamburger.is-active span:nth-child(2) {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  #header .nav__hamburger.is-active span:nth-child(3) {
    -webkit-transform: translateY(-18px) rotate(-35deg);
            transform: translateY(-18px) rotate(-35deg);
  }
}
@media (min-width: 1481px) {
  #header .item__right {
    display: flex;
    align-items: center;
  }
  #header .nav__box {
    display: block;
    margin-right: 0.8vw;
  }
  #header .nav__box ul {
    display: flex;
  }
  #header .nav__box a {
    color: #000;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 1.3vw;
    cursor: default;
  }
}
@media (min-width: 1640px) {
  #header .header__inner {
    padding-left: 60px;
    padding-right: 180px;
  }
  #header .logo a {
    display: block;
    height: 63px;
  }
  #header .logo a img {
    height: 100%;
    width: auto;
  }
}
@media (max-width: 768px) {
  #header .nav__wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b318f;
    color: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  #header .nav__wrap.is-active {
    opacity: 1;
    visibility: visible;
  }
  #header .nav__wrap .nav__logo {
    padding: 15px 0 15px 15px;
  }
  #header .nav__wrap .nav__logo img {
    height: 28px;
  }
  #header .nav__wrap .items {
    padding: 0 25px;
  }
  #header .nav__wrap .items .item a, #header .nav__wrap .items .item p {
    display: block;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 0.8rem 0;
  }
  #header .nav__wrap .items .item:first-of-type p {
    border-top: 1px solid #fff;
  }
  #header .nav__wrap .items .item a {
    position: relative;
  }
  #header .nav__wrap .items .item a::after {
    content: "";
    display: block;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background-color: #fff;
    width: 12px;
    height: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  #header .nav__wrap .items .item .inner_nav li a {
    padding-left: 2rem;
  }
  #header .nav__wrap .items .item__btn {
    display: none;
  }
}
@media (min-width: 769px) {
  #header .nav__wrap {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b318f;
    color: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 60px;
    padding-bottom: 100px;
  }
  #header .nav__wrap.is-active {
    opacity: 1;
    visibility: visible;
  }
  #header .nav__wrap .nav__logo {
    display: none;
  }
  #header .nav__wrap .items {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  #header .nav__wrap .items .item {
    width: 50%;
    margin-bottom: 60px;
  }
  #header .nav__wrap .items .item a, #header .nav__wrap .items .item p {
    color: #fff;
  }
  #header .nav__wrap .items .item p {
    padding: 0.5rem 0;
  }
  #header .nav__wrap .items .item li {
    padding: 0.5rem 0;
  }
  #header .nav__wrap .items .item .inner_nav li a {
    padding-left: 2rem;
  }
  #header .nav__wrap .items .item__btn {
    margin-top: 30px;
  }
  #header .nav__wrap .items .item__btn img {
    width: 160px;
  }
}
@media (min-width: 1600px) {
  #header .nav__wrap .items {
    width: 70%;
  }
}
@media (max-width: 1480px) {
  #header .head__btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
  }
  #header .head__btns .items {
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 10px;
  }
}
@media (min-width: 1481px) {
  #header .head__btns .items {
    display: flex;
  }
  #header .head__btns .items .item:not(:first-of-type) {
    margin-left: 10px;
  }
}

.megamemu {
  display: none;
}
.megamemu a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media (max-width: 1480px) {
  .megamemu.__btn__entry {
    display: block;
    position: fixed;
    bottom: 56px;
    left: 0;
    width: 100%;
    background-color: #0b318f;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .megamemu.__btn__entry.is-active {
    opacity: 1;
    visibility: visible;
  }
  .megamemu.__btn__entry .megamemu__inner {
    padding: 20px;
    position: relative;
  }
  .megamemu.__btn__entry .megamemu__inner ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .megamemu.__btn__entry .megamemu__inner li {
    width: 200px;
  }
  .megamemu.__btn__entry .megamemu__inner a {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    display: block;
    text-align: center;
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
  }
  .megamemu.__btn__entry .btn__close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .megamemu.__btn__entry .btn__close span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .megamemu.__btn__entry .btn__close span:first-child {
    -webkit-transform: rotate(35deg) scaleX(1.4);
            transform: rotate(35deg) scaleX(1.4);
    margin-bottom: -2px;
  }
  .megamemu.__btn__entry .btn__close span:last-child {
    -webkit-transform: rotate(-35deg) scaleX(1.4);
            transform: rotate(-35deg) scaleX(1.4);
  }
}
@media (max-width: 768px) {
  .megamemu.__btn__entry .megamemu__inner li {
    width: 40%;
  }
}
.megamemu.__btn__entry ul {
  display: flex;
  gap: 100px;
}
.megamemu.__btn__entry li {
  border: 1px solid #fff;
}
.megamemu.__btn__entry a {
  font-family: "Noto Sans JP", sans-serif;
  width: 240px;
  display: block;
  text-align: center;
  padding: 1rem;
}
@media (min-width: 1481px) {
  .megamemu {
    background-color: #0b318f;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .megamemu.is-active {
    opacity: 1;
    visibility: visible;
  }
  .megamemu .megamemu__inner {
    padding: 30px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .megamemu .megamemu__inner p {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
  }
  .megamemu .megamemu__inner ul li {
    margin-top: 1.5rem;
  }
  .megamemu .megamemu__inner ul li a {
    color: #fff;
    padding: 8px 0;
    transition: 0.3s;
  }
  .megamemu .megamemu__inner ul li a:hover {
    opacity: 0.7;
  }
}

/*---------------------------------
  btn
---------------------------------*/
.btn__item {
  text-align: center;
}
.btn__item a, .btn__item span {
  display: block;
  border: 1px solid #fff;
  width: 33.6vw;
  padding: 0.8vw 5.33vw 2.13vw;
  border-radius: 100px;
  margin: 0 auto;
  transition: 0.3s;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn__item a, .btn__item span {
    width: 126px;
    padding: 0.3rem 2rem 0.8rem;
  }
}
@media (min-width: 1024px) {
  .btn__item a, .btn__item span {
    width: 180px;
    padding: 0.8rem 3rem 1.3rem;
  }
}
@media (min-width: 1024px) {
  .btn__item a:hover, .btn__item span:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

/*---------------------------------
  btn
---------------------------------*/
.js-anime.slide_up {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.js-anime.slide_up.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*---------------------------------
  btn
---------------------------------*/
.recruit_ttl {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .recruit_ttl {
    margin-top: 186px;
    margin-bottom: 100px;
  }
}
.recruit_ttl span {
  display: block;
  font-size: 1.2rem;
  margin-top: 20px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .recruit_ttl span {
    font-size: 2.4rem;
    margin-top: 40px;
  }
}
@media (min-width: 520px) {
  .recruit_ttl .sp img {
    width: auto;
  }
}

/*---------------------------------
  top
---------------------------------*/
/* kv */
#kv {
  position: relative;
  height: 177.87vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  #kv {
    height: 55.5vw;
  }
}
#kv .catch {
  position: absolute;
  bottom: 28vw;
  left: 0;
  width: 80%;
  z-index: 10;
}
@media (min-width: 768px) {
  #kv .catch {
    bottom: 19.79vw;
    width: 79vw;
  }
}
#kv .catch span {
  display: block;
}
@media (min-width: 768px) {
  #kv .catch .maincatch {
    width: 100%;
  }
}
#kv .catch .maincatch.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
@media (min-width: 1024px) {
  #kv .catch .maincatch.js-anime {
    -webkit-transform: translate(850px, 0);
            transform: translate(850px, 0);
  }
}
#kv .catch .maincatch.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#kv .catch .subcatch {
  width: 74.5%;
  margin-top: 8vw;
  margin-left: 5.33vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  #kv .catch .subcatch {
    margin-top: 3.13vw;
    width: 57.86%;
    height: 3.53vw;
  }
}
#kv .catch .subcatch img {
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .catch .subcatch img.js-anime {
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.6s;
  -webkit-transform: translate(0, 200px);
          transform: translate(0, 200px);
}
@media (min-width: 1024px) {
  #kv .catch .subcatch img.js-anime {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
}
#kv .catch .subcatch img.js-anime.is-active {
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#kv .slides {
  position: relative;
  width: 100%;
  height: 177.87vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  #kv .slides {
    height: 55.5vw;
  }
}
#kv .slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
#kv .slides .slide:first-child {
  display: block;
}

/* intro */
#intro {
  background: url(/asset/images/top/intro_bg_sp.png) no-repeat center center;
  background-size: auto 100%;
}
@media (min-width: 1024px) {
  #intro {
    background: url(/asset/images/top/intro_bg_pc.png) no-repeat center right 0;
    background-size: auto 100%;
    display: flex;
    justify-content: center;
  }
}
#intro .inner {
  padding: 50px 15px 0;
}
@media (min-width: 1024px) {
  #intro .inner {
    padding: 7.81vw 0;
  }
}
#intro p {
  line-height: 2.5;
}
@media (min-width: 1024px) {
  #intro p {
    font-size: 2.4rem;
  }
}
#intro h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  #intro h2 {
    font-size: 3.2rem;
  }
}

/* top__company */
#top__company {
  background: url(/asset/images/top/top__company_bg_sp.png) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 16vw 0;
}
#top__company.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
#top__company.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  #top__company {
    margin-top: -16vw;
  }
}
#top__company .inner {
  height: 66.67vw;
  padding-top: 7vw;
}
@media (min-width: 1024px) {
  #top__company .inner {
    padding-top: 15vw;
  }
}
@media (min-width: 1366px) {
  #top__company .inner {
    padding-top: 18vw;
  }
}
#top__company h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 22.67vw;
}
@media (min-width: 520px) {
  #top__company h2 {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  #top__company h2 {
    font-size: 3.4rem;
  }
}
@media (min-width: 1024px) {
  #top__company h2 {
    font-size: 4.4rem;
    margin-bottom: 8vw;
  }
}
@media (min-width: 1366px) {
  #top__company h2 {
    font-size: 5.4rem;
    margin-bottom: 10vw;
  }
}

/* top__logisticsstory */
#top__logisticsstory {
  background: #dcdddd url(/asset/images/top/top__logisticsstory_bg.svg) no-repeat top right;
  background-size: 90%;
  padding-top: 45px;
  padding-bottom: 115px;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #top__logisticsstory {
    background: #dcdddd url(/asset/images/top/top__logisticsstory_bg.svg) no-repeat top right;
    background-size: 70%;
    padding-top: 90px;
    padding-bottom: 150px;
    margin-bottom: 190px;
  }
}
#top__logisticsstory h2 {
  color: #898989;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #top__logisticsstory h2 {
    font-size: 8rem;
    margin-bottom: 70px;
  }
}
#top__logisticsstory .main_lead {
  text-align: center;
  line-height: 2;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #top__logisticsstory .main_lead {
    font-size: 2rem;
    margin-bottom: 100px;
  }
}
#top__logisticsstory .item {
  color: #fff;
  text-align: center;
  padding-top: 40px;
  width: 90%;
  position: relative;
}
#top__logisticsstory .item.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
#top__logisticsstory .item.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  #top__logisticsstory .item {
    padding-top: 0;
    width: 78.13%;
    height: 39.58vw;
    display: flex;
    align-items: center;
  }
}
#top__logisticsstory .item .inner.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}
#top__logisticsstory .item .inner.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top__logisticsstory .item h3 {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #top__logisticsstory .item h3 {
    margin-bottom: 3.13vw;
  }
}
#top__logisticsstory .item h3 span {
  display: block;
}
#top__logisticsstory .item h3 .main {
  font-size: 4rem;
  opacity: 0.45;
}
@media (min-width: 1024px) {
  #top__logisticsstory .item h3 .main {
    font-size: 6.8rem;
  }
}
@media (min-width: 1366px) {
  #top__logisticsstory .item h3 .main {
    font-size: 8.8rem;
  }
}
#top__logisticsstory .item h3 .sub {
  font-size: 2.4rem;
  margin-top: -25px;
}
@media (min-width: 1024px) {
  #top__logisticsstory .item h3 .sub {
    font-size: 3.4rem;
    margin-top: -36px;
  }
}
@media (min-width: 1366px) {
  #top__logisticsstory .item h3 .sub {
    font-size: 4.4rem;
    margin-top: -45px;
  }
}
#top__logisticsstory .item .lead {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #top__logisticsstory .item .lead {
    margin-bottom: 3.13vw;
  }
}
#top__logisticsstory .item .ph {
  position: relative;
  bottom: -40px;
}
@media (min-width: 768px) {
  #top__logisticsstory .item .ph {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  #top__logisticsstory .item .ph {
    width: 30vw;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #top__logisticsstory .item .ph.js-anime {
    opacity: 0;
    visibility: hidden;
    transition: 1.5s;
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
  }
  #top__logisticsstory .item .ph.js-anime.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media (min-width: 1366px) {
  #top__logisticsstory .item .ph {
    width: 35.42vw;
  }
}
#top__logisticsstory .for_industry {
  background: url(/asset/images/top/top__logistic_for_industry_bg_sp.jpg) no-repeat top center;
  background-size: 100% auto;
  margin-bottom: 90px;
}
@media (min-width: 1024px) {
  #top__logisticsstory .for_industry {
    background: url(/asset/images/top/top__logistic_for_industry_bg_pc.jpg) no-repeat top center;
    background-size: 100% auto;
    margin-bottom: 180px;
  }
}
@media (min-width: 1024px) {
  #top__logisticsstory .for_industry .inner {
    margin-left: 15.63vw;
  }
}
#top__logisticsstory .for_industry .ph {
  right: -5%;
  margin-left: auto;
}
@media (min-width: 1024px) {
  #top__logisticsstory .for_industry .ph {
    right: -10%;
  }
}
#top__logisticsstory .for_life {
  background: url(/asset/images/top/top__logistic_for_life_bg_sp.jpg) no-repeat top center;
  background-size: 100% auto;
  margin-left: auto;
}
@media (min-width: 1024px) {
  #top__logisticsstory .for_life {
    background: url(/asset/images/top/top__logistic_for_life_bg_pc.jpg) no-repeat top center;
    background-size: 100% auto;
  }
}
@media (min-width: 1024px) {
  #top__logisticsstory .for_life .inner {
    margin-right: 15.63vw;
    margin-left: auto;
  }
}
#top__logisticsstory .for_life .ph {
  left: -5%;
  margin-right: auto;
}
@media (min-width: 1024px) {
  #top__logisticsstory .for_life .ph {
    left: -10%;
  }
}

/* top__work */
#top__work {
  background: url(/asset/images/top/top__work_bgy_sp.jpg) no-repeat left center;
  background-size: auto 100%;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #top__work {
    background: url(/asset/images/top/top__work_bgy_pc.jpg) no-repeat left center;
    background-size: auto 100%;
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #top__work {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
}
#top__work h2 {
  color: #898989;
  text-align: center;
  font-size: 3.4rem;
  padding: 20px 0;
}
@media (min-width: 768px) {
  #top__work h2 {
    color: #fff;
    opacity: 0.7;
  }
}
@media (min-width: 1024px) {
  #top__work h2 {
    font-size: 8rem;
  }
}
#top__work .main_lead {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #top__work .main_lead {
    font-size: 3.2rem;
  }
}
#top__work .lead {
  line-height: 2;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #top__work .lead {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  #top__work .lead {
    margin-bottom: 40px;
  }
}
#top__work .inner {
  background: url(/asset/images/top/top__work_bgp_sp.jpg) no-repeat top center;
  background-size: cover;
  color: #fff;
  padding: 25px 40px;
}
@media (min-width: 768px) {
  #top__work .inner {
    background: url(/asset/images/top/top__work_bgp_pc.jpg) no-repeat center;
    background-size: cover;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #top__work .inner {
    padding: 100px 100px;
  }
}
@media (min-width: 1366px) {
  #top__work .inner {
    width: 75%;
  }
}

/* top__interview */
#top__interview {
  background: #dcdddd;
  height: 137.07vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #top__interview {
    height: 66.46vw;
    background: none;
    position: relative;
    margin-bottom: 100px;
  }
  #top__interview::before {
    content: "";
    display: block;
    width: 73%;
    height: 100%;
    background: #dcdddd;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
#top__interview .inner {
  color: #fff;
  width: 84%;
  height: 70.4vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
#top__interview .inner::before {
  content: "";
  display: block;
  background: rgba(11, 49, 143, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top__interview .inner.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
#top__interview .inner.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  #top__interview .inner {
    width: 50%;
    height: 44vw;
  }
}
@media (min-width: 1366px) {
  #top__interview .inner {
    width: 480px;
    height: 428px;
  }
}
#top__interview h2 {
  font-size: 3.4rem;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 3.5vw;
}
@media (min-width: 768px) {
  #top__interview h2 {
    font-size: 5.4rem;
  }
}
@media (min-width: 1024px) {
  #top__interview h2 {
    font-size: 6.4rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 1366px) {
  #top__interview h2 {
    font-size: 8rem;
  }
}
#top__interview .main_lead {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2.67vw;
}
@media (min-width: 768px) {
  #top__interview .main_lead {
    font-size: 2.4rem;
  }
}
@media (min-width: 1024px) {
  #top__interview .main_lead {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 1366px) {
  #top__interview .main_lead {
    font-size: 3.2rem;
  }
}
#top__interview .lead {
  line-height: 2;
}
@media (min-width: 1024px) {
  #top__interview .lead {
    text-align: center;
  }
}
#top__interview .btn__item {
  margin-top: 4vw;
}
@media (min-width: 1024px) {
  #top__interview .btn__item {
    margin-top: 20px;
  }
}
#top__interview .ph {
  width: 92%;
  text-align: center;
}
#top__interview .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
#top__interview .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* top__crosstalk */
#top__crosstalk {
  background: linear-gradient(to right, #cefff6, #fffb9a);
  padding-top: 25px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #top__crosstalk {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk {
    background: none;
    position: relative;
    margin-bottom: 100px;
  }
  #top__crosstalk::before {
    content: "";
    display: block;
    background: linear-gradient(to right, #cefff6, #fffb9a);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 86.46%;
    z-index: -1;
  }
}
#top__crosstalk h2 {
  color: #898989;
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #top__crosstalk h2 {
    font-size: 8rem;
    margin-bottom: 50px;
  }
}
#top__crosstalk .lead {
  width: 79.2%;
  margin: 0 auto 25px;
  line-height: 2;
}
@media (min-width: 768px) {
  #top__crosstalk .lead {
    width: auto;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk .lead {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  #top__crosstalk .items {
    width: 82.55%;
    margin: 0 auto;
  }
}
#top__crosstalk .item {
  display: block;
  transition: 0.3s;
}
@media (min-width: 768px) {
  #top__crosstalk .item {
    position: relative;
  }
}
#top__crosstalk .item .img {
  width: 92%;
  margin: 0 auto;
  transition: 0.3s;
}
@media (min-width: 768px) {
  #top__crosstalk .item .img {
    width: 84.5%;
    margin: 0;
  }
}
#top__crosstalk .item .btn {
  color: #fff;
  border-radius: 20px;
  text-align: center;
  width: 56%;
  height: 113px;
  margin: 0 auto;
  position: relative;
  top: -35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #top__crosstalk .item .btn {
    width: 160px;
    position: absolute;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk .item .btn {
    width: 230px;
    height: 160px;
  }
}
@media (min-width: 1366px) {
  #top__crosstalk .item .btn {
    width: 280px;
    height: 206px;
  }
}
#top__crosstalk .item .btn .btn__item {
  margin-top: 13px;
}
#top__crosstalk .item.crosstalk01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
#top__crosstalk .item.crosstalk01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #top__crosstalk .item.crosstalk01 {
    height: 42.19vw;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk .item.crosstalk01:hover .img {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  #top__crosstalk .item.crosstalk01:hover .btn__item span {
    background: rgba(255, 255, 255, 0.3);
  }
}
#top__crosstalk .item.crosstalk01 .btn {
  background-color: #00a3be;
}
@media (min-width: 768px) {
  #top__crosstalk .item.crosstalk01 .btn {
    top: auto;
    left: 72%;
    bottom: 20%;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk .item.crosstalk01 .btn {
    bottom: 15%;
  }
}
#top__crosstalk .item.crosstalk02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
#top__crosstalk .item.crosstalk02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #top__crosstalk .item.crosstalk02 {
    height: 36.98vw;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk .item.crosstalk02:hover .img {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  #top__crosstalk .item.crosstalk02:hover .btn__item span {
    background: rgba(255, 255, 255, 0.3);
  }
}
#top__crosstalk .item.crosstalk02 .img {
  margin-left: auto;
}
#top__crosstalk .item.crosstalk02 .btn {
  background-color: #449978;
}
@media (min-width: 768px) {
  #top__crosstalk .item.crosstalk02 .btn {
    top: auto;
    right: 75%;
    bottom: 5%;
  }
}
@media (min-width: 1024px) {
  #top__crosstalk .item.crosstalk02 .btn {
    bottom: 3%;
  }
}

/* top__spirits */
#top__spirits {
  background: url(/asset/images/top/top__spirits_bg_sp.jpg) no-repeat center;
  background-size: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 50px 0;
  margin-bottom: 50px;
}
#top__spirits.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
#top__spirits.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 1024px) {
  #top__spirits {
    background: url(/asset/images/top/top__spirits_bg_pc.jpg) no-repeat center;
    background-size: cover;
    width: 76.88%;
    margin: 0 auto 100px;
    padding: 150px 0;
  }
}
#top__spirits .inner {
  width: 84%;
  margin: 0 auto;
  color: #fff;
  padding: 30px 20px;
  position: relative;
}
#top__spirits .inner::before {
  content: "";
  background: rgba(11, 49, 143, 0.7);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
#top__spirits .inner.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.3s;
}
#top__spirits .inner.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  #top__spirits .inner {
    width: 70%;
  }
}
@media (min-width: 1366px) {
  #top__spirits .inner {
    width: 560px;
    padding: 60px 20px;
  }
}
#top__spirits .inner .txt {
  position: relative;
  z-index: 2;
}
#top__spirits h2 {
  text-align: center;
  font-size: 3.4rem;
  opacity: 0.7;
  margin-bottom: 20px;
}
@media (min-width: 1366px) {
  #top__spirits h2 {
    font-size: 8rem;
  }
}
#top__spirits .main_lead {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media (min-width: 1366px) {
  #top__spirits .main_lead {
    font-size: 3.2rem;
  }
}
#top__spirits .lead {
  line-height: 2;
}
@media (min-width: 768px) {
  #top__spirits .lead {
    text-align: center;
  }
}
#top__spirits .btn__item {
  margin-top: 20px;
}

/* top__recruit */
#top__recruit {
  background-color: #dcdddd;
  padding: 20px 0;
}
@media (min-width: 1366px) {
  #top__recruit {
    padding: 60px 0;
  }
}
#top__recruit h2 {
  color: #898989;
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 20px;
}
@media (min-width: 1366px) {
  #top__recruit h2 {
    font-size: 8rem;
    margin-bottom: 100px;
  }
}
#top__recruit .items {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #top__recruit .items {
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 4.9%;
  }
}
@media (min-width: 1366px) {
  #top__recruit .items {
    width: 100%;
    max-width: 1400px;
    gap: 94px;
  }
}
#top__recruit .items .item {
  display: block;
  padding: 35px 0;
}
#top__recruit .items .item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #top__recruit .items .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
#top__recruit .items .item.training {
  background: url(/asset/images/top/top__recruit_training_bg_sp.jpg) no-repeat center;
  background-size: cover;
}
#top__recruit .items .item.welfare {
  background: url(/asset/images/top/top__recruit_welfare_bg_sp.jpg) no-repeat center;
  background-size: cover;
}
#top__recruit .items .item.info {
  background: url(/asset/images/top/top__recruit_info_bg_sp.jpg) no-repeat center;
  background-size: cover;
}
#top__recruit .items .item:hover .btn__item span {
  background: rgba(255, 255, 255, 0.3);
}
@media (min-width: 1024px) {
  #top__recruit .items .item {
    width: 32%;
  }
}
@media (min-width: 1366px) {
  #top__recruit .items .item {
    width: 400px;
    padding: 70px 0;
  }
}
#top__recruit .items .item_inner {
  width: 66.67%;
  margin: 0 auto;
  color: #fff;
  padding: 30px 20px;
  position: relative;
  text-align: center;
}
#top__recruit .items .item_inner::before {
  content: "";
  background: rgba(11, 49, 143, 0.7);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  #top__recruit .items .item_inner {
    width: 200px;
  }
}
@media (min-width: 1024px) {
  #top__recruit .items .item_inner {
    width: 240px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#top__recruit .items .item_inner .txt {
  position: relative;
  z-index: 2;
}
#top__recruit .items .item_inner .txt p:not(.btn__item) {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 2;
}

/*---------------------------------
  about_company
---------------------------------*/
#about_company {
  overflow: hidden;
  /* page__title */
  /* field */
  /* column01 */
  /* origin */
  /* column02 */
}
#about_company .page__kv {
  position: relative;
  background: url(/asset/images/about/company/company_kv_sp.jpg) no-repeat center;
  background-size: cover;
  height: 667px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #about_company .page__kv {
    background: url(/asset/images/about/company/company_kv_pc.jpg) no-repeat center;
    background-size: cover;
    height: 880px;
  }
}
#about_company .page__kv .catch {
  color: #fff;
  text-align: center;
  position: relative;
  top: -25px;
}
@media (min-width: 768px) {
  #about_company .page__kv .catch {
    top: -90px;
  }
}
@media (min-width: 1024px) {
  #about_company .page__kv .catch {
    top: auto;
  }
}
#about_company .page__kv .catch h2 {
  width: 50%;
  margin: 0 auto 75px;
}
@media (min-width: 768px) {
  #about_company .page__kv .catch h2 {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  #about_company .page__kv .catch h2 {
    margin: 0 auto 30px;
  }
}
#about_company .page__kv .catch .lead {
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #about_company .page__kv .catch .lead {
    font-size: 3rem;
  }
}
@media (min-width: 1366px) {
  #about_company .page__kv .catch .lead {
    font-size: 4.8rem;
  }
}
@media (min-width: 1024px) {
  #about_company .con {
    display: flex;
    justify-content: space-between;
  }
  #about_company .con.reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) and (min-width: 1366px) {
  #about_company .con.reverse .txt {
    width: 44%;
    margin-left: auto;
    margin-right: 50px;
  }
}
@media (min-width: 1366px) {
  #about_company .con {
    margin-bottom: 200px;
  }
}
#about_company .con .txt {
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 40px;
}
#about_company .con .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#about_company .con .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_company .con .txt {
    padding-top: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  #about_company .con .txt {
    padding-top: 0;
    width: 50%;
  }
}
@media (min-width: 1366px) {
  #about_company .con .txt {
    width: 44%;
    margin-right: auto;
    margin-left: 50px;
  }
}
#about_company .con .txt p {
  line-height: 2;
}
#about_company .con .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#about_company .con .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 1024px) {
  #about_company .con .ph {
    width: 48%;
  }
}
@media (min-width: 1366px) {
  #about_company .con .ph {
    width: 44.27%;
  }
}
#about_company .con .ph img {
  max-width: none;
  width: 100%;
  height: auto;
}
#about_company .con__ttl {
  margin-bottom: 15px;
}
#about_company .con__ttl span {
  display: block;
}
#about_company .con__ttl .pic {
  height: 28px;
  margin-bottom: 10px;
}
@media (min-width: 1366px) {
  #about_company .con__ttl .pic {
    height: 56px;
    margin-bottom: 20px;
  }
}
#about_company .con__ttl .pic img {
  height: 100%;
  width: auto;
}
#about_company .con__ttl .chara {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (min-width: 1366px) {
  #about_company .con__ttl .chara {
    font-size: 3.8rem;
  }
}
#about_company .column01 .inner,
#about_company .column02 .inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  #about_company .column01 .inner,
  #about_company .column02 .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#about_company .field {
  padding-top: 60px;
}
@media (min-width: 1366px) {
  #about_company .field {
    padding-top: 160px;
  }
}
#about_company .column01 {
  background-color: #0b318f;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 40px;
  margin-bottom: 90px;
}
@media (min-width: 1366px) {
  #about_company .column01 {
    width: 67.71%;
    margin: 0 auto 200px;
    padding-top: 30px;
    padding-left: 70px;
    padding-right: 70px;
  }
}
#about_company .column01 h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #about_company .column01 h3 {
    font-size: 2.4rem;
  }
}
@media (min-width: 1366px) {
  #about_company .column01 h3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  #about_company .column01 .items {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
}
@media (min-width: 1366px) {
  #about_company .column01 .items {
    gap: 100px;
  }
}
#about_company .column01 .items .item:not(:last-of-type) {
  margin-bottom: 25px;
}
@media (min-width: 1366px) {
  #about_company .column01 .items .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #about_company .column01 .items .item {
    width: 33.3333333333%;
  }
}
#about_company .column01 .items .item .icon {
  display: block;
  width: 60px;
  margin: 0 auto 15px;
}
@media (min-width: 1366px) {
  #about_company .column01 .items .item .icon {
    width: 90px;
  }
}
#about_company .column01 .items .item dl dt {
  text-align: center;
  font-size: 1.6rem;
}
#about_company .column01 .items .item dl dt::after {
  content: "";
  display: block;
  height: 1px;
  width: 20px;
  background-color: #fff;
  margin: 10px auto;
}
@media (min-width: 1024px) {
  #about_company .column01 .items .item dl dt::after {
    width: 40px;
    margin: 20px auto;
  }
}
@media (min-width: 1024px) {
  #about_company .column01 .items .item dl dt {
    font-size: 2rem;
  }
}
#about_company .column01 .items .item dl dd {
  line-height: 2;
}
@media (min-width: 1024px) {
  #about_company .column01 .items .item dl dd {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  #about_company .origin .txt {
    width: 65%;
  }
}
@media (min-width: 1366px) {
  #about_company .origin .txt {
    width: 70% !important;
  }
}
@media (min-width: 1024px) {
  #about_company .origin .ph {
    width: 30%;
  }
}
@media (min-width: 1366px) {
  #about_company .origin .ph {
    width: 26.04%;
  }
}
#about_company .origin .graph {
  padding-top: 15px;
  text-align: center;
}
@media (min-width: 1366px) {
  #about_company .origin .graph {
    padding-top: 30px;
  }
}
#about_company .column02 {
  background: url(/asset/images/about/company/company_column02_bg_sp.png) no-repeat center bottom;
  background-size: 100% 100%;
  padding-top: 140px;
}
@media (min-width: 1024px) {
  #about_company .column02 {
    background: url(/asset/images/about/company/company_column02_bg_pc.png) no-repeat center bottom;
    background-size: 100% 100%;
    padding-bottom: 50px;
  }
}
@media (min-width: 1366px) {
  #about_company .column02 {
    padding-top: 280px;
    padding-bottom: 150px;
  }
}
#about_company .column02 .inner {
  color: #fff;
}
@media (min-width: 1024px) {
  #about_company .column02 .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1366px) {
  #about_company .column02 .inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #about_company .column02 .inner .txt {
    width: 47%;
  }
}
#about_company .column02 .inner .txt p {
  line-height: 2;
}
#about_company .column02 .inner .img {
  padding-top: 35px;
  padding-bottom: 50px;
  text-align: center;
}
@media (min-width: 1024px) {
  #about_company .column02 .inner .img {
    width: 47%;
  }
}

/*---------------------------------
  about_spirits
---------------------------------*/
#about_spirits {
  overflow: hidden;
  /* page__kv */
  /* sentence__area */
  /* sentence__items */
  /* ideally */
  /* message */
}
#about_spirits .page__kv {
  position: relative;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  #about_spirits .page__kv {
    margin-bottom: 150px;
  }
}
#about_spirits .page__kv .parts {
  width: 210px;
  height: 180px;
  background: url(/asset/images/about/spirits/spirits_kv_parts.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50px;
  left: -10px;
  z-index: -1;
}
@media (min-width: 768px) {
  #about_spirits .page__kv .parts {
    width: 420px;
    height: 360px;
  }
}
@media (min-width: 1024px) {
  #about_spirits .page__kv .parts {
    width: 35.42vw;
    height: 30.36vw;
    top: 100px;
    left: -3.13vw;
  }
}
#about_spirits .page__kv .parts.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(200px, -200px);
          transform: translate(200px, -200px);
}
#about_spirits .page__kv .parts.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#about_spirits .page__kv .catch {
  width: 73%;
  margin: 60px auto 20px;
}
@media (min-width: 768px) {
  #about_spirits .page__kv .catch {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  #about_spirits .page__kv .catch {
    width: 47.55vw;
    margin: 6.25vw 0 80px 5.21vw;
  }
}
#about_spirits .page__kv .catch.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.2s;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#about_spirits .page__kv .catch.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#about_spirits .page__kv .lead {
  text-align: center;
}
#about_spirits .page__kv .lead.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.3s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#about_spirits .page__kv .lead.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#about_spirits .page__kv .lead dt {
  margin-bottom: 50px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  #about_spirits .page__kv .lead dt {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  #about_spirits .page__kv .lead dt {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 1366px) {
  #about_spirits .page__kv .lead dt {
    font-size: 3rem;
    margin-bottom: 25px;
  }
}
#about_spirits .page__kv .lead dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  #about_spirits .page__kv .lead dd {
    font-size: 2.2rem;
  }
}
@media (min-width: 1366px) {
  #about_spirits .page__kv .lead dd {
    font-size: 4rem;
  }
}
#about_spirits .sentence__area {
  height: 128.53vw;
  margin-bottom: 100px;
  position: relative;
}
@media (min-width: 768px) {
  #about_spirits .sentence__area {
    height: 56.77vw;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area {
    max-width: 1024px;
    height: 560px;
    margin: 0 auto 60px;
  }
}
#about_spirits .sentence__area .item {
  position: absolute;
}
#about_spirits .sentence__area .item.js-anime, #about_spirits .sentence__area .item.js-anime-spirits {
  visibility: hidden;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#about_spirits .sentence__area .item.js-anime.is-active, #about_spirits .sentence__area .item.js-anime-spirits.is-active {
  visibility: visible;
}
#about_spirits .sentence__area .bg01 {
  width: 50.67vw;
  top: 0;
  left: 0;
}
#about_spirits .sentence__area .bg01.js-anime-spirits {
  transition-duration: 1s;
  visibility: hidden;
  transition-delay: 3.3s;
  opacity: 0;
  -webkit-transform: scale(200%);
          transform: scale(200%);
}
#about_spirits .sentence__area .bg01.js-anime-spirits.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(100%);
          transform: scale(100%);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .bg01 {
    width: 34.9vw;
    top: 4.17vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .bg01 {
    width: 352px;
    top: 42px;
  }
}
#about_spirits .sentence__area .bg02 {
  width: 69.33vw;
  right: 0;
  bottom: 2.37vw;
}
#about_spirits .sentence__area .bg02.js-anime-spirits {
  transition-duration: 1s;
  visibility: hidden;
  transition-delay: 3.4s;
  opacity: 0;
  -webkit-transform: scale(200%);
          transform: scale(200%);
}
#about_spirits .sentence__area .bg02.js-anime-spirits.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(100%);
          transform: scale(100%);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .bg02 {
    width: 43.96vw;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .bg02 {
    width: 444px;
  }
}
#about_spirits .sentence__area .sentence01 {
  width: 10.67vw;
  top: 0;
  right: 11.2vw;
}
#about_spirits .sentence__area .sentence01.js-anime-spirits {
  transition-duration: 1.2s;
  transition-delay: 0.6s;
  -webkit-transform: translate(0, -500px);
          transform: translate(0, -500px);
}
#about_spirits .sentence__area .sentence01.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence01 {
    width: 7.29vw;
    right: 12.92vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence01 {
    width: 73px;
    right: 130px;
  }
}
#about_spirits .sentence__area .sentence02 {
  width: 61.33vw;
  top: 5.33vw;
  right: 32vw;
}
#about_spirits .sentence__area .sentence02.js-anime-spirits {
  transition-duration: 1.2s;
  transition-delay: 1.2s;
  -webkit-transform: translate(-1000px, 0);
          transform: translate(-1000px, 0);
}
#about_spirits .sentence__area .sentence02.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence02 {
    width: 48.39vw;
    top: 10.42vw;
    right: 35vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence02 {
    width: 488px;
    top: 100px;
    right: 352px;
  }
}
#about_spirits .sentence__area .sentence06 {
  width: 41.87vw;
  top: 45.33vw;
  left: -0.8vw;
}
#about_spirits .sentence__area .sentence06.js-anime-spirits {
  transition-duration: 1.2s;
  transition-delay: 1.5s;
  -webkit-transform: translate(-1000px, 0);
          transform: translate(-1000px, 0);
}
#about_spirits .sentence__area .sentence06.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence06 {
    width: 28.65vw;
    top: 32.19vw;
    left: -0.6vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence06 {
    width: 289px;
    top: 326px;
    left: -5px;
  }
}
#about_spirits .sentence__area .sentence10 {
  width: 54vw;
  bottom: 0;
  left: 4vw;
}
#about_spirits .sentence__area .sentence10.js-anime-spirits {
  transition-duration: 1.5s;
  transition-delay: 1.7s;
  -webkit-transform: translate(1000px, 0);
          transform: translate(1000px, 0);
}
#about_spirits .sentence__area .sentence10.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence10 {
    width: 35.21vw;
    bottom: 3.28vw;
    left: 50.26vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence10 {
    width: 356px;
    bottom: 36px;
    left: 510px;
  }
}
#about_spirits .sentence__area .sentence08 {
  width: 32vw;
  bottom: 17.33vw;
  right: -1vw;
}
#about_spirits .sentence__area .sentence08.js-anime-spirits {
  transition-duration: 1s;
  transition-delay: 1.9s;
  -webkit-transform: translate(1000px, 0);
          transform: translate(1000px, 0);
}
#about_spirits .sentence__area .sentence08.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence08 {
    width: 39.53vw;
    bottom: 11.61vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence08 {
    width: 400px;
    right: 10px;
    bottom: 113px;
  }
}
#about_spirits .sentence__area .sentence04 {
  width: 17.2vw;
  bottom: 24vw;
  right: 40vw;
}
#about_spirits .sentence__area .sentence04.js-anime-spirits {
  transition-duration: 0.8s;
  transition-delay: 2.1s;
  -webkit-transform: translate(0, 300px);
          transform: translate(0, 300px);
}
#about_spirits .sentence__area .sentence04.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence04 {
    width: 6.98vw;
    bottom: 3.91vw;
    right: 58.13vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence04 {
    width: 70px;
    bottom: 39px;
    right: 585px;
  }
}
#about_spirits .sentence__area .sentence09 {
  width: 35.73vw;
  top: 58vw;
  right: 11.33vw;
}
#about_spirits .sentence__area .sentence09.js-anime-spirits {
  transition-duration: 0.5s;
  transition-delay: 2.2s;
  -webkit-transform: translate(300px, 0);
          transform: translate(300px, 0);
}
#about_spirits .sentence__area .sentence09.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence09 {
    width: 24.43vw;
    top: 31.5vw;
    right: 28.85vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence09 {
    width: 247px;
    top: 311px;
    right: 295px;
  }
}
#about_spirits .sentence__area .sentence07 {
  width: 27.33vw;
  top: 22.4vw;
  right: 30.4vw;
}
#about_spirits .sentence__area .sentence07.js-anime-spirits {
  transition-duration: 0.5s;
  transition-delay: 2.4s;
  -webkit-transform: translate(300px, 0);
          transform: translate(300px, 0);
}
#about_spirits .sentence__area .sentence07.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence07 {
    width: 18.23vw;
    top: 19.27vw;
    right: 26.88vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence07 {
    width: 184px;
    top: 198px;
    right: 273px;
  }
}
#about_spirits .sentence__area .sentence05 {
  width: 21.73vw;
  bottom: 17.33vw;
  left: 10.67vw;
}
#about_spirits .sentence__area .sentence05.js-anime-spirits {
  transition-duration: 0.5s;
  transition-delay: 2.4s;
  -webkit-transform: translate(-300px, 0);
          transform: translate(-300px, 0);
}
#about_spirits .sentence__area .sentence05.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence05 {
    width: 25.68vw;
    bottom: 3vw;
    left: 10.89vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence05 {
    width: 259px;
    bottom: 25px;
    left: 98px;
  }
}
#about_spirits .sentence__area .sentence03 {
  width: 16.13vw;
  top: 20.4vw;
  left: 13.33vw;
}
#about_spirits .sentence__area .sentence03.js-anime-spirits {
  transition-duration: 0.5s;
  transition-delay: 2.6s;
  -webkit-transform: translate(-300px, 0);
          transform: translate(-300px, 0);
}
#about_spirits .sentence__area .sentence03.js-anime-spirits.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #about_spirits .sentence__area .sentence03 {
    width: 10.83vw;
    top: 18.28vw;
    left: 10.16vw;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__area .sentence03 {
    width: 109px;
    top: 184px;
    left: 102px;
  }
}
#about_spirits .sentence__items {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  #about_spirits .sentence__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    padding: 0 0 200px 0;
  }
}
@media (min-width: 1366px) {
  #about_spirits .sentence__items {
    max-width: 1300px;
  }
}
#about_spirits .sentence__items .item {
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  #about_spirits .sentence__items .item {
    width: 48%;
  }
}
@media (min-width: 1366px) {
  #about_spirits .sentence__items .item {
    width: 43.46%;
  }
}
@media (min-width: 1024px) {
  #about_spirits .sentence__items .item dl:hover dt::before {
    width: 100%;
  }
}
#about_spirits .sentence__items .item dl dt {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
}
@media (min-width: 1024px) {
  #about_spirits .sentence__items .item dl dt {
    font-size: 3rem;
    min-height: 90px;
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 1366px) {
  #about_spirits .sentence__items .item dl dt {
    font-size: 4rem;
    min-height: 120px;
  }
}
#about_spirits .sentence__items .item dl dt::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #fff, #172a88);
  position: absolute;
  bottom: -13px;
  right: 0;
}
@media (min-width: 1024px) {
  #about_spirits .sentence__items .item dl dt::before {
    height: 5px;
    width: 0;
    transition: 0.3s;
  }
}
#about_spirits .sentence__items .item dl dd {
  line-height: 1.6;
}
#about_spirits .ideally {
  background-color: #172a88;
  padding: 20px 15px 40px;
}
@media (min-width: 1024px) {
  #about_spirits .ideally .inner {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
  }
}
#about_spirits .ideally h3, #about_spirits .ideally .lead {
  color: #fff;
}
#about_spirits .ideally h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #about_spirits .ideally h3 {
    font-size: 3rem;
  }
}
@media (min-width: 1366px) {
  #about_spirits .ideally h3 {
    font-size: 4rem;
  }
}
#about_spirits .ideally .lead {
  line-height: 2;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #about_spirits .ideally .lead {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  #about_spirits .ideally .items {
    display: flex;
    gap: 25px;
  }
}
@media (min-width: 1366px) {
  #about_spirits .ideally .items {
    gap: 50px;
  }
}
#about_spirits .ideally .items .item {
  background-color: #fff;
  padding: 15px;
  text-align: center;
}
#about_spirits .ideally .items .item:not(:last-of-type) {
  margin-bottom: 35px;
}
@media (min-width: 1024px) {
  #about_spirits .ideally .items .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #about_spirits .ideally .items .item {
    width: 33.3333333333%;
  }
}
@media (min-width: 1366px) {
  #about_spirits .ideally .items .item {
    padding: 20px;
  }
}
#about_spirits .ideally .items .item dt {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media (min-width: 1366px) {
  #about_spirits .ideally .items .item dt {
    font-size: 2.4rem;
  }
}
#about_spirits .ideally .items .item dd {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media (min-width: 1366px) {
  #about_spirits .ideally .items .item dd {
    font-size: 1.6rem;
  }
}
#about_spirits .message {
  padding-top: 50px;
}
@media (min-width: 1024px) {
  #about_spirits .message {
    padding-top: 150px;
  }
}
@media (min-width: 1024px) {
  #about_spirits .message .group {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  #about_spirits .message .txt {
    width: 52.86%;
  }
}
#about_spirits .message .txt h3 {
  margin-bottom: 30px;
  width: 95%;
}
#about_spirits .message .txt p {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  font-size: 1.8rem;
  line-height: 2;
}
@media (min-width: 1024px) {
  #about_spirits .message .txt p {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #about_spirits .message .txt p {
    font-size: 4.2rem;
  }
}
@media (min-width: 1024px) {
  #about_spirits .message .txt .txt_box {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  #about_spirits .message .ph {
    width: 39.06%;
    padding-top: 110px;
  }
}
#about_spirits .message .ph .pic img {
  max-width: none;
  width: 100%;
}
@media (min-width: 1024px) {
  #about_spirits .message .ph .pic span {
    position: relative;
  }
  #about_spirits .message .ph .pic span::after {
    content: "";
    display: block;
    background-color: #e9edf1;
    width: 57.33%;
    height: 130px;
    position: absolute;
    right: 0;
    bottom: -130px;
    z-index: -1;
  }
}
@media (min-width: 1024px) and (min-width: 1366px) {
  #about_spirits .message .ph .pic span::after {
    height: 260px;
    bottom: -260px;
  }
}
#about_spirits .message .ph .pic .cap {
  padding: 15px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  #about_spirits .message .ph .pic .cap {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  logisticsstory
---------------------------------*/
#logisticsstory {
  overflow: hidden;
}
#logisticsstory p, #logisticsstory h3 {
  line-height: 2;
}
#logisticsstory .intro {
  margin-top: 50px;
  padding: 0 15px 80px;
}
@media (min-width: 1024px) {
  #logisticsstory .intro {
    padding-bottom: 200px;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .intro {
    margin-top: 100px;
  }
}
#logisticsstory .intro h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  #logisticsstory .intro h3 {
    font-size: 3.6rem;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .intro h3 {
    font-size: 5.6rem;
  }
}
@media (min-width: 1024px) {
  #logisticsstory .intro .inner {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  #logisticsstory .intro .inner {
    width: 53.96%;
  }
}
#logisticsstory .case__head.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
#logisticsstory .case__head.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#logisticsstory .case__head .inner {
  position: relative;
}
@media (min-width: 1366px) {
  #logisticsstory .case__head .inner {
    max-width: 1300px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0 auto;
  }
}
#logisticsstory .case__head h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media (min-width: 1366px) {
  #logisticsstory .case__head h3 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
#logisticsstory .case__head .txt {
  padding: 40px 15px 15px;
}
@media (min-width: 1366px) {
  #logisticsstory .case__head .txt {
    color: #fff;
    width: 60%;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  #logisticsstory .case__head .txt p {
    font-size: 1.6rem;
  }
}
#logisticsstory .case__head .case_num {
  height: 40px;
  position: absolute;
  top: -20px;
  left: 15px;
}
@media (min-width: 1366px) {
  #logisticsstory .case__head .case_num {
    height: 97px;
    top: -55px;
  }
}
#logisticsstory .case__head .case_num img {
  height: 100%;
  width: auto;
  mix-blend-mode: multiply;
}
#logisticsstory .case__head .name {
  color: #fff;
  position: absolute;
  right: 15px;
  bottom: 35px;
}
@media (min-width: 1366px) {
  #logisticsstory .case__head .name {
    bottom: 60px;
  }
}
#logisticsstory .case__head .name_en {
  height: 28px;
  position: absolute;
  right: 15px;
  bottom: -14px;
}
@media (min-width: 1366px) {
  #logisticsstory .case__head .name_en {
    height: 56px;
    bottom: -28px;
  }
}
#logisticsstory .case__head .name_en img {
  height: 100%;
  width: auto;
  mix-blend-mode: multiply;
}
@media (min-width: 1366px) {
  #logisticsstory .con__wrap {
    max-width: 1720px;
    margin: 60px auto 0;
  }
}
#logisticsstory .con h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media (min-width: 1366px) {
  #logisticsstory .con h3 {
    font-size: 3.2rem;
  }
}
#logisticsstory .con .txt {
  padding: 35px 15px 15px;
}
@media (min-width: 1366px) {
  #logisticsstory .con .txt {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  #logisticsstory .con .txt p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .con01 .txt {
    width: 67.56%;
    margin-left: 12.21%;
    margin-bottom: 100px;
  }
}
#logisticsstory .con01 .ph {
  width: 90.67%;
  margin-left: auto;
}
@media (min-width: 1366px) {
  #logisticsstory .con01 .ph {
    width: 68.6%;
  }
}
#logisticsstory .con01 .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
}
#logisticsstory .con01 .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#logisticsstory .con02 {
  padding-top: 25px;
}
@media (min-width: 1366px) {
  #logisticsstory .con02 {
    padding-top: 100px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .con02 .txt {
    width: 43.78%;
  }
}
#logisticsstory .con02 .ph {
  width: 80%;
  margin-right: auto;
}
@media (min-width: 1366px) {
  #logisticsstory .con02 .ph {
    width: 40.93%;
    margin-right: 50px;
  }
}
#logisticsstory .con02 .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}
#logisticsstory .con02 .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#logisticsstory .con05 .ph {
  width: 80%;
  margin-left: auto;
  text-align: right;
}
#logisticsstory .con05 .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
}
#logisticsstory .con05 .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#logisticsstory .con03 {
  padding-top: 25px;
}
@media (min-width: 1366px) {
  #logisticsstory .con03 {
    padding-top: 100px;
  }
}
#logisticsstory .con03 .ph {
  width: 90.67%;
  margin-right: auto;
}
#logisticsstory .con03 .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}
#logisticsstory .con03 .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 1366px) {
  #logisticsstory .con04 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding-top: 100px;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .con04 .txt {
    width: 43.78%;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .con04 .ph {
    width: 40.93%;
    margin-left: 50px;
  }
  #logisticsstory .con04 .ph.js-anime {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }
  #logisticsstory .con04 .ph.js-anime.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#logisticsstory .profile {
  width: 85.33%;
  margin: 0 auto;
}
@media (min-width: 1366px) {
  #logisticsstory .profile {
    width: 68.6%;
    margin: 100px auto 0 0;
    padding: 50px;
  }
}
#logisticsstory .profile .txt {
  padding: 15px 25px;
  color: #fff;
}
@media (min-width: 1366px) {
  #logisticsstory .profile .txt {
    padding: 40px;
  }
}
#logisticsstory .profile .txt h4 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  #logisticsstory .profile .txt p {
    font-size: 1.6rem;
  }
}
#logisticsstory .case01 {
  margin-bottom: 70px;
}
@media (min-width: 1366px) {
  #logisticsstory .case01 {
    margin-bottom: 240px;
  }
}
#logisticsstory .case02 {
  margin-bottom: 50px;
}
@media (min-width: 1366px) {
  #logisticsstory .case02 {
    margin-bottom: 100px;
  }
}
#logisticsstory .other__story {
  width: 85.33%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding: 15px 0 25px;
}
@media (min-width: 1366px) {
  #logisticsstory .other__story {
    width: 44.79%;
    padding: 80px 0 100px;
  }
}
@media (min-width: 1366px) {
  #logisticsstory .other__story .ttl {
    margin-bottom: 20px;
  }
}
#logisticsstory .other__story .ttl span {
  display: block;
}
#logisticsstory .other__story .ttl span.main {
  font-size: 4.4rem;
  opacity: 0.5;
}
@media (min-width: 1366px) {
  #logisticsstory .other__story .ttl span.main {
    font-size: 8.8rem;
  }
}
#logisticsstory .other__story .ttl span.sub {
  font-size: 2.2rem;
  margin-top: -22px;
}
@media (min-width: 1366px) {
  #logisticsstory .other__story .ttl span.sub {
    font-size: 4.4rem;
    margin-top: -45px;
  }
}
#logisticsstory .other__story .lead {
  margin-bottom: 15px;
}
@media (min-width: 1366px) {
  #logisticsstory .other__story .lead {
    margin-bottom: 30px;
  }
}
#logisticsstory.story01 {
  /* page__title */
}
#logisticsstory.story01 .page__kv {
  position: relative;
  background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_kv_bg_sp.jpg) no-repeat center;
  background-size: cover;
  height: 667px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #logisticsstory.story01 .page__kv {
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_kv_bg_pc.jpg) no-repeat center;
    background-size: cover;
    height: 1080px;
    justify-content: flex-start;
  }
}
#logisticsstory.story01 .page__kv .inner {
  width: 100%;
}
#logisticsstory.story01 .page__kv .catch {
  width: 76.53%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #logisticsstory.story01 .page__kv .catch {
    width: 67.71%;
    margin: -100px auto 0;
  }
}
#logisticsstory.story01 .intro {
  background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_intro_bg.png) no-repeat top center;
  background-size: 276px;
}
@media (min-width: 1024px) {
  #logisticsstory.story01 .intro {
    background-size: 480px;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .intro {
    background-size: 480px;
  }
}
#logisticsstory.story01 .case__head {
  background-color: rgba(3, 110, 184, 0.26);
}
#logisticsstory.story01 .profile .txt {
  background-color: rgba(0, 72, 183, 0.8);
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .profile .txt {
    background-color: inherit;
    position: relative;
  }
  #logisticsstory.story01 .profile .txt::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 110, 184, 0.6);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#logisticsstory.story01 .profile .txt .txt_inner {
  position: relative;
  z-index: 2;
}
#logisticsstory.story01 .other__story {
  background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_other_bg_sp.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case01 .case__head {
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_case01_head_ph_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case01 .con03 .ph {
    width: 52.33%;
    margin-left: 12.21%;
    position: relative;
  }
  #logisticsstory.story01 .case01 .con03 .ph::before {
    content: "";
    display: block;
    width: 365px;
    height: 325px;
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_case01_ph03_accent.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: -120px;
    right: -310px;
    z-index: -1;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case01 .profile {
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_case01_prof_ph_pc.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case01 .profile .txt {
    width: 45.76%;
    margin-left: auto;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case02 .case__head {
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_case02_head_ph_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case02 .con03 .ph {
    width: 52.33%;
    margin-left: 12.21%;
    position: relative;
  }
  #logisticsstory.story01 .case02 .con03 .ph::before {
    content: "";
    display: block;
    width: 408px;
    height: 310px;
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_case02_ph03_accent.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: -120px;
    right: -310px;
    z-index: -1;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case02 .profile {
    background: url(/asset/images/logisticsstory/story01/logisticsstory_story01_case02_prof_ph_pc.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story01 .case02 .profile .txt {
    width: 54.24%;
    margin-left: auto;
  }
}
#logisticsstory.story02 {
  /* page__title */
}
#logisticsstory.story02 .page__kv {
  position: relative;
  background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_kv_bg_sp.jpg) no-repeat center;
  background-size: cover;
  height: 667px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #logisticsstory.story02 .page__kv {
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_kv_bg_pc.jpg) no-repeat center;
    background-size: cover;
    height: 1080px;
    justify-content: flex-start;
  }
}
#logisticsstory.story02 .page__kv .inner {
  width: 100%;
}
#logisticsstory.story02 .page__kv .catch {
  width: 76.53%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #logisticsstory.story02 .page__kv .catch {
    width: 67.71%;
    margin: -100px auto 0;
  }
}
#logisticsstory.story02 .intro {
  background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_intro_bg.png) no-repeat top center;
  background-size: 276px;
}
@media (min-width: 1024px) {
  #logisticsstory.story02 .intro {
    background-size: 480px;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .intro {
    background-size: 480px;
  }
}
#logisticsstory.story02 .case__head {
  background-color: rgba(162, 107, 0, 0.26);
}
#logisticsstory.story02 .profile .txt {
  background-color: rgba(162, 107, 0, 0.8);
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .profile .txt {
    background-color: inherit;
    position: relative;
  }
  #logisticsstory.story02 .profile .txt::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(162, 107, 0, 0.6);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#logisticsstory.story02 .profile .txt .txt_inner {
  position: relative;
  z-index: 2;
}
#logisticsstory.story02 .other__story {
  background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_other_bg_sp.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case01 .case__head {
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_case01_head_ph_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case01 .con03 .ph {
    width: 52.33%;
    margin-left: 12.21%;
    position: relative;
  }
  #logisticsstory.story02 .case01 .con03 .ph::before {
    content: "";
    display: block;
    width: 266px;
    height: 270px;
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_case01_ph03_accent.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: -120px;
    right: -200px;
    z-index: -1;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case01 .profile {
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_case01_prof_ph_pc.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case01 .profile .txt {
    width: 45.76%;
    margin-left: auto;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case02 .case__head {
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_case02_head_ph_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case02 .con03 .ph {
    width: 52.33%;
    margin-left: 12.21%;
    position: relative;
  }
  #logisticsstory.story02 .case02 .con03 .ph::before {
    content: "";
    display: block;
    width: 252px;
    height: 266px;
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_case02_ph03_accent.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: -100px;
    right: -180px;
    z-index: -1;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case02 .profile {
    background: url(/asset/images/logisticsstory/story02/logisticsstory_story02_case02_prof_ph_pc.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #logisticsstory.story02 .case02 .profile .txt {
    width: 54.24%;
    margin-left: auto;
  }
}

/*---------------------------------
  work_jobmap
---------------------------------*/
#work_jobmap {
  overflow: hidden;
  /* page__title */
  /* intro */
  /* detail */
}
#work_jobmap .page__kv {
  position: relative;
  background: url(/asset/images/work/jobmap/jobmap_kv_sp.jpg) no-repeat center;
  background-size: cover;
  height: 667px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #work_jobmap .page__kv {
    background: url(/asset/images/work/jobmap/jobmap_kv_pc.jpg) no-repeat center;
    background-size: cover;
    height: 880px;
  }
}
#work_jobmap .page__kv .catch {
  color: #fff;
  text-align: center;
  position: relative;
  top: -25px;
}
@media (min-width: 768px) {
  #work_jobmap .page__kv .catch {
    top: -90px;
  }
}
@media (min-width: 1024px) {
  #work_jobmap .page__kv .catch {
    top: auto;
  }
}
#work_jobmap .page__kv .catch h2 {
  width: 50%;
  margin: 0 auto 75px;
}
@media (min-width: 768px) {
  #work_jobmap .page__kv .catch h2 {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  #work_jobmap .page__kv .catch h2 {
    margin: 0 auto 30px;
  }
}
#work_jobmap .page__kv .catch .lead {
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #work_jobmap .page__kv .catch .lead {
    font-size: 3rem;
  }
}
@media (min-width: 1366px) {
  #work_jobmap .page__kv .catch .lead {
    font-size: 4.8rem;
  }
}
#work_jobmap h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1366px) {
  #work_jobmap h3 {
    font-size: 4.8rem;
    margin-bottom: 60px;
  }
}
#work_jobmap p {
  line-height: 2;
}
#work_jobmap .intro {
  padding-top: 30px;
}
@media (min-width: 1366px) {
  #work_jobmap .intro {
    padding-top: 60px;
  }
}
#work_jobmap .intro .inner {
  padding-left: 15px;
  padding-right: 15px;
}
#work_jobmap .intro .lead {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  #work_jobmap .intro .lead {
    width: 70%;
    margin: 0 auto 60px;
  }
}
@media (min-width: 1366px) {
  #work_jobmap .intro .lead {
    width: 44.27%;
    text-align: center;
  }
}
#work_jobmap .intro .items {
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #work_jobmap .intro .items {
    display: flex;
    gap: 15px;
  }
}
@media (min-width: 1366px) {
  #work_jobmap .intro .items {
    gap: 100px;
  }
}
#work_jobmap .intro .items .item {
  color: #fff;
  padding: 20px;
}
#work_jobmap .intro .items .item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  #work_jobmap .intro .items .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
#work_jobmap .intro .items .item h4 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 1024px) {
  #work_jobmap .intro .items .item h4 {
    font-size: 2.4rem;
  }
}
#work_jobmap .intro .items .item h4::before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
}
#work_jobmap .intro .items .item dl {
  margin-top: 15px;
}
#work_jobmap .intro .items .item dl dt {
  text-align: center;
  margin-bottom: 15px;
}
#work_jobmap .intro .items .item dl dd {
  display: flex;
  justify-content: center;
  gap: 4.92%;
}
#work_jobmap .intro .items .item dl dd .box {
  width: 15.41%;
}
#work_jobmap .intro .items .item dl dd .icon {
  margin-bottom: 10px;
}
#work_jobmap .intro .items .item dl dd .cap {
  line-height: 1.4;
  text-align: center;
  font-size: 1rem;
}
#work_jobmap .intro .items .item.forwarding {
  background: url(/asset/images/work/jobmap/forwarding_bg.jpg) no-repeat center;
  background-size: cover;
}
#work_jobmap .intro .items .item.logistics {
  background: url(/asset/images/work/jobmap/logistics_bg.jpg) no-repeat center;
  background-size: cover;
}
#work_jobmap .detail {
  padding-top: 50px;
}
#work_jobmap .detail .lead {
  text-align: center;
  margin-bottom: 43px;
}
#work_jobmap .detail .item span.note {
  display: block;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #work_jobmap .detail .item span.note {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  #work_jobmap .detail .map._sp {
    background: url(/asset/images/work/jobmap/map_bg.jpg) no-repeat center;
    background-size: auto 100%;
  }
}
@media (min-width: 1024px) {
  #work_jobmap .detail .map._sp {
    display: none;
  }
}
@media (min-width: 768px) {
  #work_jobmap .detail .map._sp .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 35px;
    padding: 35px 15px;
  }
}
#work_jobmap .detail .map._sp .items .item {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  #work_jobmap .detail .map._sp .items .item {
    width: 48%;
    margin-bottom: 0;
  }
}
#work_jobmap .detail .map._pc {
  display: none;
  background: url(/asset/images/work/jobmap/map_bg.jpg) no-repeat center;
  background-size: 100% 100%;
  padding: 70px 15px;
}
@media (min-width: 1024px) {
  #work_jobmap .detail .map._pc {
    display: block;
  }
}
#work_jobmap .detail .map._pc .items {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}
#work_jobmap .detail .map._pc .items .map_scale {
  width: 400px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#work_jobmap .detail .map._pc .items .map_scale .scale_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
#work_jobmap .detail .map._pc .items .map_scale .scale_center .dot {
  width: 5px;
  background: url(/asset/images/work/jobmap/scale_dot.png) repeat-y center;
  flex: 1;
}
#work_jobmap .detail .map._pc .items .map_scale .scale_center .img {
  flex: 0 0 auto;
}
#work_jobmap .detail .map._pc .items .item_l, #work_jobmap .detail .map._pc .items .item_r {
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  #work_jobmap .detail .map._pc .items .item_l, #work_jobmap .detail .map._pc .items .item_r {
    gap: 80px;
  }
}
@media (min-width: 1366px) {
  #work_jobmap .detail .map._pc .items .item_l, #work_jobmap .detail .map._pc .items .item_r {
    gap: 150px;
  }
}
#work_jobmap .detail .map .item {
  background-color: #fff;
}
#work_jobmap .detail .other .items {
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #work_jobmap .detail .other .items {
    display: flex;
    gap: 15px;
    padding: 35px 15px;
  }
}
@media (min-width: 1024px) {
  #work_jobmap .detail .other .items {
    padding: 175px 15px;
  }
}
@media (min-width: 1366px) {
  #work_jobmap .detail .other .items {
    gap: 100px;
  }
}
#work_jobmap .detail .other .items .item {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  #work_jobmap .detail .other .items .item {
    margin-bottom: 0;
    width: 50%;
  }
}
#work_jobmap .detail .item {
  padding: 15px;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item {
    padding: 25px;
  }
}
#work_jobmap .detail .item .industry {
  display: inline-block;
  font-size: 2.4rem;
  padding: 0.5rem 1.5rem;
  line-height: 1;
  margin-left: -15px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item .industry {
    position: relative;
    padding: 0;
    margin-left: 0;
    margin-bottom: 30px;
  }
  #work_jobmap .detail .item .industry::before {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #c8d2dc;
    position: absolute;
    left: 0;
    bottom: -15px;
  }
}
#work_jobmap .detail .item h4 {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 20px;
}
#work_jobmap .detail .item .job {
  padding-top: 20px;
}
#work_jobmap .detail .item .job dl {
  border-top: 1px solid #c8d2dc;
  padding: 1rem 0;
  font-size: 1.6rem;
}
#work_jobmap .detail .item .job dl:last-of-type {
  border-bottom: 1px solid #c8d2dc;
}
#work_jobmap .detail .item .job dl dt {
  cursor: pointer;
}
#work_jobmap .detail .item .job dl dt::after {
  content: "＋";
  margin-left: 10px;
}
#work_jobmap .detail .item .job dl dt.is-active::after {
  content: "－";
}
#work_jobmap .detail .item .job dl dd {
  padding-top: 1rem;
  line-height: 2;
  display: none;
}
#work_jobmap .detail .item .skill {
  padding: 1.5rem 0;
}
#work_jobmap .detail .item .skill h5 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
#work_jobmap .detail .item .skill ul li {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
}
#work_jobmap .detail .item .skill ul li::before {
  content: "■";
  flex: none;
  margin-right: 1rem;
}
#work_jobmap .detail .item .btn {
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item .btn {
    width: 250px;
  }
}
@media (min-width: 1024px) {
  #work_jobmap .detail .item .btn:hover .view_more {
    opacity: 0.7;
    margin-left: 20px;
  }
}
#work_jobmap .detail .item .btn .ph {
  width: 100%;
}
#work_jobmap .detail .item .btn .view_more {
  display: inline-block;
  position: absolute;
  right: 35px;
  bottom: 10px;
  width: 120px;
  height: 25px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item .btn .view_more {
    right: auto;
    left: 0;
    bottom: 0;
  }
}
#work_jobmap .detail .item .btn .view_more::before {
  content: "";
  display: block;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  right: -25px;
}
#work_jobmap .detail .item .btn .view_more img {
  width: 70%;
}
#work_jobmap .detail .item.job_r .industry {
  color: #fff;
  background-color: #e60012;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item.job_r .industry {
    color: #e60012;
    background-color: inherit;
  }
}
#work_jobmap .detail .item.job_r .job dl dt::after {
  color: #e60012;
}
#work_jobmap .detail .item.job_r .skill h5 {
  color: #e60012;
}
#work_jobmap .detail .item.job_r .skill ul li::before {
  color: #e60012;
}
#work_jobmap .detail .item.job_r .btn .view_more {
  background-color: #e60012;
}
#work_jobmap .detail .item.job_r .btn .view_more::before {
  background-color: #e60012;
}
#work_jobmap .detail .item.job_o .industry {
  color: #fff;
  background-color: #eb5f28;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item.job_o .industry {
    color: #eb5f28;
    background-color: inherit;
  }
}
#work_jobmap .detail .item.job_o .job dl dt::after {
  color: #eb5f28;
}
#work_jobmap .detail .item.job_o .skill h5 {
  color: #eb5f28;
}
#work_jobmap .detail .item.job_o .skill ul li::before {
  color: #eb5f28;
}
#work_jobmap .detail .item.job_o .btn .view_more {
  background-color: #eb5f28;
}
#work_jobmap .detail .item.job_o .btn .view_more::before {
  background-color: #eb5f28;
}
#work_jobmap .detail .item.job_b .industry {
  color: #fff;
  background-color: #036eb8;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item.job_b .industry {
    color: #036eb8;
    background-color: inherit;
  }
}
#work_jobmap .detail .item.job_b .job dl dt::after {
  color: #036eb8;
}
#work_jobmap .detail .item.job_b .skill h5 {
  color: #036eb8;
}
#work_jobmap .detail .item.job_b .skill ul li::before {
  color: #036eb8;
}
#work_jobmap .detail .item.job_b .btn .view_more {
  background-color: #036eb8;
}
#work_jobmap .detail .item.job_b .btn .view_more::before {
  background-color: #036eb8;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item.job_db {
    background-color: #e6f0fa;
    padding: 25px;
  }
}
#work_jobmap .detail .item.job_db .industry {
  color: #fff;
  background-color: #172a88;
}
@media (min-width: 768px) {
  #work_jobmap .detail .item.job_db .industry {
    color: #172a88;
    background-color: inherit;
  }
}
#work_jobmap .detail .item.job_db .job dl dt::after {
  color: #172a88;
}
#work_jobmap .detail .item.job_db .skill h5 {
  color: #172a88;
}
#work_jobmap .detail .item.job_db .skill ul li::before {
  color: #172a88;
}
#work_jobmap .detail .item.job_db .btn .view_more {
  background-color: #172a88;
}
#work_jobmap .detail .item.job_db .btn .view_more::before {
  background-color: #172a88;
}

/*---------------------------------
  work_interview
---------------------------------*/
#work_interview {
  overflow: hidden;
  /* page__title */
}
#work_interview .page__kv {
  margin-top: 50px;
  height: 214.67vw;
  position: relative;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  #work_interview .page__kv {
    height: 50.26vw;
  }
}
@media (min-width: 1024px) {
  #work_interview .page__kv {
    margin-top: 100px;
  }
}
@media (min-width: 1366px) {
  #work_interview .page__kv {
    margin-bottom: 120px;
  }
}
#work_interview .page__kv .bg {
  position: absolute;
}
#work_interview .page__kv .bg01 {
  width: 54.67vw;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  #work_interview .page__kv .bg01 {
    width: 53.13vw;
  }
}
#work_interview .page__kv .bg01.js-anime {
  transition-duration: 1s;
  visibility: hidden;
  opacity: 0;
}
#work_interview .page__kv .bg01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#work_interview .page__kv .bg02 {
  width: 34.67vw;
  top: 18.67vw;
  right: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  #work_interview .page__kv .bg02 {
    width: 26.04vw;
    top: auto;
    bottom: 3.91vw;
  }
}
#work_interview .page__kv .bg02.js-anime {
  transition-duration: 1s;
  transition-delay: 0.3s;
  visibility: hidden;
  opacity: 0;
}
#work_interview .page__kv .bg02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#work_interview .page__kv .bg03 {
  width: 29.33vw;
  bottom: 39.6vw;
  right: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  #work_interview .page__kv .bg03 {
    width: 34.22vw;
    bottom: auto;
    top: 0;
  }
}
#work_interview .page__kv .bg03.js-anime {
  transition-duration: 1s;
  transition-delay: 0.5s;
  visibility: hidden;
  opacity: 0;
}
#work_interview .page__kv .bg03.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#work_interview .page__kv .bg04 {
  width: 62.67vw;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  #work_interview .page__kv .bg04 {
    width: 24.48vw;
  }
}
#work_interview .page__kv .bg04.js-anime {
  transition-duration: 1s;
  transition-delay: 0.7s;
  visibility: hidden;
  opacity: 0;
}
#work_interview .page__kv .bg04.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#work_interview .page__kv .catch {
  text-align: center;
  position: absolute;
  top: 55.2vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  #work_interview .page__kv .catch {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 1366px) {
  #work_interview .page__kv .catch {
    top: auto;
    bottom: 60px;
  }
}
#work_interview .page__kv .catch.js-anime {
  transition-duration: 1s;
  transition-delay: 1.6s;
  visibility: hidden;
  opacity: 0;
}
#work_interview .page__kv .catch.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#work_interview .page__kv .catch h2 img {
  width: 32.27vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #work_interview .page__kv .catch h2 img {
    width: 13.02vw;
  }
}
#work_interview .page__kv .catch h2 span {
  display: block;
  margin-top: 5px;
}
@media (min-width: 1366px) {
  #work_interview .page__kv .catch h2 span {
    font-size: 3rem;
    margin-top: 15px;
  }
}
#work_interview .page__kv .catch .lead {
  font-size: 2rem;
  margin-top: 40px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #work_interview .page__kv .catch .lead {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  #work_interview .page__kv .catch .lead {
    font-size: 1.8rem;
  }
}
@media (min-width: 1366px) {
  #work_interview .page__kv .catch .lead {
    font-size: 2.6rem;
  }
}
#work_interview section h3 {
  height: 7.6vw;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #work_interview section h3 {
    height: 4vw;
  }
}
@media (min-width: 1366px) {
  #work_interview section h3 {
    margin-bottom: 50px;
  }
}
#work_interview section h3 img {
  height: 100%;
}
#work_interview .japan {
  padding: 0 15px;
  margin-bottom: 85px;
}
#work_interview .japan .btn {
  display: block;
  width: 100px;
  padding: 2px 10px 8px;
  border-radius: 100px;
  margin-top: 10px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  #work_interview .japan .btn {
    margin-left: auto;
  }
}
@media (min-width: 1366px) {
  #work_interview .japan .btn {
    padding: 2px 18px 8px;
    width: 160px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  #work_interview .japan .items {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    gap: 4%;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) {
  #work_interview .japan .items {
    width: auto;
    max-width: 1300px;
    gap: 80px;
  }
}
#work_interview .japan .items .item {
  display: flex;
  background-color: #eff2f5;
  border-radius: 0 0 30px 0;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #work_interview .japan .items .item {
    flex-direction: column;
    width: 48%;
  }
}
@media (min-width: 1024px) {
  #work_interview .japan .items .item {
    width: 380px;
  }
}
@media (min-width: 1366px) {
  #work_interview .japan .items .item {
    width: 380px;
    margin-bottom: 100px;
  }
}
#work_interview .japan .items .item .ph {
  width: 42%;
}
@media (min-width: 768px) {
  #work_interview .japan .items .item .ph {
    width: auto;
  }
}
#work_interview .japan .items .item .txt {
  padding: 10px 10px 15px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 58%;
}
@media (min-width: 768px) {
  #work_interview .japan .items .item .txt {
    width: auto;
    flex: 1 1 auto;
    padding: 15px;
  }
}
@media (min-width: 1366px) {
  #work_interview .japan .items .item .txt {
    padding: 20px;
  }
}
#work_interview .japan .items .item .txt .industry {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
}
#work_interview .japan .items .item .txt .industry::before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #c8d2dc;
  position: absolute;
  left: 0;
  bottom: -8px;
}
@media (min-width: 1366px) {
  #work_interview .japan .items .item .txt .industry {
    font-size: 2.6rem;
  }
}
#work_interview .japan .items .item .txt .name {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media (min-width: 1366px) {
  #work_interview .japan .items .item .txt .name {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
#work_interview .japan .items .item .txt .name .en {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}
@media (min-width: 768px) {
  #work_interview .japan .items .item .txt .name .en {
    display: inline-block;
    margin-left: 10px;
  }
}
@media (min-width: 1366px) {
  #work_interview .japan .items .item .txt .name .en {
    font-size: 2rem;
  }
}
#work_interview .japan .items .item .txt .cap {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (min-width: 1366px) {
  #work_interview .japan .items .item .txt .cap {
    font-size: 2.4rem;
  }
}
#work_interview .japan .items .item.job_r .name .en {
  color: #e60012;
}
#work_interview .japan .items .item.job_r .btn {
  background-color: #e60012;
}
#work_interview .japan .items .item.job_o .name .en {
  color: #eb5f28;
}
#work_interview .japan .items .item.job_o .btn {
  background-color: #eb5f28;
}
#work_interview .japan .items .item.job_db .name .en {
  color: #172a88;
}
#work_interview .japan .items .item.job_db .btn {
  background-color: #172a88;
}
@media (min-width: 1024px) {
  #work_interview .japan .items .item:hover .btn {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
#work_interview .global {
  padding: 0 15px 180px;
  position: relative;
}
@media (min-width: 768px) {
  #work_interview .global {
    padding-bottom: 0;
  }
}
#work_interview .global::before {
  content: "";
  display: block;
  width: 68vw;
  height: 49.2vw;
  background: url(/asset/images/work/interview/people_parts.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: -20px;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  #work_interview .global::before {
    width: 40.52vw;
    height: 32.2vw;
    right: -5px;
    bottom: 20px;
  }
}
@media (min-width: 1024px) {
  #work_interview .global::before {
    width: 30.52vw;
    height: 22.03vw;
  }
}
@media (min-width: 1366px) {
  #work_interview .global::before {
    bottom: 100px;
  }
}
@media (min-width: 768px) {
  #work_interview .global .items {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    gap: 4%;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) {
  #work_interview .global .items {
    width: auto;
    max-width: 1300px;
    gap: 80px;
  }
}
#work_interview .global .items .item {
  display: flex;
  background-color: #eff2f5;
  border-radius: 0 0 30px 0;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #work_interview .global .items .item {
    display: block;
    width: 48%;
  }
}
@media (min-width: 1024px) {
  #work_interview .global .items .item {
    width: 380px;
  }
}
@media (min-width: 1366px) {
  #work_interview .global .items .item {
    width: 380px;
    margin-bottom: 100px;
  }
}
#work_interview .global .items .item a {
  width: 42%;
  position: relative;
}
@media (min-width: 768px) {
  #work_interview .global .items .item a {
    width: auto;
  }
}
#work_interview .global .items .item a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(/asset/images/work/interview/movie_btn.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #work_interview .global .items .item a::before {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1024px) {
  #work_interview .global .items .item a:hover::before {
    opacity: 0.7;
  }
}
#work_interview .global .items .item .txt {
  width: 58%;
  padding: 10px;
}
@media (min-width: 768px) {
  #work_interview .global .items .item .txt {
    width: auto;
  }
}
@media (min-width: 1366px) {
  #work_interview .global .items .item .txt {
    padding: 20px;
  }
}
#work_interview .global .items .item .txt .country {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#work_interview .global .items .item .txt .country .flag {
  width: 60px;
  margin-right: 15px;
}
#work_interview .global .items .item .txt .country span {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 1366px) {
  #work_interview .global .items .item .txt .country span {
    font-size: 2.4rem;
  }
}
#work_interview .global .items .item .txt .name {
  color: #036eb8;
  margin-bottom: 5px;
}
@media (min-width: 1366px) {
  #work_interview .global .items .item .txt .name {
    font-size: 2rem;
  }
}
#work_interview .global .items .item .txt .spec {
  font-size: 1.2rem;
}
@media (min-width: 1366px) {
  #work_interview .global .items .item .txt .spec {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  global_staff
---------------------------------*/
#global_staff {
  overflow: hidden;
  /* staff__kv */
  /* profile */
  /* job_r */
  /* job_o */
  /* job_db */
}
#global_staff p {
  line-height: 2;
}
#global_staff h4 {
  font-weight: 400;
}
#global_staff .staff__kv {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 768px) {
  #global_staff .staff__kv {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  #global_staff .staff__kv {
    margin-bottom: 100px;
  }
}
#global_staff .staff__kv .ph {
  position: relative;
}
#global_staff .staff__kv .catch {
  position: absolute;
  left: 25px;
  bottom: 25px;
  font-size: 2.4rem;
  font-weight: 200;
}
@media (min-width: 768px) {
  #global_staff .staff__kv .catch {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  #global_staff .staff__kv .catch {
    font-size: 2.8rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .staff__kv .catch {
    font-size: 4rem;
    left: 10.4vw;
    bottom: 74px;
  }
}
#global_staff .staff__kv .catch.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#global_staff .staff__kv .catch.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .staff__kv .catch span {
  display: inline-block;
  color: #fff;
  padding: 5px;
  margin-top: 15px;
  line-height: 1;
}
@media (min-width: 768px) {
  #global_staff .staff__kv .catch span {
    margin-top: 10px;
  }
}
@media (min-width: 1366px) {
  #global_staff .staff__kv .catch span {
    padding: 10px;
  }
}
#global_staff .staff__kv .spec {
  font-size: 2rem;
}
@media (min-width: 768px) {
  #global_staff .staff__kv .spec {
    position: absolute;
    background-color: #fff;
    border-radius: 20px 0 0 0;
    right: 0;
    bottom: 0;
    width: 41.67vw;
  }
}
#global_staff .staff__kv .spec .inner {
  padding: 15px 15px 45px;
}
@media (min-width: 768px) {
  #global_staff .staff__kv .spec .inner {
    position: relative;
    padding: 15px 15px 25px;
  }
  #global_staff .staff__kv .spec .inner::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/asset/images/global/staff_common/staff_kv_parts.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: -20px;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  #global_staff .staff__kv .spec .inner {
    padding: 30px 30px 0 50px;
  }
}
#global_staff .staff__kv .spec .inner.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#global_staff .staff__kv .spec .inner.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .staff__kv .spec .industry {
  margin-bottom: 30px;
  position: relative;
}
#global_staff .staff__kv .spec .industry::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #c8d2dc;
  position: absolute;
  left: 0;
  bottom: -15px;
}
@media (min-width: 1024px) {
  #global_staff .staff__kv .spec .industry {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .staff__kv .spec .industry {
    font-size: 3.2rem;
  }
}
#global_staff .staff__kv .spec .name {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #global_staff .staff__kv .spec .name {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .staff__kv .spec .name {
    font-size: 3.2rem;
  }
}
#global_staff .staff__kv .spec .name .en {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 1rem;
}
@media (min-width: 1024px) {
  #global_staff .staff__kv .spec .name .en {
    font-size: 2rem;
  }
}
#global_staff .staff__kv .spec .affiliation {
  font-size: 1.4rem;
}
@media (min-width: 1024px) {
  #global_staff .staff__kv .spec .affiliation {
    font-size: 2rem;
  }
}
#global_staff .profile {
  position: relative;
}
@media (min-width: 768px) {
  #global_staff .profile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
@media (min-width: 1366px) {
  #global_staff .profile {
    margin-bottom: 100px;
  }
}
#global_staff .profile .parts {
  position: absolute;
  top: -150px;
  right: -10px;
  z-index: -1;
  width: 36%;
}
@media (min-width: 768px) {
  #global_staff .profile .parts {
    top: 0;
    width: 24.32vw;
  }
}
@media (min-width: 1366px) {
  #global_staff .profile .parts {
    top: 30%;
    right: 20px;
  }
}
#global_staff .profile .ph {
  width: 77.33vw;
  position: relative;
}
@media (min-width: 768px) {
  #global_staff .profile .ph {
    width: 30.21vw;
    padding-top: 77px;
  }
}
@media (min-width: 1024px) {
  #global_staff .profile .ph {
    padding-top: 8.18vw;
  }
}
#global_staff .profile .ph .ttl {
  position: absolute;
  top: 0;
  right: -14.53vw;
  width: 6.13vw;
}
@media (min-width: 768px) {
  #global_staff .profile .ph .ttl {
    right: 2.53vw;
    width: 2.34vw;
  }
}
#global_staff .profile .ph .ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -100px);
          transform: translate(0, -100px);
}
#global_staff .profile .ph .ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .profile .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#global_staff .profile .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .profile .txt {
  padding: 15px;
}
@media (min-width: 768px) {
  #global_staff .profile .txt {
    width: 66.67vw;
  }
}
@media (min-width: 1366px) {
  #global_staff .profile .txt {
    padding: 0;
  }
}
#global_staff .profile .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#global_staff .profile .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .profile .txt .detail {
  margin-bottom: 35px;
}
#global_staff .profile .txt .detail dl {
  line-height: 1.8;
}
#global_staff .profile .txt .detail dl:not(:last-of-type) {
  display: flex;
}
#global_staff .profile .txt .detail dl dt {
  margin-right: 1rem;
}
@media (min-width: 1366px) {
  #global_staff .profile .txt .motive {
    width: 35.63vw;
  }
}
@media (min-width: 1024px) {
  #global_staff .profile .txt .motive .sub {
    font-size: 2rem;
  }
}
#global_staff .profile .txt .motive h4 {
  font-size: 2rem;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  #global_staff .profile .txt .motive h4 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .profile .txt .motive h4 {
    font-size: 3.2rem;
  }
}
#global_staff .career p:not(:last-of-type), #global_staff .episode p:not(:last-of-type), #global_staff .column p:not(:last-of-type) {
  margin-bottom: 2rem;
}
#global_staff .career {
  background-color: #e1e6f0;
  padding: 25px 15px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #global_staff .career {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  #global_staff .career {
    border-radius: 30px;
    margin: 0 auto 180px;
  }
}
@media (min-width: 1366px) {
  #global_staff .career {
    width: 79.17%;
    padding-top: 75px;
    padding: 75px 0 90px;
    align-items: flex-start;
  }
}
#global_staff .career .ph {
  margin-right: -15px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  #global_staff .career .ph {
    display: block;
    width: 40%;
  }
}
@media (min-width: 1024px) {
  #global_staff .career .ph {
    width: 42.76vw;
  }
}
@media (min-width: 1024px) {
  #global_staff .career .ph {
    margin-right: -3.65vw;
  }
}
#global_staff .career .ph img {
  width: 72vw;
}
@media (min-width: 768px) {
  #global_staff .career .ph img {
    width: auto;
  }
}
#global_staff .career .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#global_staff .career .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .career .txt {
  position: relative;
}
@media (min-width: 768px) {
  #global_staff .career .txt {
    width: 58%;
  }
}
@media (min-width: 1024px) {
  #global_staff .career .txt {
    width: 56vw;
    padding: 50px 6.58vw;
  }
}
@media (min-width: 1366px) {
  #global_staff .career .txt {
    padding: 0 6.58vw;
  }
}
#global_staff .career .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#global_staff .career .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .career .txt .ttl {
  position: absolute;
  top: -11.47vw;
  width: 35.73vw;
}
@media (min-width: 768px) {
  #global_staff .career .txt .ttl {
    position: static;
    width: 13.75vw;
  }
}
@media (min-width: 1024px) {
  #global_staff .career .txt .ttl {
    width: 17.37vw;
    margin-left: -2.08vw;
  }
}
#global_staff .career .txt h4 {
  font-size: 2rem;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  #global_staff .career .txt h4 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .career .txt h4 {
    font-size: 3rem;
    padding: 40px 0;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode {
    margin-bottom: 250px;
  }
}
#global_staff .episode h3 {
  width: 38.67vw;
  margin: 0 auto 6.27vw;
}
@media (min-width: 768px) {
  #global_staff .episode h3 {
    width: 14.9vw;
  }
}
#global_staff .episode h3.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
#global_staff .episode h3.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .episode .txt {
  padding: 0 15px 40px;
}
@media (min-width: 1024px) {
  #global_staff .episode .txt {
    padding: 0;
  }
}
#global_staff .episode .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#global_staff .episode .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .episode .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#global_staff .episode .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .episode .ttl {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  #global_staff .episode .ttl {
    display: block;
  }
}
#global_staff .episode .ttl h4 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  #global_staff .episode .ttl h4 {
    padding-top: 20px;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .ttl h4 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .episode .ttl h4 {
    font-size: 3.2rem;
    padding: 30px 0;
  }
}
@media (min-width: 768px) {
  #global_staff .episode .con01 {
    display: flex;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .con01 {
    margin-bottom: 110px;
  }
}
#global_staff .episode .con01 .num {
  width: 30px;
}
@media (min-width: 1024px) {
  #global_staff .episode .con01 .num {
    width: 2.97vw;
  }
}
@media (min-width: 768px) {
  #global_staff .episode .con01 .ph {
    width: 38%;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .con01 .ph {
    width: 44.27vw;
  }
}
@media (min-width: 768px) {
  #global_staff .episode .con01 .txt {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .con01 .txt {
    width: 44.27vw;
    margin-left: 4.17vw;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .con01 .txt {
    width: 35.57vw;
  }
}
@media (min-width: 768px) {
  #global_staff .episode .con02 {
    display: flex;
    flex-direction: row-reverse;
  }
}
#global_staff .episode .con02 .num {
  width: 37px;
}
@media (min-width: 1024px) {
  #global_staff .episode .con02 .num {
    width: 3.85vw;
  }
}
@media (min-width: 768px) {
  #global_staff .episode .con02 .ph {
    width: 38%;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .con02 .ph {
    width: 28.65vw;
  }
}
@media (min-width: 768px) {
  #global_staff .episode .con02 .txt {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  #global_staff .episode .con02 .txt {
    width: 46.88vw;
    margin-right: 7.81vw;
  }
}
#global_staff .column {
  background: linear-gradient(to top right, #c80012, #eb6832);
  color: #fff;
  margin-bottom: 55px;
  padding: 25px 15px;
}
@media (min-width: 768px) {
  #global_staff .column {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  #global_staff .column {
    border-radius: 30px 0 0 30px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1366px) {
  #global_staff .column {
    width: 67.71vw;
    margin-left: auto;
    margin-bottom: 200px;
    padding: 70px 0 100px;
    align-items: flex-start;
  }
}
#global_staff .column .ph {
  margin-right: -15px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  #global_staff .column .ph {
    margin-right: 0;
    margin-left: -15px;
    display: block;
    width: 30%;
  }
}
@media (min-width: 1366px) {
  #global_staff .column .ph {
    width: 33.85vw;
    margin-left: -21.88vw;
    margin-top: 30px;
  }
}
#global_staff .column .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#global_staff .column .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .column .ph img {
  width: 72vw;
}
@media (min-width: 1366px) {
  #global_staff .column .ph img {
    width: auto;
  }
}
#global_staff .column .txt {
  position: relative;
}
@media (min-width: 768px) {
  #global_staff .column .txt {
    width: 65%;
    margin-left: 3%;
  }
}
@media (min-width: 1024px) {
  #global_staff .column .txt {
    width: 80%;
  }
}
@media (min-width: 1366px) {
  #global_staff .column .txt {
    width: 39.5vw;
    margin-left: 5.73vw;
  }
}
#global_staff .column .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#global_staff .column .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .column .txt .ttl {
  position: absolute;
  left: 3vw;
  top: -18.47vw;
}
@media (min-width: 768px) {
  #global_staff .column .txt .ttl {
    position: static;
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
}
#global_staff .column .txt .ttl h3 {
  width: 35.73vw;
}
@media (min-width: 768px) {
  #global_staff .column .txt .ttl h3 {
    width: 16.31vw;
  }
}
@media (min-width: 1024px) {
  #global_staff .column .txt .ttl h3 {
    width: 22.31vw;
  }
}
@media (min-width: 1366px) {
  #global_staff .column .txt .ttl h3 {
    width: 288px;
  }
}
#global_staff .column .txt .ttl .sub {
  display: inline-block;
  background-color: #e3e8ed;
  color: #e60012;
  line-height: 1;
  padding: 5px;
  margin-top: 15px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #global_staff .column .txt .ttl .sub {
    margin-top: 0;
    margin-left: 1rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  #global_staff .column .txt .ttl .sub {
    margin-left: 2rem;
    font-size: 2rem;
  }
}
#global_staff .column .txt h4 {
  font-size: 2rem;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  #global_staff .column .txt h4 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .column .txt h4 {
    font-size: 3.2rem;
    padding: 30px 0;
  }
}
#global_staff .other_member {
  background-color: #efefef;
  padding-top: 30px;
  padding-bottom: 45px;
}
@media (min-width: 1366px) {
  #global_staff .other_member {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
#global_staff .other_member h3 {
  width: 73.33vw;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  #global_staff .other_member h3 {
    width: 32.19vw;
  }
}
@media (min-width: 1366px) {
  #global_staff .other_member h3 {
    margin-bottom: 50px;
  }
}
#global_staff .other_member h3.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
#global_staff .other_member h3.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .other_member ul {
  width: 73.33vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #global_staff .other_member ul {
    width: 90%;
    display: flex;
    gap: 1%;
  }
}
@media (min-width: 1024px) {
  #global_staff .other_member ul {
    max-width: 1520px;
  }
}
@media (min-width: 1366px) {
  #global_staff .other_member ul {
    gap: 4.41%;
  }
}
#global_staff .other_member ul.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.5;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
#global_staff .other_member ul.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#global_staff .other_member ul li {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #global_staff .other_member ul li {
    margin-bottom: 0;
    width: 20%;
  }
}
#global_staff .other_member ul li a {
  display: block;
  position: relative;
}
@media (min-width: 1024px) {
  #global_staff .other_member ul li a:hover .btn__item span {
    background: rgba(255, 255, 255, 0.3);
  }
}
#global_staff .other_member ul li a .txt {
  position: absolute;
  bottom: 11px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 25px;
  padding: 0 11px;
}
@media (min-width: 768px) {
  #global_staff .other_member ul li a .txt {
    display: block;
  }
}
@media (min-width: 1366px) {
  #global_staff .other_member ul li a .txt {
    bottom: 20px;
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  #global_staff .other_member ul li a .txt .btn__item {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1366px) {
  #global_staff .other_member ul li a .txt .btn__item {
    margin-top: 20px;
  }
}
#global_staff .other_member ul li a .txt .btn__item span {
  width: 30.6vw;
  padding: 0.3vw 3.33vw 1.13vw;
}
@media (min-width: 768px) {
  #global_staff .other_member ul li a .txt .btn__item span {
    width: 80%;
    padding: 0.2vw 1.5vw 0.8vw;
  }
}
#global_staff.job_r .catch span {
  background-color: #e60012;
}
#global_staff.job_r .spec .industry {
  color: #e60012;
}
#global_staff.job_r .spec .en {
  color: #e60012;
}
#global_staff.job_r .profile .txt .detail dt {
  color: #e60012;
  font-weight: 700;
}
#global_staff.job_r .profile .txt .motive .sub {
  color: #e60012;
  font-weight: 700;
}
#global_staff.job_o .catch span {
  background-color: #eb5f28;
}
#global_staff.job_o .spec .industry {
  color: #eb5f28;
}
#global_staff.job_o .spec .en {
  color: #eb5f28;
}
#global_staff.job_o .profile .txt .detail dt {
  color: #eb5f28;
  font-weight: 700;
}
#global_staff.job_o .profile .txt .motive .sub {
  color: #eb5f28;
  font-weight: 700;
}
#global_staff.job_db .catch span {
  background-color: #172a88;
}
#global_staff.job_db .spec .industry {
  color: #172a88;
}
#global_staff.job_db .spec .en {
  color: #172a88;
}
#global_staff.job_db .profile .txt .detail dt {
  color: #172a88;
  font-weight: 700;
}
#global_staff.job_db .profile .txt .motive .sub {
  color: #172a88;
  font-weight: 700;
}

/*---------------------------------
  recruit
---------------------------------*/
#recruit_training,
#recruit_welfare,
#recruit_info,
#recruit_faq {
  overflow: hidden;
  /* page__title */
  /* intro */
  /* btn_blue */
}
#recruit_training #main p, #recruit_training #main dd, #recruit_training #main li,
#recruit_welfare #main p,
#recruit_welfare #main dd,
#recruit_welfare #main li,
#recruit_info #main p,
#recruit_info #main dd,
#recruit_info #main li,
#recruit_faq #main p,
#recruit_faq #main dd,
#recruit_faq #main li {
  line-height: 2;
}
#recruit_training .page__kv,
#recruit_welfare .page__kv,
#recruit_info .page__kv,
#recruit_faq .page__kv {
  height: 177.87vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #recruit_training .page__kv,
  #recruit_welfare .page__kv,
  #recruit_info .page__kv,
  #recruit_faq .page__kv {
    height: 45.83vw;
  }
}
@media (min-width: 1366px) {
  #recruit_training .page__kv,
  #recruit_welfare .page__kv,
  #recruit_info .page__kv,
  #recruit_faq .page__kv {
    height: 880px;
  }
}
#recruit_training .page__kv .catch,
#recruit_welfare .page__kv .catch,
#recruit_info .page__kv .catch,
#recruit_faq .page__kv .catch {
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
#recruit_training .page__kv .catch p,
#recruit_welfare .page__kv .catch p,
#recruit_info .page__kv .catch p,
#recruit_faq .page__kv .catch p {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #recruit_training .page__kv .catch p,
  #recruit_welfare .page__kv .catch p,
  #recruit_info .page__kv .catch p,
  #recruit_faq .page__kv .catch p {
    margin-top: 40px;
    font-size: 2.4rem;
  }
}
#recruit_training .inner,
#recruit_welfare .inner,
#recruit_info .inner,
#recruit_faq .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1366px) {
  #recruit_training .inner,
  #recruit_welfare .inner,
  #recruit_info .inner,
  #recruit_faq .inner {
    padding: 0;
  }
}
#recruit_training .intro,
#recruit_welfare .intro,
#recruit_info .intro,
#recruit_faq .intro {
  padding-top: 76px;
  text-align: center;
}
@media (min-width: 1024px) {
  #recruit_training .intro,
  #recruit_welfare .intro,
  #recruit_info .intro,
  #recruit_faq .intro {
    padding-top: 152px;
  }
}
#recruit_training .intro .inner,
#recruit_welfare .intro .inner,
#recruit_info .intro .inner,
#recruit_faq .intro .inner {
  max-width: 1000px;
}
#recruit_training .intro._btn ul,
#recruit_welfare .intro._btn ul,
#recruit_info .intro._btn ul,
#recruit_faq .intro._btn ul {
  width: 280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #recruit_training .intro._btn ul,
  #recruit_welfare .intro._btn ul,
  #recruit_info .intro._btn ul,
  #recruit_faq .intro._btn ul {
    width: auto;
    display: flex;
    justify-content: center;
    gap: 25px;
  }
}
#recruit_training .intro._btn ul li,
#recruit_welfare .intro._btn ul li,
#recruit_info .intro._btn ul li,
#recruit_faq .intro._btn ul li {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  #recruit_training .intro._btn ul li,
  #recruit_welfare .intro._btn ul li,
  #recruit_info .intro._btn ul li,
  #recruit_faq .intro._btn ul li {
    width: 280px;
  }
}
#recruit_training .intro._btn ul li a,
#recruit_welfare .intro._btn ul li a,
#recruit_info .intro._btn ul li a,
#recruit_faq .intro._btn ul li a {
  display: block;
  color: #fff;
  background: linear-gradient(to right, #415FA8, #00AAE8);
  font-size: 2rem;
  padding: 2px;
}
#recruit_training .intro._btn ul li a span,
#recruit_welfare .intro._btn ul li a span,
#recruit_info .intro._btn ul li a span,
#recruit_faq .intro._btn ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
}
#recruit_training .intro._btn ul li a span::after,
#recruit_welfare .intro._btn ul li a span::after,
#recruit_info .intro._btn ul li a span::after,
#recruit_faq .intro._btn ul li a span::after {
  content: "";
  display: block;
  width: 18px;
  height: 8px;
  background: url(/asset/images/recruit/info/btn_arrow_down.svg) no-repeat;
  background-size: cover;
  margin-left: 1rem;
}
#recruit_training .btn_blue,
#recruit_welfare .btn_blue,
#recruit_info .btn_blue,
#recruit_faq .btn_blue {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#recruit_training .btn_blue a,
#recruit_welfare .btn_blue a,
#recruit_info .btn_blue a,
#recruit_faq .btn_blue a {
  display: block;
  background-color: #036EB8;
  color: #fff;
  width: 140px;
  text-align: center;
}
@media (min-width: 1024px) {
  #recruit_training .btn_blue a,
  #recruit_welfare .btn_blue a,
  #recruit_info .btn_blue a,
  #recruit_faq .btn_blue a {
    width: 280px;
  }
}

/* recruit_training
---------------------------------*/
#recruit_training {
  /* page__title */
  /* system */
  /* specific */
  /* support */
  /* development */
}
#recruit_training .page__kv {
  background: url(/asset/images/recruit/training/training_kv_sp.jpg) no-repeat center;
  background-size: cover;
}
@media (min-width: 768px) {
  #recruit_training .page__kv {
    background: url(/asset/images/recruit/training/training_kv_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
#recruit_training .system .recruit_ttl .sp img {
  width: 57.33vw;
}
@media (min-width: 768px) {
  #recruit_training .system .recruit_ttl .tab img {
    width: 60.15vw;
  }
}
@media (min-width: 1366px) {
  #recruit_training .system .recruit_ttl .tab img {
    width: 782px;
  }
}
#recruit_training .system .item:not(:last-of-type) {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_training .system .item:not(:last-of-type) {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .system .item {
    display: flex;
  }
}
#recruit_training .system .item h4 {
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 12px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  #recruit_training .system .item h4 {
    font-size: 2.4rem;
    padding: 10px 24px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .system .item h4 {
    width: 34%;
  }
}
#recruit_training .system .item .icon {
  display: block;
  width: 50px;
  margin-right: 12px;
}
@media (min-width: 768px) {
  #recruit_training .system .item .icon {
    width: 100px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .system .item .icon {
    width: 160px;
    margin-right: 24px;
  }
}
#recruit_training .system .item .item_inner {
  padding: 10px 12px;
}
@media (min-width: 1024px) {
  #recruit_training .system .item .item_inner {
    padding: 20px 24px;
    width: 76%;
  }
}
#recruit_training .system .item.system01 {
  border: 1px solid #7ABCE5;
}
#recruit_training .system .item.system01 h4 {
  background-color: #7ABCE5;
}
#recruit_training .system .item.system02 {
  border: 1px solid #77A2E0;
}
#recruit_training .system .item.system02 h4 {
  background-color: #77A2E0;
}
#recruit_training .system .item.system03 {
  border: 1px solid #60AE93;
}
#recruit_training .system .item.system03 h4 {
  background-color: #60AE93;
}
#recruit_training .system .item.system04 {
  border: 1px solid #A2B466;
}
#recruit_training .system .item.system04 h4 {
  background-color: #A2B466;
}
#recruit_training .specific {
  padding-top: 60px;
  margin-top: -60px;
}
#recruit_training .specific .recruit_ttl .sp img {
  width: 86.4vw;
}
@media (min-width: 768px) {
  #recruit_training .specific .recruit_ttl .tab img {
    width: 88.15vw;
  }
}
@media (min-width: 1366px) {
  #recruit_training .specific .recruit_ttl .tab img {
    width: 1146px;
  }
}
#recruit_training .specific .bg {
  background-color: #CCE2F1;
  padding: 20px 0;
}
@media (min-width: 768px) {
  #recruit_training .specific .bg {
    padding: 50px 0;
  }
}
#recruit_training .specific .item {
  background-color: #fff;
}
#recruit_training .specific .item:not(:last-of-type) {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_training .specific .item:not(:last-of-type) {
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  #recruit_training .specific .item {
    display: flex;
    align-items: center;
  }
}
#recruit_training .specific .item .ttl_box {
  color: #036EB8;
  font-size: 1.2rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  margin-left: 12px;
  border-bottom: 1px solid #036EB8;
}
@media (min-width: 768px) {
  #recruit_training .specific .item .ttl_box {
    margin-left: 0;
    font-size: 2.4rem;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }
}
#recruit_training .specific .item .ttl_box .icon {
  width: 50px;
  margin-right: 12px;
}
#recruit_training .specific .item .img {
  width: 21.5vw;
  text-align: center;
}
#recruit_training .specific .item .img img {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #recruit_training .specific .item .txt {
    width: 78.5vw;
    padding: 20px 20px 20px 0;
  }
}
#recruit_training .specific .item .txt p {
  padding: 15px;
}
@media (min-width: 768px) {
  #recruit_training .specific .item .txt p {
    padding: 0;
  }
}
#recruit_training .support .recruit_ttl .sp img {
  width: 86.4vw;
}
@media (min-width: 768px) {
  #recruit_training .support .recruit_ttl .tab img {
    width: 69.54vw;
  }
}
@media (min-width: 1366px) {
  #recruit_training .support .recruit_ttl .tab img {
    width: 904px;
  }
}
#recruit_training .support .lead {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #recruit_training .support .lead {
    margin-bottom: 100px;
  }
}
#recruit_training .support .item {
  border: 1px solid #648A97;
}
#recruit_training .support .item:not(:last-of-type) {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_training .support .item:not(:last-of-type) {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .support .item {
    display: flex;
  }
}
#recruit_training .support .item h4 {
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  background-color: #648A97;
}
@media (min-width: 768px) {
  #recruit_training .support .item h4 {
    font-size: 2.4rem;
    padding: 10px 24px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .support .item h4 {
    width: 20%;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  #recruit_training .support .item h4 .ttl {
    text-align: center;
  }
}
#recruit_training .support .item h4 .icon {
  display: block;
  width: 50px;
  margin-right: 12px;
}
@media (min-width: 768px) {
  #recruit_training .support .item h4 .icon {
    width: 100px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .support .item h4 .icon {
    width: 160px;
    margin-right: 0;
    margin-top: 24px;
  }
}
#recruit_training .support .item .txt {
  padding: 12px;
}
@media (min-width: 1024px) {
  #recruit_training .support .item .txt {
    width: 80%;
    padding: 48px;
  }
}
#recruit_training .support .item .voice {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  #recruit_training .support .item .voice {
    display: flex;
    justify-content: space-between;
  }
}
#recruit_training .support .item .voice .balloon {
  background-color: #EFEFEF;
  border: 1px solid #648A97;
  border-radius: 20px;
  padding: 20px 12px;
  position: relative;
}
#recruit_training .support .item .voice .balloon::before {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background: url(/asset/images/recruit/training/balloon_parts.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -19px;
  right: 24vw;
  z-index: 2;
}
@media (min-width: 1024px) {
  #recruit_training .support .item .voice .balloon::before {
    width: 40px;
    height: 15px;
    background: url(/asset/images/recruit/training/balloon_parts_pc.svg) no-repeat;
    background-size: 100% 100%;
    bottom: 20%;
    right: -37px;
  }
}
@media (min-width: 1366px) {
  #recruit_training .support .item .voice .balloon::before {
    width: 80px;
    height: 34px;
    bottom: 25%;
    right: -78px;
  }
}
@media (min-width: 768px) {
  #recruit_training .support .item .voice .balloon {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .support .item .voice .balloon {
    padding: 40px;
    margin-top: 50px;
    width: 74.5%;
  }
}
#recruit_training .support .item .voice .balloon h5 {
  margin-bottom: 12px;
}
#recruit_training .support .item .voice .balloon h5 img {
  width: 40px;
}
@media (min-width: 1024px) {
  #recruit_training .support .item .voice .balloon h5 img {
    width: 60px;
  }
}
#recruit_training .support .item .voice .human {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  margin-top: -10.4vw;
}
@media (min-width: 768px) {
  #recruit_training .support .item .voice .human {
    margin-top: -5vw;
  }
}
@media (min-width: 1024px) {
  #recruit_training .support .item .voice .human {
    width: 21%;
    align-items: flex-end;
  }
}
#recruit_training .support .item .voice .human img {
  width: 26.13vw;
}
@media (min-width: 1024px) {
  #recruit_training .support .item .voice .human img {
    width: auto;
  }
}
#recruit_training .support .joblayer {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  #recruit_training .support .joblayer {
    margin-top: 96px;
  }
}
#recruit_training .development .recruit_ttl .sp img {
  width: 86.4vw;
}
@media (min-width: 768px) {
  #recruit_training .development .recruit_ttl .tab img {
    width: 80.15vw;
  }
}
@media (min-width: 1366px) {
  #recruit_training .development .recruit_ttl .tab img {
    width: 1042px;
  }
}
#recruit_training .development .item {
  border: 1px solid #648A97;
}
#recruit_training .development .item:not(:last-of-type) {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_training .development .item:not(:last-of-type) {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .development .item {
    display: flex;
  }
}
#recruit_training .development .item h4 {
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  background-color: #648A97;
}
@media (min-width: 768px) {
  #recruit_training .development .item h4 {
    font-size: 2.4rem;
    padding: 10px 24px;
  }
}
@media (min-width: 1024px) {
  #recruit_training .development .item h4 {
    width: 40%;
  }
}
@media (min-width: 1366px) {
  #recruit_training .development .item h4 {
    width: 34%;
  }
}
#recruit_training .development .item .icon {
  display: block;
  width: 50px;
  margin-right: 12px;
}
@media (min-width: 1024px) {
  #recruit_training .development .item .icon {
    width: 100px;
    margin-right: 24px;
    flex: none;
  }
}
@media (min-width: 1366px) {
  #recruit_training .development .item .icon {
    width: 160px;
    margin-right: 24px;
  }
}
#recruit_training .development .item .item_inner {
  padding: 10px 12px;
}
@media (min-width: 1024px) {
  #recruit_training .development .item .item_inner {
    padding: 20px 24px;
    width: 60%;
  }
}
@media (min-width: 1366px) {
  #recruit_training .development .item .item_inner {
    width: 76%;
  }
}

/* recruit_welfare */
#recruit_welfare {
  /* page__title */
}
#recruit_welfare .page__kv {
  background: url(/asset/images/recruit/welfare/welfare_kv_sp.jpg) no-repeat center;
  background-size: cover;
}
@media (min-width: 768px) {
  #recruit_welfare .page__kv {
    background: url(/asset/images/recruit/welfare/welfare_kv_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items {
    display: flex;
    justify-content: center;
    gap: 2.6%;
    flex-wrap: wrap;
  }
}
#recruit_welfare .welfare_items .item {
  background-color: #E7F2FC;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item {
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
}
#recruit_welfare .welfare_items .item .item_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #076BB1;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .item_ttl {
    padding-bottom: 20px;
  }
}
#recruit_welfare .welfare_items .item .item_ttl h4 {
  font-size: 1.2rem;
  color: #076BB1;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .item_ttl h4 {
    font-size: 2.4rem;
  }
}
#recruit_welfare .welfare_items .item .item_ttl .icon {
  width: 32px;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .item_ttl .icon {
    width: 64px;
  }
}
#recruit_welfare .welfare_items .item .merit {
  padding: 20px 0;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .merit {
    flex: 1;
  }
}
#recruit_welfare .welfare_items .item .merit p {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1 !important;
}
#recruit_welfare .welfare_items .item .merit p:not(:last-of-type) {
  margin-bottom: 10px;
}
#recruit_welfare .welfare_items .item .merit .nomal {
  font-size: 2rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .merit .nomal {
    font-size: 4rem;
  }
}
#recruit_welfare .welfare_items .item .merit .big {
  font-size: 5rem;
  color: #036EB8;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  margin: 0 10px;
  position: relative;
  bottom: -0.5rem;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .merit .big {
    font-size: 10rem;
    bottom: -1.2rem;
  }
}
#recruit_welfare .welfare_items .item .merit.flex {
  display: flex;
  justify-content: center;
  gap: 15px;
}
#recruit_welfare .welfare_items .item .merit .txt {
  display: flex;
  align-items: flex-end;
}
#recruit_welfare .welfare_items .item .merit .txt .box01 {
  text-align: right;
}
#recruit_welfare .welfare_items .item .merit .txt .box01 span {
  display: block;
}
#recruit_welfare .welfare_items .item .note {
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .note {
    margin-top: auto;
    font-size: 1.8rem;
  }
}
#recruit_welfare .welfare_items .item .note.plane {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .note.plane {
    margin-top: 40px;
  }
}
#recruit_welfare .welfare_items .item .note.plane p {
  text-align: left;
}
#recruit_welfare .welfare_items .item .note p {
  line-height: 1.6;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .note p {
    font-size: 1.8rem;
  }
}
#recruit_welfare .welfare_items .item .note .note_cap {
  font-size: 1rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item .note .note_cap {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item.column01 {
    width: 31.6%;
  }
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item.column02 {
    width: 48.7%;
  }
}
@media (min-width: 1024px) {
  #recruit_welfare .welfare_items .item.column03 {
    width: 65.38%;
  }
}
#recruit_welfare .vacation .recruit_ttl .sp img {
  width: 60vw;
}
@media (min-width: 768px) {
  #recruit_welfare .vacation .recruit_ttl .tab img {
    width: 61.77vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .vacation .recruit_ttl .tab img {
    width: 803px;
  }
}
#recruit_welfare .workstyle .recruit_ttl .sp img {
  width: 72.93vw;
}
@media (min-width: 768px) {
  #recruit_welfare .workstyle .recruit_ttl .tab img {
    width: 42.08vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .workstyle .recruit_ttl .tab img {
    width: 547px;
  }
}
#recruit_welfare .childcare .recruit_ttl .sp img {
  width: 85.73vw;
}
@media (min-width: 768px) {
  #recruit_welfare .childcare .recruit_ttl .tab img {
    width: 82vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .childcare .recruit_ttl .tab img {
    width: 1066px;
  }
}
#recruit_welfare .allowances .recruit_ttl .sp img {
  width: 85.73vw;
}
@media (min-width: 768px) {
  #recruit_welfare .allowances .recruit_ttl .tab img {
    width: 82vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .allowances .recruit_ttl .tab img {
    width: 1066px;
  }
}
#recruit_welfare .others {
  padding-bottom: 75px;
}
@media (min-width: 1024px) {
  #recruit_welfare .others {
    padding-bottom: 150px;
  }
}
#recruit_welfare .others .recruit_ttl .sp img {
  width: 46.8vw;
}
@media (min-width: 768px) {
  #recruit_welfare .others .recruit_ttl .tab img {
    width: 27vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .others .recruit_ttl .tab img {
    width: 351px;
  }
}
#recruit_welfare .usersvoice {
  background: linear-gradient(#00AAE8, #415FA8);
  padding-top: 65px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  #recruit_welfare .usersvoice {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
#recruit_welfare .usersvoice .recruit_ttl {
  margin-top: 0;
}
#recruit_welfare .usersvoice .recruit_ttl .sp img {
  width: 80.13vw;
}
@media (min-width: 768px) {
  #recruit_welfare .usersvoice .recruit_ttl .tab img {
    width: 46.23vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .usersvoice .recruit_ttl .tab img {
    width: 601px;
  }
}
#recruit_welfare .usersvoice .recruit_ttl span {
  color: #fff;
}
@media (min-width: 1024px) {
  #recruit_welfare .usersvoice .items {
    display: flex;
    gap: 3.38%;
  }
}
#recruit_welfare .usersvoice .items .balloon {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 12px;
  margin-bottom: 10vw;
}
@media (min-width: 520px) {
  #recruit_welfare .usersvoice .items .balloon {
    padding-bottom: 10vw;
  }
}
@media (min-width: 768px) {
  #recruit_welfare .usersvoice .items .balloon {
    padding: 30px 30px 10vw 30px;
  }
}
@media (min-width: 1024px) {
  #recruit_welfare .usersvoice .items .balloon {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    width: 33.3333333333%;
  }
}
#recruit_welfare .usersvoice .items .balloon h4 {
  text-align: center;
  color: #076BB1;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #recruit_welfare .usersvoice .items .balloon h4 {
    font-size: 2.4rem;
  }
}
#recruit_welfare .usersvoice .items .balloon .txt {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #recruit_welfare .usersvoice .items .balloon .txt {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  #recruit_welfare .usersvoice .items .balloon .name {
    text-align: right;
    margin-top: auto;
  }
}
#recruit_welfare .usersvoice .items .human {
  width: 22%;
  position: absolute;
  right: 0;
  bottom: -8vw;
}
@media (min-width: 1024px) {
  #recruit_welfare .usersvoice .items .human {
    width: 28%;
    right: auto;
    left: 0;
    bottom: -3vw;
  }
}
@media (min-width: 1366px) {
  #recruit_welfare .usersvoice .items .human {
    width: 165px;
    bottom: -4.5vw;
  }
}

/* recruit_info */
#recruit_info {
  /* page__title */
  /* course */
  /* application */
  /* process */
}
#recruit_info .page__kv {
  background: url(/asset/images/recruit/info/info_kv_sp.jpg) no-repeat center;
  background-size: cover;
}
@media (min-width: 768px) {
  #recruit_info .page__kv {
    background: url(/asset/images/recruit/info/info_kv_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
#recruit_info .info_items .item {
  display: flex;
  justify-content: space-between;
}
#recruit_info .info_items .item:last-of-type .ttl {
  border-bottom: 2px solid #036EB8;
}
#recruit_info .info_items .item:last-of-type .detail {
  border-bottom: 1px solid #036EB8;
}
#recruit_info .info_items .item .ttl {
  border-top: 2px solid #036EB8;
  width: 21.74%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: #00AAE8;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #recruit_info .info_items .item .ttl {
    font-size: 2.4rem;
    padding: 20px 0;
  }
}
#recruit_info .info_items .item .detail {
  border-top: 1px solid #036EB8;
  width: 75.36%;
  line-height: 2;
  padding: 10px;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #recruit_info .info_items .item .detail {
    font-size: 2rem;
    padding: 20px 0;
  }
}
#recruit_info .info_items .item .detail .square {
  text-indent: -1em;
  padding-left: 1em;
}
#recruit_info .info_items .item .detail .square::before {
  content: "■";
  color: #036EB8;
}
#recruit_info #course {
  padding-top: 100px;
  margin-top: -100px;
}
#recruit_info #course .recruit_ttl .sp img {
  width: 84.8vw;
}
@media (min-width: 768px) {
  #recruit_info #course .recruit_ttl .tab img {
    width: 78.85vw;
  }
}
@media (min-width: 1366px) {
  #recruit_info #course .recruit_ttl .tab img {
    width: 1025px;
  }
}
#recruit_info #course h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_info #course h4 {
    font-size: 2.4rem;
    margin-bottom: 48px;
  }
}
#recruit_info #course h4 .icon {
  display: block;
  width: 50px;
  margin-right: 24px;
}
@media (min-width: 1024px) {
  #recruit_info #course h4 .icon {
    width: 100px;
  }
}
#recruit_info #course .lead {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #recruit_info #course .lead {
    font-size: 2rem;
    margin-bottom: 48px;
  }
}
#recruit_info #application {
  padding-bottom: 75px;
  padding-top: 100px;
  margin-top: -100px;
}
@media (min-width: 1024px) {
  #recruit_info #application {
    padding-bottom: 150px;
  }
}
#recruit_info #application .recruit_ttl .sp img {
  width: 71.07vw;
}
@media (min-width: 768px) {
  #recruit_info #application .recruit_ttl .tab img {
    width: 96.92vw;
  }
}
@media (min-width: 1366px) {
  #recruit_info #application .recruit_ttl .tab img {
    width: 1260px;
  }
}
#recruit_info #process {
  background: linear-gradient(#00AAE8, #415FA8);
  padding-top: 65px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  #recruit_info #process {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
#recruit_info #process .recruit_ttl {
  margin-top: 0;
  color: #fff;
}
#recruit_info #process .recruit_ttl .sp img {
  width: 64.67vw;
}
@media (min-width: 768px) {
  #recruit_info #process .recruit_ttl .tab img {
    width: 70.62vw;
  }
}
@media (min-width: 1366px) {
  #recruit_info #process .recruit_ttl .tab img {
    width: 918px;
  }
}
#recruit_info #process .img_wrap {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 24px 12px;
}
@media (min-width: 768px) {
  #recruit_info #process .img_wrap {
    padding: 48px;
  }
}

/* recruit_faq */
#recruit_faq {
  /* page__title */
}
#recruit_faq .page__kv {
  background: url(/asset/images/recruit/faq/faq_kv_sp.jpg) no-repeat center;
  background-size: cover;
}
@media (min-width: 768px) {
  #recruit_faq .page__kv {
    background: url(/asset/images/recruit/faq/faq_kv_pc.jpg) no-repeat center;
    background-size: cover;
  }
}
#recruit_faq .faq_block {
  padding-top: 100px;
  margin-top: -100px;
}
#recruit_faq .faq_block h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 75px;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #recruit_faq .faq_block h3 {
    font-size: 3.2rem;
    margin-top: 150px;
    margin-bottom: 100px;
  }
}
#recruit_faq .faq_block .item {
  border-top: 1px solid #98B1BA;
}
#recruit_faq .faq_block .item:last-of-type {
  border-bottom: 1px solid #98B1BA;
}
#recruit_faq .faq_block .item .q {
  padding: 25px 0;
  color: #0B318F;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #recruit_faq .faq_block .item .q {
    padding: 50px 0;
    font-size: 2rem;
  }
}
#recruit_faq .faq_block .item .q::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/asset/images/recruit/faq/icon_q.svg) no-repeat;
  background-size: contain;
  margin-right: 1.5rem;
  flex: none;
}
@media (min-width: 1024px) {
  #recruit_faq .faq_block .item .q::before {
    width: 40px;
    height: 40px;
    margin-right: 2.5rem;
  }
}
#recruit_faq .faq_block .item .q::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/asset/images/recruit/faq/faq_arrow.svg) no-repeat center;
  background-size: contain;
  margin-left: auto;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #recruit_faq .faq_block .item .q::after {
    width: 40px;
    height: 40px;
  }
}
#recruit_faq .faq_block .item .q.is-active::after {
  background: url(/asset/images/recruit/faq/faq_arrow.svg) no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#recruit_faq .faq_block .item .a {
  padding-bottom: 25px;
  display: none;
}
#recruit_faq .faq_block .item .a .a_inner {
  display: flex;
}
@media (min-width: 1024px) {
  #recruit_faq .faq_block .item .a .a_inner {
    padding-bottom: 50px;
    font-size: 2rem;
  }
}
#recruit_faq .faq_block .item .a .a_inner::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(/asset/images/recruit/faq/icon_a.svg) no-repeat;
  background-size: contain;
  margin-right: 1.5rem;
  flex: none;
}
@media (min-width: 1024px) {
  #recruit_faq .faq_block .item .a .a_inner::before {
    width: 40px;
    height: 40px;
    margin-right: 2.5rem;
  }
}

/*---------------------------------
  internship
---------------------------------*/
#internship {
  overflow: hidden;
  /* page__title */
  /* intro */
  /* internship_menu */
  /* course */
}
#internship .page__kv {
  background: url(/asset/images/internship/internship_kv_sp.jpg) no-repeat center;
  background-size: cover;
  height: 177.87vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #internship .page__kv {
    background: url(/asset/images/internship/internship_kv_pc.jpg) no-repeat center;
    background-size: cover;
    height: 45.83vw;
  }
}
@media (min-width: 1366px) {
  #internship .page__kv {
    height: 880px;
  }
}
#internship .page__kv .catch {
  color: #fff;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
#internship .page__kv .catch p {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #internship .page__kv .catch p {
    margin-top: 40px;
    font-size: 2.4rem;
  }
}
#internship .inner {
  padding: 0 15px;
  max-width: 1300px;
  margin: 0 auto;
}
#internship .intro {
  padding: 50px 0;
}
@media (min-width: 1024px) {
  #internship .intro {
    padding: 100px 0;
  }
}
#internship .intro p {
  line-height: 2;
  text-align: center;
}
#internship .internship_menu {
  margin-bottom: 25px;
  padding: 0 15px;
}
@media (min-width: 1024px) {
  #internship .internship_menu {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  #internship .internship_menu .items {
    width: 60%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #internship .internship_menu .items {
    width: auto;
    display: flex;
    justify-content: space-between;
  }
}
#internship .internship_menu .items .item {
  margin-bottom: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item {
    width: 31.54%;
  }
}
#internship .internship_menu .items .item::before {
  content: "";
  display: block;
  width: 30px;
  height: calc(100% - 15px);
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item::before {
    display: none;
  }
}
#internship .internship_menu .items .item::after {
  content: "";
  display: block;
  width: 30px;
  height: 15px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item::after {
    display: none;
  }
}
#internship .internship_menu .items .item .ttl {
  text-align: center;
  padding: 1rem;
  color: #fff;
  font-size: 1.6rem;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item .ttl {
    padding: 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(100% - 20px);
  }
}
@media (min-width: 1366px) {
  #internship .internship_menu .items .item .ttl {
    height: 74px;
    font-size: 2.4rem;
  }
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item .ttl::before {
    content: "";
    display: block;
    clip-path: polygon(100% 100%, 0 100%, 0 0);
    height: 45px;
    width: 20px;
    position: absolute;
    right: -19px;
    top: 0;
  }
}
@media (min-width: 1366px) {
  #internship .internship_menu .items .item .ttl::before {
    height: 74px;
  }
}
#internship .internship_menu .items .item .list {
  margin: 15px 0 0 45px;
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item .list {
    margin-left: 0;
  }
}
#internship .internship_menu .items .item .list ul {
  width: 100%;
}
#internship .internship_menu .items .item .list li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#internship .internship_menu .items .item .list a {
  color: #3e3a39;
  line-height: 1.6;
  font-size: 1.6rem;
  transition: 0.3s;
}
@media (min-width: 1366px) {
  #internship .internship_menu .items .item .list a {
    font-size: 2.4rem;
  }
}
#internship .internship_menu .items .item.color01::before {
  background-color: #a2b466;
}
#internship .internship_menu .items .item.color01::after {
  background-color: #a2b466;
}
#internship .internship_menu .items .item.color01 .ttl {
  background-color: #a2b466;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item.color01 .ttl::before {
    background-color: #a2b466;
  }
}
#internship .internship_menu .items .item.color01 .list {
  background-color: #ededdc;
  border: 2px solid #a2b466;
}
#internship .internship_menu .items .item.color01 .list li:not(:last-of-type) {
  border-bottom: 1px solid #a2b466;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item.color01 .list a:hover {
    color: #a2b466;
  }
}
#internship .internship_menu .items .item.color02::before {
  background-color: #60ae93;
}
#internship .internship_menu .items .item.color02::after {
  background-color: #60ae93;
}
#internship .internship_menu .items .item.color02 .ttl {
  background-color: #60ae93;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item.color02 .ttl::before {
    background-color: #60ae93;
  }
}
#internship .internship_menu .items .item.color02 .list {
  background-color: #dcede7;
  border: 2px solid #60ae93;
}
#internship .internship_menu .items .item.color02 .list li:not(:last-of-type) {
  border-bottom: 1px solid #60ae93;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item.color02 .list a:hover {
    color: #60ae93;
  }
}
#internship .internship_menu .items .item.color03::before {
  background-color: #77a2e0;
}
#internship .internship_menu .items .item.color03::after {
  background-color: #77a2e0;
}
#internship .internship_menu .items .item.color03 .ttl {
  background-color: #77a2e0;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item.color03 .ttl::before {
    background-color: #77a2e0;
  }
}
#internship .internship_menu .items .item.color03 .list {
  background-color: #e3ecf9;
  border: 2px solid #77a2e0;
}
#internship .internship_menu .items .item.color03 .list li:not(:last-of-type) {
  border-bottom: 1px solid #77a2e0;
}
@media (min-width: 1024px) {
  #internship .internship_menu .items .item.color03 .list a:hover {
    color: #77a2e0;
  }
}
#internship .course_wrap {
  padding-top: 50px;
  margin-top: -50px;
}
@media (min-width: 1024px) {
  #internship .course_wrap {
    padding-top: 100px;
    margin-top: -100px;
  }
}
#internship .course {
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 1024px) {
  #internship .course {
    margin-bottom: 60px;
  }
}
#internship .course h3 {
  color: #fff;
  padding: 15px;
}
@media (min-width: 1024px) {
  #internship .course h3 {
    font-size: 2.4rem;
    padding: 15px 40px;
  }
}
#internship .course .article {
  padding: 15px;
}
@media (min-width: 1024px) {
  #internship .course .article {
    padding: 40px;
  }
}
@media (min-width: 1366px) {
  #internship .course .article .group {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1366px) {
  #internship .course .article .txt {
    width: 60%;
  }
}
#internship .course .article .txt dl {
  margin-bottom: 20px;
}
#internship .course .article .txt dl dt {
  font-weight: 700;
}
#internship .course .article .img {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1366px) {
  #internship .course .article .img {
    width: 40%;
    margin-bottom: 0;
  }
}
#internship .course .btn {
  position: relative;
  z-index: 20;
}
#internship .course .btn a {
  display: block;
  width: 135px;
  background-color: #e60012;
  padding: 0.5rem;
  color: #fff;
  text-align: center;
  margin-left: auto;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #internship .course .btn a {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  #internship .course .btn a:hover {
    opacity: 0.7;
  }
}
#internship .course .btn a.close {
  background-color: #b5b5b6;
  pointer-events: none;
}
#internship .course .btn a.soon {
  background-color: #ef8584;
  pointer-events: none;
}
#internship .course.color01 {
  border: 1px solid #a2b466;
}
#internship .course.color01 h3 {
  background-color: #a2b466;
}
#internship .course.color02 {
  border: 1px solid #60ae93;
}
#internship .course.color02 h3 {
  background-color: #60ae93;
}
#internship .course.color03 {
  border: 1px solid #77a2e0;
}
#internship .course.color03 h3 {
  background-color: #77a2e0;
}
#internship .flow {
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #internship .flow {
    margin-bottom: 100px;
  }
}
#internship .flow h3 {
  margin-bottom: 25px;
}
#internship .flow h3 img {
  height: 25px;
}
@media (min-width: 1024px) {
  #internship .flow h3 img {
    height: 70px;
  }
}
#internship .flow .lead {
  margin-bottom: 40px;
  text-align: center;
}
#internship .flow .items .item {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #internship .flow .items .item {
    display: flex;
  }
}
#internship .flow .items .item .ttl {
  display: flex;
  height: 36px;
}
@media (min-width: 1024px) {
  #internship .flow .items .item .ttl {
    height: auto;
  }
}
#internship .flow .items .item .ttl .num {
  background-color: #648a97;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
}
@media (min-width: 1366px) {
  #internship .flow .items .item .ttl .num {
    width: 96px;
    font-size: 3rem;
  }
}
#internship .flow .items .item .ttl h4 {
  background-color: #98b1ba;
  color: #fff;
  font-size: 1.6rem;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 1366px) {
  #internship .flow .items .item .ttl h4 {
    width: 214px;
    font-size: 2.2rem;
  }
}
#internship .flow .items .item .ttl h4::before {
  content: "";
  display: block;
  background-color: #98b1ba;
  width: 26px;
  height: 100%;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: -26px;
}
@media (min-width: 1024px) {
  #internship .flow .items .item .ttl h4::before {
    display: none;
  }
}
#internship .flow .items .item .txt {
  background-color: #d7e1e4;
  font-size: 1.3rem;
  padding: 15px;
}
@media (min-width: 1024px) {
  #internship .flow .items .item .txt {
    flex: 1;
    font-size: 1.6rem;
  }
}
@media (min-width: 1366px) {
  #internship .flow .items .item .txt {
    font-size: 2rem;
  }
}
#internship .flow .center {
  margin-top: 40px;
}
#internship .flow .btn__entry {
  text-align: center;
  margin-top: 40px;
}
#internship .voice h3 {
  text-align: center;
  font-size: 2.8rem;
  color: #898989;
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
}
@media (min-width: 1024px) {
  #internship .voice h3 {
    font-size: 5.6rem;
  }
}
#internship .voice h3::before {
  content: "";
  display: block;
  height: 1px;
  width: 180px;
  background-color: #898989;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1024px) {
  #internship .voice h3::before {
    width: 360px;
  }
}
#internship .voice h3::after {
  content: "";
  display: block;
  width: 15px;
  height: 8px;
  background-color: #898989;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1024px) {
  #internship .voice h3::after {
    width: 30px;
    height: 16px;
    bottom: -16px;
  }
}
@media (min-width: 1024px) {
  #internship .voice .item {
    display: flex;
    align-items: flex-end;
  }
}
#internship .voice .item .balloon {
  background-color: #EFEFEF;
  border: 1px solid #648A97;
  border-radius: 20px;
  padding: 20px 20px 40px;
  position: relative;
}
#internship .voice .item .balloon p {
  line-height: 2;
}
#internship .voice .item .balloon::before {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  background: url(/asset/images/recruit/training/balloon_parts.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -25px;
  z-index: 2;
}
@media (min-width: 1024px) {
  #internship .voice .item .balloon::before {
    width: 60px;
    height: 30px;
    background: url(/asset/images/recruit/training/balloon_parts_pc.svg) no-repeat;
    background-size: 100% 100%;
    bottom: 36%;
  }
}
@media (min-width: 768px) {
  #internship .voice .item .balloon {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  #internship .voice .item .balloon {
    padding: 40px;
    margin-top: 50px;
    width: 74.5%;
  }
}
#internship .voice .item .human {
  width: 100px;
  position: relative;
  top: -20px;
}
@media (min-width: 1024px) {
  #internship .voice .item .human {
    width: 200px;
    top: auto;
  }
}
#internship .voice .item.left {
  margin-right: 14.49%;
}
@media (min-width: 1024px) {
  #internship .voice .item.left {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1366px) {
  #internship .voice .item.left {
    margin-right: 30%;
  }
}
#internship .voice .item.left .balloon::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 24vw;
  right: auto;
}
@media (min-width: 768px) {
  #internship .voice .item.left .balloon::before {
    left: 14vw;
  }
}
@media (min-width: 1024px) {
  #internship .voice .item.left .balloon::before {
    left: -59px;
  }
}
@media (min-width: 1024px) {
  #internship .voice .item.left .human {
    margin-right: 40px;
  }
}
#internship .voice .item.right {
  margin-left: 14.49%;
}
@media (min-width: 1366px) {
  #internship .voice .item.right {
    margin-left: 30%;
  }
}
@media (min-width: 768px) {
  #internship .voice .item.right .balloon::before {
    right: 14vw;
  }
}
@media (min-width: 1024px) {
  #internship .voice .item.right .balloon::before {
    right: -59px;
  }
}
#internship .voice .item.right .human {
  margin-left: auto;
}
@media (min-width: 1024px) {
  #internship .voice .item.right .human {
    margin-left: 40px;
  }
}

/*---------------------------------
  crosstalk
---------------------------------*/
.ct_b {
  color: #036eb8;
}

.ct_r {
  color: #e60012;
}

.ct_g {
  color: #00a29a;
}

.ct_y {
  color: #f38200;
}

#crosstalk_crosstalk01 {
  overflow: hidden;
  /* ct__kv */
  /* profile */
  /* talk01 */
  /* talk02 */
  /* talk03 */
  /* talk04 */
  /* column */
}
#crosstalk_crosstalk01 .ct__kv {
  background-color: #00a3be;
  margin-top: 50px;
  padding-bottom: 14.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .ct__kv {
    margin-top: 100px;
    padding-top: 4.17vw;
    padding-bottom: 3.65vw;
  }
}
#crosstalk_crosstalk01 .ct__kv .inner {
  max-width: 1750px;
  margin: 0 auto;
}
#crosstalk_crosstalk01 .ct__kv .ttl {
  color: #fff;
  text-align: center;
  width: 71.07vw;
  margin: -3.6vw auto 7.2vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .ct__kv .ttl {
    text-align: left;
    width: 25vw;
    margin: -1.04vw 0 0 2.08vw;
  }
}
#crosstalk_crosstalk01 .ct__kv .ttl h2 {
  margin-bottom: 2.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .ct__kv .ttl h2 {
    margin-bottom: 1.3vw;
  }
}
#crosstalk_crosstalk01 .ct__kv .ttl p {
  font-size: 1.6rem;
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk01 .ct__kv .ttl p {
    font-size: 3.2rem;
  }
}
#crosstalk_crosstalk01 .ct__kv .catch {
  position: relative;
  padding: 0 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .ct__kv .catch {
    width: 80%;
    padding: 0;
    margin: 0 auto 30px;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .ct__kv .catch {
    width: 47.29vw;
    margin: -13.44vw 0 30px 27.08vw;
  }
}
#crosstalk_crosstalk01 .ct__kv .catch::before {
  content: "";
  display: block;
  width: 15.73vw;
  height: 20.13vw;
  background: url(/asset/images/crosstalk/ct01_kv_img.svg) no-repeat;
  background-size: cover;
  position: absolute;
  right: 8vw;
  top: -6vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .ct__kv .catch::before {
    width: 7.03vw;
    height: 9.06vw;
    right: -10.1vw;
    bottom: 0;
    top: auto;
  }
}
#crosstalk_crosstalk01 .ct__kv .lead {
  padding: 0 15px;
  color: #fff;
  line-height: 2;
  font-weight: 400;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .ct__kv .lead {
    text-align: center;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk01 .ct__kv .lead {
    font-size: 2.4rem;
  }
}
#crosstalk_crosstalk01 .ct__kv .lead .note {
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .ct__kv .lead .note {
    font-size: 1.8rem;
  }
}
#crosstalk_crosstalk01 .profile {
  position: relative;
  padding-top: 8vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile {
    padding-top: 3.65vw;
    padding-bottom: 20.83vw;
  }
}
#crosstalk_crosstalk01 .profile::before {
  content: "";
  display: block;
  height: 22.79%;
  width: 100%;
  background: linear-gradient(#fff5aa, #fff);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile::before {
    height: 42.79%;
  }
}
#crosstalk_crosstalk01 .profile h3 {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 13.33vw;
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile h3 {
    max-width: 1520px;
    margin: 0 auto 3.13vw;
  }
}
#crosstalk_crosstalk01 .profile h3::before {
  content: "";
  display: block;
  width: 24.27vw;
  height: 22.13vw;
  background: url(/asset/images/crosstalk/ct01_profile_img_l.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -20vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile h3::before {
    width: 13.96vw;
    height: 12.76vw;
    top: -8.85vw;
  }
}
#crosstalk_crosstalk01 .profile h3::after {
  content: "";
  display: block;
  width: 21.47vw;
  height: 23.87vw;
  background: url(/asset/images/crosstalk/ct01_profile_img_r.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: -20vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile h3::after {
    width: 12.4vw;
    height: 13.75vw;
    top: -8.85vw;
  }
}
#crosstalk_crosstalk01 .profile h3 img {
  height: 7.73vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile h3 img {
    height: 3.02vw;
  }
}
#crosstalk_crosstalk01 .profile .items {
  padding: 0 15px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items {
    display: flex;
    flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    padding: 0;
    width: 640px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile .items {
    width: 90%;
    justify-content: space-between;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media (min-width: 1521px) {
  #crosstalk_crosstalk01 .profile .items {
    width: auto;
    max-width: 1520px;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
}
#crosstalk_crosstalk01 .profile .items .item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items .item {
    width: 300px;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile .items .item {
    width: 23%;
  }
}
@media (min-width: 1521px) {
  #crosstalk_crosstalk01 .profile .items .item {
    width: 300px;
  }
}
#crosstalk_crosstalk01 .profile .items .item .ph {
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items .item .ph {
    margin-bottom: 10px;
  }
}
#crosstalk_crosstalk01 .profile .items .item .spec {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 0 20px 20px 0;
  padding: 15px;
  min-width: 150px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items .item .spec {
    position: static;
    background: inherit;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding: 0;
    min-width: auto;
  }
}
#crosstalk_crosstalk01 .profile .items .item .spec .name {
  margin-bottom: 5px;
}
#crosstalk_crosstalk01 .profile .items .item .spec .name p {
  font-size: 2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items .item .spec .name p {
    font-size: 3.2rem;
  }
}
#crosstalk_crosstalk01 .profile .items .item .spec .name p span {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items .item .spec .name p span {
    font-size: 2rem;
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .profile .items .item .spec .affiliation {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#crosstalk_crosstalk01 .profile .items .item .detail {
  line-height: 2;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .profile .items .item .detail {
    font-size: 1.6rem;
  }
}
#crosstalk_crosstalk01 .bg_white {
  background-color: #fff;
}
#crosstalk_crosstalk01 .bg_grey {
  background-color: #efefef;
}
#crosstalk_crosstalk01 .r_left {
  border-radius: 50px 0 0 50px;
  margin-left: 15px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .r_left {
    border-radius: 80px 0 0 80px;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .r_left {
    margin-left: auto;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk01 .r_left {
    border-radius: 100px 0 0 100px;
  }
}
#crosstalk_crosstalk01 .r_right {
  border-radius: 0 50px 50px 0;
  margin-right: 15px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .r_right {
    border-radius: 0 80px 80px 0;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .r_right {
    margin-right: auto;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk01 .r_right {
    border-radius: 0 100px 100px 0;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .con_block {
    width: 70.31vw;
  }
}
#crosstalk_crosstalk01 .con_block .con_inner {
  padding: 10.67vw 15px;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .con_block.r_left .con_inner {
    padding: 4.17vw 16.15vw 4.17vw 12.76vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .con_block.r_right .con_inner {
    padding: 4.17vw 12.76vw 4.17vw 16.15vw;
  }
}
#crosstalk_crosstalk01 .con_block p {
  line-height: 2;
}
#crosstalk_crosstalk01 .con_block p:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .con_group {
    display: flex;
  }
  #crosstalk_crosstalk01 .con_group:not(:last-of-type) {
    margin-bottom: 4.17vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .con_group.reverse {
    flex-direction: row-reverse;
  }
}
#crosstalk_crosstalk01 .talk01 .num img, #crosstalk_crosstalk01 .talk02 .num img, #crosstalk_crosstalk01 .talk03 .num img, #crosstalk_crosstalk01 .talk04 .num img {
  height: 13.33vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .num img, #crosstalk_crosstalk01 .talk02 .num img, #crosstalk_crosstalk01 .talk03 .num img, #crosstalk_crosstalk01 .talk04 .num img {
    height: 5.21vw;
  }
}
#crosstalk_crosstalk01 .talk01 .catch, #crosstalk_crosstalk01 .talk02 .catch, #crosstalk_crosstalk01 .talk03 .catch, #crosstalk_crosstalk01 .talk04 .catch {
  font-size: 2.2rem;
  font-weight: 300;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .catch, #crosstalk_crosstalk01 .talk02 .catch, #crosstalk_crosstalk01 .talk03 .catch, #crosstalk_crosstalk01 .talk04 .catch {
    font-size: 3.6rem;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk01 .talk01 .catch, #crosstalk_crosstalk01 .talk02 .catch, #crosstalk_crosstalk01 .talk03 .catch, #crosstalk_crosstalk01 .talk04 .catch {
    font-size: 4.8rem;
  }
}
#crosstalk_crosstalk01 .talk01 .catch span, #crosstalk_crosstalk01 .talk02 .catch span, #crosstalk_crosstalk01 .talk03 .catch span, #crosstalk_crosstalk01 .talk04 .catch span {
  line-height: 1;
  padding: 7px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .catch span, #crosstalk_crosstalk01 .talk02 .catch span, #crosstalk_crosstalk01 .talk03 .catch span, #crosstalk_crosstalk01 .talk04 .catch span {
    margin-bottom: 20px;
  }
}
#crosstalk_crosstalk01 .talk01, #crosstalk_crosstalk01 .talk03 {
  position: relative;
  padding-bottom: 88vw;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .talk01, #crosstalk_crosstalk01 .talk03 {
    padding-bottom: 20vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01, #crosstalk_crosstalk01 .talk03 {
    padding-bottom: 16.15vw;
  }
}
#crosstalk_crosstalk01 .talk01 .ttl, #crosstalk_crosstalk01 .talk03 .ttl {
  padding: 15px 0 0 15px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .ttl, #crosstalk_crosstalk01 .talk03 .ttl {
    padding: 20px 0 0 6.25vw;
  }
}
#crosstalk_crosstalk01 .talk01 .ttl .catch span, #crosstalk_crosstalk01 .talk03 .ttl .catch span {
  background-color: #fff;
}
#crosstalk_crosstalk01 .talk01 .img_bottom, #crosstalk_crosstalk01 .talk03 .img_bottom {
  position: absolute;
  right: 0;
  bottom: -20vw;
  width: 94.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .img_bottom, #crosstalk_crosstalk01 .talk03 .img_bottom {
    bottom: -10.42vw;
    width: 60.42vw;
  }
}
#crosstalk_crosstalk01 .talk02, #crosstalk_crosstalk01 .talk04 {
  padding-top: 26.67vw;
  padding-bottom: 18.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk02, #crosstalk_crosstalk01 .talk04 {
    padding-top: 6.77vw;
  }
}
#crosstalk_crosstalk01 .talk02 .ttl, #crosstalk_crosstalk01 .talk04 .ttl {
  margin: 0 15px;
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk02 .ttl, #crosstalk_crosstalk01 .talk04 .ttl {
    margin: 0 0 3.65vw 6.25vw;
  }
}
#crosstalk_crosstalk01 .talk02 .con_group .ph, #crosstalk_crosstalk01 .talk04 .con_group .ph {
  width: 93.33vw;
  margin-top: 9.73vw;
  margin-bottom: 9.73vw;
  text-align: left;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk02 .con_group .ph, #crosstalk_crosstalk01 .talk04 .con_group .ph {
    width: 26.04vw;
    margin: 0;
  }
}
#crosstalk_crosstalk01 .talk02 .con_group.reverse .ph, #crosstalk_crosstalk01 .talk04 .con_group.reverse .ph {
  margin-left: auto;
  text-align: right;
}
#crosstalk_crosstalk01 .talk01 {
  background-color: #f0a041;
}
#crosstalk_crosstalk01 .talk01 .ttl {
  position: relative;
}
#crosstalk_crosstalk01 .talk01 .ttl .num {
  margin-bottom: 20px;
}
#crosstalk_crosstalk01 .talk01 .ttl .catch {
  position: absolute;
  top: 34.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .ttl .catch {
    position: static;
    margin-left: 3.65vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .ttl .catch span {
    background-color: #f0a041;
    color: #fff;
  }
}
#crosstalk_crosstalk01 .talk01 .ttl .img {
  width: 80%;
  margin-left: auto;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk01 .ttl .img {
    width: 44.27vw;
    position: absolute;
    top: -9.38vw;
    right: 0;
  }
}
#crosstalk_crosstalk01 .talk02 .ttl .num {
  margin-bottom: 9.73vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk02 .ttl .num {
    margin-bottom: 2.08vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk02 .ttl .catch {
    margin-left: 3.65vw;
  }
}
#crosstalk_crosstalk01 .talk02 .ttl .catch span {
  display: inline-block;
  background-color: #00a3be;
  color: #fff;
}
#crosstalk_crosstalk01 .talk02 .ttl .img {
  width: 30.67vw;
  position: absolute;
  right: 0;
  top: 8.53vw;
  z-index: -1;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk02 .ttl .img {
    width: 16vw;
    right: 8.85vw;
  }
}
#crosstalk_crosstalk01 .talk03 {
  background-color: #00a29a;
}
#crosstalk_crosstalk01 .talk03 .ttl .num {
  margin-bottom: 11.33vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk03 .ttl .num {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk03 .ttl .catch {
    position: static;
    margin-left: 3.65vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk03 .ttl .catch span {
    background-color: #00a29a;
    color: #fff;
  }
}
#crosstalk_crosstalk01 .talk03 .con_group .ph {
  width: 93.33vw;
  margin-bottom: 9.33vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk03 .con_group .ph {
    width: 26.04vw;
    margin: 0;
  }
}
#crosstalk_crosstalk01 .talk04 .ttl .num {
  margin-bottom: 9.73vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk04 .ttl .num {
    margin-bottom: 2.08vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk04 .ttl .catch {
    position: static;
    margin-left: 3.65vw;
  }
}
#crosstalk_crosstalk01 .talk04 .ttl .catch span {
  display: inline-block;
  background-color: #e66464;
  color: #fff;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .talk04 .con_group.reverse {
    align-items: flex-end;
  }
}
#crosstalk_crosstalk01 .talk04 .con_group.reverse .ph {
  width: 40.53vw;
  margin-right: 15px;
}
#crosstalk_crosstalk01 .column {
  background: url(/asset/images/crosstalk/ct01_column_bg_sp.jpg) no-repeat center top #33b5cb;
  background-size: 100% auto;
  padding-top: 8vw;
  padding-bottom: 20vw;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk01 .column {
    background: url(/asset/images/crosstalk/ct01_column_bg.jpg) no-repeat center top #33b5cb;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .column {
    padding-top: 3.13vw;
    padding-bottom: 6.77vw;
  }
}
#crosstalk_crosstalk01 .column .ttl {
  text-align: center;
  color: #fff;
  margin-bottom: 9.33vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .column .ttl {
    margin-bottom: 2.6vw;
  }
}
#crosstalk_crosstalk01 .column .ttl h3 img {
  height: 7.73vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .column .ttl h3 img {
    height: 3.02vw;
  }
}
#crosstalk_crosstalk01 .column .ttl p {
  margin-top: 5px;
}
#crosstalk_crosstalk01 .column .con_group .ph {
  width: 93.33vw;
  margin-bottom: 9.33vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .column .con_group .ph {
    width: 41.67vw;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .column .con_group .con_block {
    width: 54.69vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk01 .column .con_group .con_block .con_inner {
    padding: 3.65vw 10.42vw 3.65vw 3.65vw;
  }
}

#crosstalk_crosstalk02 {
  overflow: hidden;
  /* ct__kv */
  /* profile */
  /* talk01 */
  /* talk02 */
  /* talk03 */
  /* talk04 */
}
#crosstalk_crosstalk02 .ct__kv {
  background-color: #00a29a;
  margin-top: 50px;
  padding-bottom: 14.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .ct__kv {
    margin-top: 100px;
    padding-top: 4.17vw;
    padding-bottom: 3.65vw;
  }
}
#crosstalk_crosstalk02 .ct__kv .inner {
  max-width: 1750px;
  margin: 0 auto;
}
#crosstalk_crosstalk02 .ct__kv .ttl {
  color: #fff;
  text-align: center;
  width: 71.07vw;
  margin: -3.6vw auto 7.2vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .ct__kv .ttl {
    text-align: left;
    width: 25vw;
    margin: -1.04vw 0 0 2.08vw;
  }
}
#crosstalk_crosstalk02 .ct__kv .ttl h2 {
  margin-bottom: 2.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .ct__kv .ttl h2 {
    margin-bottom: 1.3vw;
  }
}
#crosstalk_crosstalk02 .ct__kv .ttl p {
  font-size: 1.6rem;
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .ct__kv .ttl p {
    font-size: 3.2rem;
  }
}
#crosstalk_crosstalk02 .ct__kv .catch {
  position: relative;
  padding: 0 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .ct__kv .catch {
    width: 80%;
    padding: 0;
    margin: 0 auto 30px;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .ct__kv .catch {
    width: 47.29vw;
    margin: -17.15vw 0 30px 31.51vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .ct__kv .catch {
    width: 47.29vw;
    margin: -17.15vw 0 40px 31.51vw;
  }
}
#crosstalk_crosstalk02 .ct__kv .catch::before {
  content: "";
  display: block;
  width: 22.27vw;
  height: 28.53vw;
  background: url(/asset/images/crosstalk/ct02_kv_img.svg) no-repeat;
  background-size: cover;
  position: absolute;
  right: 8vw;
  top: -6vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .ct__kv .catch::before {
    width: 8.7vw;
    height: 11.15vw;
    right: -12.1vw;
    bottom: -2vw;
    top: auto;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .ct__kv .catch::before {
    right: -11.1vw;
  }
}
#crosstalk_crosstalk02 .ct__kv .lead {
  padding: 0 15px;
  color: #fff;
  line-height: 2;
  font-weight: 400;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .ct__kv .lead {
    text-align: center;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .ct__kv .lead {
    font-size: 2.4rem;
  }
}
#crosstalk_crosstalk02 .ct__kv .lead .note {
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .ct__kv .lead .note {
    font-size: 1.8rem;
  }
}
#crosstalk_crosstalk02 .profile {
  position: relative;
  padding-top: 8vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .profile {
    padding-top: 3.65vw;
    padding-bottom: 10.42vw;
  }
}
#crosstalk_crosstalk02 .profile::before {
  content: "";
  display: block;
  height: 22.79%;
  width: 100%;
  background: linear-gradient(#fff5aa, #fff);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile::before {
    height: 42.79%;
  }
}
#crosstalk_crosstalk02 .profile h3 {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 13.33vw;
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .profile h3 {
    max-width: 1520px;
    margin: 0 auto 3.13vw;
  }
}
#crosstalk_crosstalk02 .profile h3 img {
  height: 7.73vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .profile h3 img {
    height: 3.02vw;
  }
}
#crosstalk_crosstalk02 .profile .items {
  padding: 0 15px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items {
    display: flex;
    flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    padding: 0;
    width: 640px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .profile .items {
    width: 90%;
    justify-content: space-between;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media (min-width: 1521px) {
  #crosstalk_crosstalk02 .profile .items {
    width: auto;
    max-width: 1520px;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
}
#crosstalk_crosstalk02 .profile .items .item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items .item {
    width: 300px;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .profile .items .item {
    width: 23%;
  }
}
@media (min-width: 1521px) {
  #crosstalk_crosstalk02 .profile .items .item {
    width: 300px;
  }
}
#crosstalk_crosstalk02 .profile .items .item .ph {
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items .item .ph {
    margin-bottom: 10px;
  }
}
#crosstalk_crosstalk02 .profile .items .item .spec {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 15px;
  min-width: 150px;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items .item .spec {
    position: static;
    background: inherit;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding: 0;
    min-width: auto;
  }
}
#crosstalk_crosstalk02 .profile .items .item .spec .name {
  margin-bottom: 5px;
}
#crosstalk_crosstalk02 .profile .items .item .spec .name p {
  font-size: 2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items .item .spec .name p {
    font-size: 3.2rem;
  }
}
#crosstalk_crosstalk02 .profile .items .item .spec .name p span {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items .item .spec .name p span {
    font-size: 2rem;
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .profile .items .item .spec .affiliation {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#crosstalk_crosstalk02 .profile .items .item .detail {
  line-height: 2;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .profile .items .item .detail {
    font-size: 1.6rem;
  }
}
#crosstalk_crosstalk02 .profile .items .item .detail .note {
  display: block;
  font-size: 80%;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .con_group:not(:last-of-type) {
    margin-bottom: 6.67vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .con_group:not(:last-of-type) {
    margin-bottom: 3.13vw;
  }
}
#crosstalk_crosstalk02 .con_block .con_inner {
  padding: 6.67vw 15px 0;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .con_block .con_inner {
    padding: 0;
  }
}
#crosstalk_crosstalk02 .con_block p {
  line-height: 2;
}
#crosstalk_crosstalk02 .con_block p:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
#crosstalk_crosstalk02 .con {
  position: relative;
  z-index: 3;
}
#crosstalk_crosstalk02 .talk01, #crosstalk_crosstalk02 .talk02, #crosstalk_crosstalk02 .talk03, #crosstalk_crosstalk02 .talk04 {
  padding-bottom: 18.67vw;
}
#crosstalk_crosstalk02 .talk01 .ttl, #crosstalk_crosstalk02 .talk02 .ttl, #crosstalk_crosstalk02 .talk03 .ttl, #crosstalk_crosstalk02 .talk04 .ttl {
  width: 72%;
  margin-left: auto;
  padding: 7vw 0;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .talk01 .ttl, #crosstalk_crosstalk02 .talk02 .ttl, #crosstalk_crosstalk02 .talk03 .ttl, #crosstalk_crosstalk02 .talk04 .ttl {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .ttl, #crosstalk_crosstalk02 .talk02 .ttl, #crosstalk_crosstalk02 .talk03 .ttl, #crosstalk_crosstalk02 .talk04 .ttl {
    width: auto;
    margin-left: 0;
    padding: 0;
  }
}
#crosstalk_crosstalk02 .talk01 .ttl h3, #crosstalk_crosstalk02 .talk02 .ttl h3, #crosstalk_crosstalk02 .talk03 .ttl h3, #crosstalk_crosstalk02 .talk04 .ttl h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk01 .ttl h3, #crosstalk_crosstalk02 .talk02 .ttl h3, #crosstalk_crosstalk02 .talk03 .ttl h3, #crosstalk_crosstalk02 .talk04 .ttl h3 {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group01, #crosstalk_crosstalk02 .talk02 .group01 {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group02, #crosstalk_crosstalk02 .talk02 .group02 {
    display: flex;
  }
}
#crosstalk_crosstalk02 .talk02, #crosstalk_crosstalk02 .talk04 {
  background-color: #f7f8fa;
}
#crosstalk_crosstalk02 .talk01 .main_ph {
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .main_ph {
    width: 83.85vw;
  }
}
#crosstalk_crosstalk02 .talk01 .main_ph::before {
  content: "";
  display: block;
  width: 66.67vw;
  height: 21.33vw;
  background-image: linear-gradient(90deg, #036eb8, transparent);
  position: absolute;
  left: 0;
  bottom: -12vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .main_ph::before {
    width: 26.04vw;
    height: 7.81vw;
    bottom: -4.17vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .ttl {
    margin-left: 10.42vw;
    margin-top: 1.6vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .con {
    margin-top: 4.27vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group01 .con_block {
    width: 45vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk01 .group01 .con_block {
    width: 37.71vw;
  }
}
#crosstalk_crosstalk02 .talk01 .group01 .ph {
  text-align: right;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group01 .ph {
    width: 39.06vw;
    margin-left: 7.03vw;
    margin-top: -6.25vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group02 {
    margin-left: 10.42vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group02 .con_block {
    width: 50vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk01 .group02 .con_block {
    width: 40.99vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk01 .group02 .ph {
    width: 26.04vw;
    margin-right: 5.21vw;
  }
}
#crosstalk_crosstalk02 .talk02 {
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 {
    padding-bottom: 26.04vw;
  }
}
#crosstalk_crosstalk02 .talk02 .main_ph {
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .main_ph {
    width: 39.06vw;
    top: -4.17vw;
  }
}
#crosstalk_crosstalk02 .talk02 .main_ph::before {
  content: "";
  display: block;
  width: 66.67vw;
  height: 21.33vw;
  background-image: linear-gradient(90deg, #e60012, transparent);
  position: absolute;
  left: 0;
  bottom: -12vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .main_ph::before {
    width: 31.25vw;
    height: 7.81vw;
    left: 20.83vw;
    bottom: -3.65vw;
  }
}
#crosstalk_crosstalk02 .talk02 .main_ph img {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .ttl {
    position: absolute;
    left: 41.67vw;
    top: 8.85vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .con {
    margin-top: 5.21vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .group01 .con_block {
    width: 45vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk02 .group01 .con_block {
    width: 37.71vw;
  }
}
#crosstalk_crosstalk02 .talk02 .group01 .ph {
  text-align: right;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .group01 .ph {
    width: 36.46vw;
    margin-left: 7.03vw;
    margin-top: -1.56vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .group02 {
    margin-left: 10.42vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .group02 .con_block {
    width: 50vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk02 .group02 .con_block {
    width: 40.99vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk02 .group02 .ph {
    width: 26.04vw;
    margin-right: 5.21vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 {
    margin-top: -13.91vw;
    padding-bottom: 10.42vw;
  }
}
#crosstalk_crosstalk02 .talk03 .main_ph {
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .main_ph {
    width: 83.85vw;
  }
}
#crosstalk_crosstalk02 .talk03 .main_ph::before {
  content: "";
  display: block;
  width: 22.67vw;
  height: 50.67vw;
  background-image: linear-gradient(180deg, #00a29a, transparent);
  position: absolute;
  left: 12vw;
  bottom: -50.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .main_ph::before {
    width: 7.81vw;
    height: 31.25vw;
    left: 6.25vw;
    bottom: -31.25vw;
  }
}
#crosstalk_crosstalk02 .talk03 .ttl {
  margin-top: 9.9vw;
  margin-left: 9.9vw;
  margin-bottom: 4.95vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .group01 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-left: 16.15vw;
    margin-right: 10.42vw;
  }
}
#crosstalk_crosstalk02 .talk03 .group01 .con_block {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  #crosstalk_crosstalk02 .talk03 .group01 .con_block {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .group01 .con_block {
    width: 42vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk03 .group01 .con_block {
    width: 37.66vw;
  }
}
#crosstalk_crosstalk02 .talk03 .group01 .ph {
  text-align: right;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .group01 .ph {
    width: 26.04vw;
    margin-top: -6.77vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .group02 {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .group02 .con_block {
    width: 48vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk03 .group02 .con_block {
    width: 42.14vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk03 .group02 .ph {
    width: 33.85vw;
    margin-right: 7.81vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 {
    padding-top: 7.81vw;
    padding-bottom: 7.29vw;
  }
}
#crosstalk_crosstalk02 .talk04 .main_ph {
  position: relative;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .main_ph {
    width: 39.06vw;
  }
}
#crosstalk_crosstalk02 .talk04 .main_ph::before {
  content: "";
  display: block;
  width: 22.67vw;
  height: 50.67vw;
  background-image: linear-gradient(180deg, #f38200, transparent);
  position: absolute;
  left: 12vw;
  bottom: -50.67vw;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .main_ph::before {
    width: 7.81vw;
    height: 43.18vw;
    bottom: auto;
    top: -7.81vw;
    left: 34.9vw;
    z-index: -1;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .ttl {
    margin-bottom: 3.8vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .group01 {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .group01 .con_block {
    width: 42.19vw;
    margin-left: 7.97vw;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .group02 {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .group02 .con_block {
    width: 48vw;
  }
}
@media (min-width: 1366px) {
  #crosstalk_crosstalk02 .talk04 .group02 .con_block {
    width: 41.88vw;
  }
}
#crosstalk_crosstalk02 .talk04 .group02 .ph {
  text-align: right;
}
@media (min-width: 1024px) {
  #crosstalk_crosstalk02 .talk04 .group02 .ph {
    width: 36.46vw;
    margin-left: 5.47vw;
  }
}