@charset "UTF-8";
/**
 * Variable
 */
/**
 * Mixin
 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/**
 * Base
 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
  height: 100vh;
}

html.is-open {
  overflow: hidden;
}

body {
  color: #000;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background: #FFF;
  line-height: 1.6;
  box-sizing: border-box;
  overflow-x: hidden;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
body.is-fix {
  overflow: hidden;
}

a {
  color: #000;
  line-height: 1.6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}

/**
 * Layout Footer
 */
.l-footer {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .page-articleDetail .l-footer {
    margin: 0 auto;
  }
}

/**
 * Layout Header
 */
.l-header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translate3d(0, 0, 0);
}

/**
 * Layout Main
 */
.l-main {
  position: relative;
}

/**
 * Layout Wrap
 */
.l-wrap {
  position: relative;
}
/*
---
name: Annotation
category:
  - component
  - component/annotation
---

```html

```
*/
.c-annotation {
  color: #000;
  letter-spacing: -0.04em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-annotation {
    font-size: clamp(9px, 0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .c-annotation {
    font-size: min(2.4vw, 18px);
  }
}

@media screen and (min-width: 768px) {
  .c-annotation-icon {
    font-size: clamp(9px, 0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .c-annotation-icon {
    font-size: min(2.4vw, 18px);
  }
}

/**
 * Article card
 */
.c-article_card {
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease-out 0.16s;
}
.c-article_card::before {
  position: absolute;
  content: "";
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .c-article_card::before {
    top: min(-0.439238653vw, -6px);
    left: min(-0.439238653vw, -6px);
    width: min(6.2957540264vw, 86px);
    height: min(6.2957540264vw, 86px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card::before {
    top: min(-0.6666666667vw, -5px);
    left: min(-0.6666666667vw, -5px);
    width: min(14.6666666667vw, 110px);
    height: min(14.6666666667vw, 110px);
  }
}
.c-article_card.is-hidden {
  display: none;
}
.c-article_card.is-show {
  opacity: 1;
}

.c-nextInterview_wrap .c-article_card,
.c-relatedPosts_wrap .c-article_card,
.c-magazine_wrap .c-article_card,
.c-careerStaff_wrap .c-article_card {
  opacity: 1;
}

.c-article_card_link {
  position: relative;
  display: block;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-article_card_link .c-article_card_img img {
    transition: scale 0.3s ease-in-out;
  }
  .c-article_card_link .c-article_card_text {
    transition: color 0.3s ease-in-out;
  }
  .c-article_card_link:hover .c-article_card_img img {
    scale: 1.05;
  }
  .c-article_card_link:hover .c-article_card_text {
    color: #D70C19;
  }
}

.c-article_card_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 305/202;
  overflow: hidden;
}
.c-article_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-article_card_textarea {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-article_card_textarea {
    margin-top: min(11.7130307467vw, 160px);
    margin-left: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_textarea {
    margin-top: min(21.0666666667vw, 158px);
    margin-left: min(1.3333333333vw, 10px);
  }
}
@media screen and (min-width: 768px) {
  .c-article_card_textarea:not(:has(.c-article_card_caption)) {
    margin-top: min(13.6896046852vw, 187px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_textarea:not(:has(.c-article_card_caption)) {
    margin-top: min(25.6vw, 192px);
  }
}

.c-article_card_caption {
  display: inline-block;
  background: #D70C19;
  color: #FFF;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .c-article_card_caption {
    margin-bottom: min(0.5856515373vw, 8px);
    padding: min(0.1464128843vw, 2px) min(0.5856515373vw, 8px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_caption {
    margin-bottom: min(1.0666666667vw, 8px);
    padding: min(0.2666666667vw, 2px) min(1.0666666667vw, 8px);
    font-size: min(2.1333333333vw, 16px);
  }
}

.c-article_card_title_wrap {
  margin-top: auto;
}

.c-article_card_title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFF;
  border: 1px solid #000;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-article_card_title {
    padding: min(0.0732064422vw, 1px) min(0.5124450952vw, 7px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_title {
    padding: min(0.6666666667vw, 5px) min(0.9333333333vw, 7px);
    font-size: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .c-article_card_title + .c-article_card_title {
    margin-top: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_title + .c-article_card_title {
    margin-top: min(0.5333333333vw, 4px);
  }
}

@media screen and (min-width: 768px) {
  .c-article_card_tags {
    margin: auto min(2.3426061493vw, 32px) min(2.3426061493vw, 32px) min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_tags {
    margin: auto min(3.2vw, 24px) min(3.2vw, 24px) min(3.2vw, 24px);
  }
}

.c-article_card_siteName {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-article_card_siteName {
    margin-right: min(2.3426061493vw, 32px);
    margin-bottom: min(2.3426061493vw, 32px);
    margin-left: min(2.3426061493vw, 32px);
    padding-right: min(1.3909224012vw, 19px);
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_siteName {
    margin-right: min(3.2vw, 24px);
    margin-bottom: min(4vw, 62px);
    margin-left: min(3.2vw, 24px);
    padding-right: min(3.6vw, 27px);
    font-size: min(3.2vw, 24px);
  }
}
.c-article_card_siteName::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  content: "";
  aspect-ratio: 1/1;
  background: url("../images/common/ico_outerLink.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .c-article_card_siteName::after {
    width: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_siteName::after {
    width: min(2.5333333333vw, 19px);
  }
}

.c-nextInterview .c-article_card::before,
.c-relatedPosts .c-article_card::before {
  content: none;
}

@media screen and (min-width: 768px) {
  .c-relatedPosts .c-article_card_textarea {
    margin-top: min(9.5168374817vw, 130px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-article_card_textarea {
    margin-top: min(18.5333333333vw, 139px);
  }
}
@media screen and (min-width: 768px) {
  .c-relatedPosts .c-article_card_textarea:not(:has(.c-article_card_caption)) {
    margin-top: min(11.4934114202vw, 157px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-article_card_textarea:not(:has(.c-article_card_caption)) {
    margin-top: min(22.5333333333vw, 169px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-article_card_caption {
    font-size: min(1.8666666667vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-article_card_title {
    font-size: min(2.2666666667vw, 17px);
  }
}

.page-links_articles .c-article_card {
  background: #FFF;
}
.page-links_articles .c-article_card_img {
  position: static;
}
@media screen and (min-width: 768px) {
  .page-links_articles .c-article_card_img {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-links_articles .c-article_card_img {
    margin-bottom: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-links_articles .c-article_card_text {
    margin-right: min(2.3426061493vw, 32px);
    margin-bottom: min(1.0980966325vw, 15px);
    margin-left: min(2.3426061493vw, 32px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-links_articles .c-article_card_text {
    margin-right: min(3.2vw, 24px);
    margin-bottom: min(4vw, 62px);
    margin-left: min(3.2vw, 24px);
    font-size: min(3.2vw, 24px);
  }
}

/**
 * Banner Magazine
 */
.c-bnr_magazine {
  border-top: 1px solid #D9D9D9;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .c-bnr_magazine {
    padding-top: min(5.8565153734vw, 80px);
    padding-bottom: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .c-bnr_magazine {
    padding-top: min(10.6666666667vw, 80px);
    padding-bottom: min(10.6666666667vw, 80px);
  }
}

.c-bnr_magazine_link {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-bnr_magazine_link {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .c-bnr_magazine_link {
    width: min(89.3333333333vw, 670px);
  }
}
@media (any-hover: hover) {
  .c-bnr_magazine_link {
    transition: opacity 0.3s ease-in-out;
  }
  .c-bnr_magazine_link:hover {
    opacity: 0.8;
  }
}

.c-bnr_magazine_picture {
  display: block;
}

/*
---
name: Box
category:
  - component
  - component/box
---

```html
<div class="c-box"></div>
```
*/
.c-box {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .c-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .c-box {
    padding: min(16vw, 120px) min(5.3333333333vw, 40px);
  }
}
.c-box-blue {
  background-color: #F5F8F9;
}
.c-box > .c-media,
.c-box > .c-vmedia {
  margin-right: 0;
}

/*
---
name: Button
category:
  - component
  - component/button
---

```html
<p><a class="c-button">Button</a></p>
<p><a class="c-button is-selected">Button</a></p>
<p><button class="c-button c-button-large">Button</button></p>
<p><a class="c-button c-button-fullWidth">Button</a></p>
```
*/
.c-button {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  background-color: transparent;
  letter-spacing: 0.1rem;
  line-height: 1rem;
  text-align: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.c-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.c-button-fullWidth, .c-button-large {
  padding: 0.4em 1.2em 0.4em;
  font-size: 22px;
  font-weight: bold;
}
.c-button-fullWidth:before, .c-button-large:before {
  height: 2px;
}
.c-button-fullWidth {
  width: 100%;
  text-align: center;
}
.c-button-white {
  border-color: #fff;
  color: #fff;
}

/*
---
name: Button Group
category:
  - component
  - component/button
---

```html
<ul class="c-buttonGroup">
  <li class="c-buttonGroup_item"><a class="c-button">Button</a></li>
  <li class="c-buttonGroup_item"><a class="c-button">Button</a></li>
</ul>
<ul class="c-buttonGroup c-buttonGroup-left">
  <li class="c-buttonGroup_item"><a class="c-button">Button</a></li>
  <li class="c-buttonGroup_item"><a class="c-button">Button</a></li>
</ul>
<ul class="c-buttonGroup c-buttonGroup-right">
  <li class="c-buttonGroup_item"><a class="c-button">Button</a></li>
  <li class="c-buttonGroup_item"><a class="c-button">Button</a></li>
</ul>
```
*/
.c-buttonGroup {
  text-align: center;
  font-size: 0;
}
.c-buttonGroup-left {
  text-align: left;
}
.c-buttonGroup-right {
  text-align: right;
}

.c-buttonGroup_item {
  display: inline-block;
}

/*
---
name: Hamburger Button
category:
  - component
  - component/button
---

```html
<div class=" c-burgerButton">
  <div class="c-burgerButton_bar c-burgerButton_bar-1"></div>
  <div class="c-burgerButton_bar c-burgerButton_bar-2"></div>
  <div class="c-burgerButton_bar c-burgerButton_bar-3"></div>
</div>
<div class=" c-burgerButton is-close">
  <div class="c-burgerButton_bar c-burgerButton_bar-1"></div>
  <div class="c-burgerButton_bar c-burgerButton_bar-2"></div>
  <div class="c-burgerButton_bar c-burgerButton_bar-3"></div>
</div>
```
*/
.c-burgerButton {
  position: relative;
  opacity: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-burgerButton {
    width: 40px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-burgerButton {
    width: min(10.6666666667vw, 80px);
    height: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .c-burgerButton.is-close .c-burgerButton_bar-1 {
    animation: active-btn07-bar01 0.75s forwards;
  }
}
@media screen and (max-width: 1024px) {
  .c-burgerButton.is-close .c-burgerButton_bar-1 {
    animation: active-btn07-bar01-sp 0.75s forwards;
  }
}
.c-burgerButton.is-close .c-burgerButton_bar-2 {
  opacity: 0;
}
.c-burgerButton.is-close .c-burgerButton_bar-3 {
  animation: active-btn07-bar03 0.75s forwards;
}
@media screen and (max-width: 1024px) {
  .c-burgerButton.is-close {
    transition: opacity 0.1s 0.75s ease-in-out;
  }
}
.c-burgerButton_bar {
  position: absolute;
  background-color: #000;
  transition: all 0.3s ease, transform 0.5s ease;
  transform-origin: center center;
  transform: rotate(0deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-burgerButton_bar {
    height: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-burgerButton_bar {
    height: 1px;
  }
}
.c-burgerButton_bar-1 {
  animation: btn07-bar01 0.75s forwards;
  top: 0;
}
.c-burgerButton_bar-2 {
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-burgerButton_bar-2 {
    top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .c-burgerButton_bar-2 {
    top: 6px;
  }
}
.c-burgerButton_bar-3 {
  animation: btn07-bar03 0.75s forwards;
  bottom: 0;
}
@media screen and (min-width: 1025px) {
  .c-burgerButton:hover .c-burgerButton_bar-2 {
    width: 50%;
  }
  .c-burgerButton:hover .c-burgerButton_bar-3 {
    width: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .c-burgerButton.is-close:hover .c-burgerButton_bar-3 {
    width: 100%;
  }
}

/*=============================
#btn07
=============================*/
@keyframes btn07-bar01 {
  0% {
    transform: translate3d(1px, 10px, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(1px, 10px, 0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translate3d(1px, -9px, 0) rotate(-45deg);
  }
  50% {
    transform: translate3d(1px, -9px, 0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translate3d(1px, 8px, 0) rotate(0);
  }
  100% {
    transform: translate3d(1px, 8px, 0) rotate(45deg);
  }
}
@keyframes active-btn07-bar01-sp {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translate3d(1px, 7px, 0) rotate(0);
  }
  100% {
    transform: translate3d(1px, 7px, 0) rotate(45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
    width: 100%;
  }
  50% {
    transform: translate3d(1px, -5px, 0) rotate(0);
  }
  100% {
    transform: translate3d(1px, -5px, 0) rotate(-45deg);
  }
}
/*
---
name: Entry Button
category:
  - component
  - component/button
---

```html
<div class="c-entryButton"><a href="#"><span><strong>ENTRY</strong>MY PAGE</span></a></div>
```
*/
/*
---
name: Internship Button
category:
  - component
  - component/button
---

```html
<div class="c-internshipButton"><a href="#">2022年 冬季 INTERNSHIP ENTRY</a></div>
```
*/
.c-internshipButton,
.c-contactButton {
  position: relative;
  background: linear-gradient(60deg, rgb(177, 177, 177) 0%, rgb(196, 108, 114) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .c-internshipButton,
  .c-contactButton {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
  }
}
.c-internshipButton:hover,
.c-contactButton:hover {
  opacity: 0.9;
}
.c-internshipButton::before,
.c-contactButton::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  background: #111;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .c-internshipButton::before,
  .c-contactButton::before {
    width: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .c-internshipButton::before,
  .c-contactButton::before {
    width: 5.3333333333vw;
  }
}
.c-internshipButton::after,
.c-contactButton::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url("../images/common/ico-arrow-white.png") no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .c-internshipButton::after,
  .c-contactButton::after {
    right: 24px;
    width: 12px;
    height: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .c-internshipButton::after,
  .c-contactButton::after {
    right: 2.1333333333vw;
    width: 1.2vw;
    height: 2.1333333333vw;
  }
}
.c-internshipButton a,
.c-contactButton a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #111;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .c-internshipButton a,
  .c-contactButton a {
    min-height: 72px;
    font-size: 19px;
    padding: 16px 80px 20px 20px;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }
  .c-internshipButton a strong,
  .c-contactButton a strong {
    margin-right: 20px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 1024px) {
  .c-internshipButton a,
  .c-contactButton a {
    min-height: calc(72px - 4vw - 3.6vw);
    font-size: 2.2666666667vw;
    letter-spacing: 0.03em;
    padding: 4vw calc(5.3333333333vw + 12px) 3.6vw 12px;
  }
  .c-internshipButton a strong,
  .c-contactButton a strong {
    margin-right: 2vw;
    font-size: 3.3333333333vw;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
}

/*
---
name: Arrow Square Button
category:
  - component
  - component/button
---

```html
<span class="c-arrowSquareButton"></span>
```
*/
.c-arrowSquareButton {
  box-sizing: border-box;
  border: 2px solid #000;
  cursor: pointer;
  display: block;
  position: relative;
}
.c-arrowSquareButton:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-arrowSquareButton-prev {
  margin-right: -1px;
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-prev:before {
    background: url("../images/common/ico-arrow-left.png") no-repeat 0 0/contain;
    width: 31px;
    height: 7px;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-prev:before {
    background: url("../images/common/sp/ico-arrow-left.png") no-repeat 0 0/contain;
    width: 5.8666666667vw;
    height: 1.7333333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-prev:hover:before {
    background: url("../images/common/ico-arrow-red-left.png") no-repeat 0 0/contain;
  }
}
.c-arrowSquareButton-next {
  border-left: none;
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-next:before {
    background: url("../images/common/ico-arrow-right.png") no-repeat 0 0/contain;
    width: 31px;
    height: 7px;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-next:before {
    background: url("../images/common/sp/ico-arrow-right.png") no-repeat 0 0/contain;
    width: 5.8666666667vw;
    height: 1.7333333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-next:hover:before {
    background: url("../images/common/ico-arrow-red-right.png") no-repeat 0 0/contain;
  }
}
.c-arrowSquareButton-red {
  border-color: #e60000;
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-red.c-arrowSquareButton-prev:before {
    background: url("../images/common/ico-arrow-red-left.png") no-repeat 0 0/contain;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-red.c-arrowSquareButton-prev:before {
    background: url("../images/common/sp/ico-arrow-red-left.png") no-repeat 0 0/contain;
  }
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-red.c-arrowSquareButton-next:before {
    background: url("../images/common/ico-arrow-red-right.png") no-repeat 0 0/contain;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-red.c-arrowSquareButton-next:before {
    background: url("../images/common/sp/ico-arrow-red-right.png") no-repeat 0 0/contain;
  }
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-red:hover {
    background-color: rgba(215, 12, 25, 0.9);
  }
  .c-arrowSquareButton-red:hover.c-arrowSquareButton-prev:before {
    background: url("../images/common/ico-arrow-left.png") no-repeat 0 0/contain;
  }
  .c-arrowSquareButton-red:hover.c-arrowSquareButton-next:before {
    background: url("../images/common/ico-arrow-right.png") no-repeat 0 0/contain;
  }
}
.c-arrowSquareButton-black {
  border-color: #000;
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-black.c-arrowSquareButton-prev:before {
    background: url("../images/common/ico-arrow-black-left.png") no-repeat 0 0/contain;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-black.c-arrowSquareButton-prev:before {
    background: url("../images/common/sp/ico-arrow-black-left.png") no-repeat 0 0/contain;
  }
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-black.c-arrowSquareButton-next:before {
    background: url("../images/common/ico-arrow-black-right.png") no-repeat 0 0/contain;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-black.c-arrowSquareButton-next:before {
    background: url("../images/common/sp/ico-arrow-black-right.png") no-repeat 0 0/contain;
  }
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-black:hover {
    background-color: #000;
  }
  .c-arrowSquareButton-black:hover.c-arrowSquareButton-prev:before {
    background: url("../images/common/ico-arrow-left.png") no-repeat 0 0/contain;
  }
  .c-arrowSquareButton-black:hover.c-arrowSquareButton-next:before {
    background: url("../images/common/ico-arrow-right.png") no-repeat 0 0/contain;
  }
}
.c-arrowSquareButton-white {
  border-color: #fff;
}
.c-arrowSquareButton-white:before {
  border-color: #fff;
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-white:hover {
    background-color: #fff;
  }
}
.c-arrowSquareButton-relatedPosts {
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .c-arrowSquareButton-relatedPosts {
    height: 80px;
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .c-arrowSquareButton-relatedPosts {
    height: 13.3333333333vw;
    width: 13.3333333333vw;
  }
}

/*
---
name: Arrow Rounded Button
category:
  - component
  - component/button
---

```html
<span class="c-arrowRoundedButton"></span>
```
*/
.c-arrowRoundedButton {
  position: relative;
  display: block;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-arrowRoundedButton {
    width: min(2.196193265vw, 30px);
    height: min(2.196193265vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .c-arrowRoundedButton {
    width: min(6.1333333333vw, 46px);
    height: min(6.1333333333vw, 46px);
  }
}
.c-arrowRoundedButton-prev svg, .c-arrowRoundedButton-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  display: block;
}
@media screen and (min-width: 768px) {
  .c-arrowRoundedButton-prev svg, .c-arrowRoundedButton-next svg {
    width: min(0.5856515373vw, 8px);
    aspect-ratio: 8/13;
  }
}
@media screen and (max-width: 767px) {
  .c-arrowRoundedButton-prev svg, .c-arrowRoundedButton-next svg {
    width: min(1.7333333333vw, 13px);
    aspect-ratio: 13/21;
  }
}
.c-arrowRoundedButton-prev svg path, .c-arrowRoundedButton-next svg path {
  fill: #000;
}
.c-arrowRoundedButton-prev svg {
  margin-left: -1px;
}
.c-arrowRoundedButton-next svg {
  margin-left: 1px;
}
@media (any-hover: hover) {
  .c-arrowRoundedButton {
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  .c-arrowRoundedButton.c-arrowRoundedButton-prev svg path, .c-arrowRoundedButton.c-arrowRoundedButton-next svg path {
    transition: fill 0.3s ease-in-out;
  }
  .c-arrowRoundedButton:hover {
    background: #000;
  }
  .c-arrowRoundedButton:hover.c-arrowRoundedButton-prev svg path, .c-arrowRoundedButton:hover.c-arrowRoundedButton-next svg path {
    fill: #FFF;
  }
}

.c-roundedButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #D70C19 0%, #D70C19 50%, #FFF 100%);
}
@media screen and (min-width: 768px) {
  .c-roundedButton {
    width: min(57.1010248902vw, 780px);
    aspect-ratio: 780/80;
    padding-right: min(1.4641288433vw, 20px);
    padding-left: min(4.39238653vw, 60px);
    border: 2px solid #FFF;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 2.9282576867vw;
    max-height: 40px;
    width: 2.9282576867vw;
    max-width: 40px;
    vertical-align: middle;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .c-roundedButton .ico-diagonal-arrow-circle-hover {
    height: 10.6666666667vw;
    width: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-roundedButton .ico-diagonal-arrow-circle-hover:before {
    background-color: #FFF;
    border-radius: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transform: scale(0.75);
    transform-origin: center;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media screen and (min-width: 768px) {
  .c-roundedButton .ico-diagonal-arrow-circle-hover:after {
    border: 1px solid #D70C19;
    border-radius: 100%;
    box-sizing: border-box;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover > * {
    position: relative;
    z-index: 2;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover svg {
    height: 30%;
    width: 30%;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover rect {
    fill: #FFF;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white {
    background-color: #fff;
    border-radius: 100%;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white:before {
    background-color: #D70C19;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white:after {
    border-color: #fff;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white rect {
    fill: #D70C19;
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover:before {
    opacity: 1;
    transform: scale(1);
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover:after {
    opacity: 0;
    transform: scale(1.2);
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover rect {
    fill: #D70C19;
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover-white {
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-roundedButton {
    width: min(78.6666666667vw, 590px);
    aspect-ratio: 590/120;
    padding-right: min(4vw, 30px);
    padding-left: min(8vw, 60px);
    border: min(0.2666666667vw, 2px) solid #FFF;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 2.9282576867vw;
    max-height: 40px;
    width: 2.9282576867vw;
    max-width: 40px;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-roundedButton .ico-diagonal-arrow-circle-hover {
    height: 10.6666666667vw;
    width: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-roundedButton .ico-diagonal-arrow-circle-hover:before {
    background-color: #FFF;
    border-radius: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transform: scale(0.75);
    transform-origin: center;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media screen and (max-width: 767px) {
  .c-roundedButton .ico-diagonal-arrow-circle-hover:after {
    border: 1px solid #D70C19;
    border-radius: 100%;
    box-sizing: border-box;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover > * {
    position: relative;
    z-index: 2;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover svg {
    height: 30%;
    width: 30%;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover rect {
    fill: #FFF;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white {
    background-color: #fff;
    border-radius: 100%;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white:before {
    background-color: #D70C19;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white:after {
    border-color: #fff;
  }
  .c-roundedButton .ico-diagonal-arrow-circle-hover-white rect {
    fill: #D70C19;
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover:before {
    opacity: 1;
    transform: scale(1);
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover:after {
    opacity: 0;
    transform: scale(1.2);
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover rect {
    fill: #D70C19;
  }
  .c-roundedButton:hover .ico-diagonal-arrow-circle-hover-white {
    border: 1px solid #fff;
  }
}
.c-roundedButton_red {
  border-color: #D70C19 !important;
}
.c-roundedButton .ico-diagonal-arrow-circle-hover {
  border-radius: 100%;
  background: #D70C19;
}
.c-roundedButton > div {
  display: flex;
  align-items: center;
  color: #FFF;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-roundedButton > div {
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .c-roundedButton > div {
    font-size: min(3.2vw, 24px);
  }
}
.c-roundedButton_en {
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .c-roundedButton_en {
    margin-top: min(-0.1464128843vw, -2px);
    margin-right: min(0.7320644217vw, 10px);
    font-size: min(1.8301610542vw, 25px);
  }
}
@media screen and (max-width: 767px) {
  .c-roundedButton_en {
    margin-top: min(-0.2666666667vw, -2px);
    margin-right: min(2.6666666667vw, 20px);
    font-size: min(5.3333333333vw, 40px);
  }
}

/**
 *  Company Links
    Newgrad Links
    Career Links
 */
@media screen and (min-width: 768px) {
  .c-links {
    margin: min(1.756954612vw, 24px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-links {
    margin: min(3.2vw, 24px) min(5.3333333333vw, 40px);
  }
}

.c-companyLinks {
  background: #1A1A1A;
}

.c-graduateLinks {
  background: #D70C19;
}

.c-careerLinks {
  background: #404040;
}

.c-links_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-links_inner {
    width: min(71.7423133236vw, 980px);
    padding-top: min(4.6852122987vw, 64px);
    padding-bottom: min(4.6852122987vw, 64px);
  }
}
@media screen and (max-width: 767px) {
  .c-links_inner {
    width: min(78.6666666667vw, 590px);
    padding-top: min(8.5333333333vw, 64px);
    padding-bottom: min(8.5333333333vw, 64px);
  }
}

.c-links_title {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-links_title {
    display: flex;
    align-items: center;
    gap: min(1.756954612vw, 24px);
    margin-bottom: min(2.3426061493vw, 32px);
    font-size: min(3.8067349927vw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .c-links_title {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(9.8666666667vw, 74px);
  }
}
.c-links_title span {
  line-height: 1.8;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .c-links_title span {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-links_title span {
    display: block;
    margin-top: min(1.0666666667vw, 8px);
    font-size: min(3.2vw, 24px);
  }
}

.c-links_list {
  display: grid;
}
@media screen and (min-width: 768px) {
  .c-links_list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-links_list {
    gap: min(2.1333333333vw, 16px);
  }
}

.c-links_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-links_link {
    padding-bottom: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .c-links_link {
    padding-bottom: min(2vw, 15px);
  }
}
@media (any-hover: hover) {
  .c-links_link:hover {
    opacity: 0.6;
  }
}
.c-links_link.is-current {
  pointer-events: none;
}
.c-links_link.is-current .c-links_linkText {
  color: rgba(255, 255, 255, 0.3);
}
.c-links_link.is-current .c-links_linkIcon {
  opacity: 0.3;
}

.c-links_linkText {
  color: #FFF;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-links_linkText {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-links_linkText {
    font-size: min(3.2vw, 24px);
  }
}

.c-companyLinks_linkIcon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-companyLinks_linkIcon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-companyLinks_linkIcon {
    width: min(4.2666666667vw, 32px);
  }
}
.c-companyLinks_linkIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #1A1A1A;
  border-right-color: #1A1A1A;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-companyLinks_linkIcon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-companyLinks_linkIcon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

.c-graduateLinks_linkIcon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-graduateLinks_linkIcon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-graduateLinks_linkIcon {
    width: min(4.2666666667vw, 32px);
  }
}
.c-graduateLinks_linkIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #D70C19;
  border-right-color: #D70C19;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-graduateLinks_linkIcon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-graduateLinks_linkIcon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

.c-careerLinks_linkIcon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-careerLinks_linkIcon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-careerLinks_linkIcon {
    width: min(4.2666666667vw, 32px);
  }
}
.c-careerLinks_linkIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #1A1A1A;
  border-right-color: #1A1A1A;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-careerLinks_linkIcon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-careerLinks_linkIcon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

/**
 * News
 */
.c-news {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-news {
    display: grid;
    grid-template-columns: 1fr min(44.729136164vw, 611px);
    row-gap: 24px;
    width: min(71.7423133236vw, 980px);
    margin: min(11.7130307467vw, 160px) auto;
  }
}
@media screen and (max-width: 767px) {
  .c-news {
    width: min(89.3333333333vw, 670px);
    margin: min(21.3333333333vw, 160px) auto;
  }
}

@media screen and (min-width: 768px) {
  .c-news_title {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .c-news_title {
    margin-bottom: min(10.6666666667vw, 80px);
  }
}

@media screen and (min-width: 768px) {
  .c-news_contents {
    grid-column: 2/3;
    grid-row: 1/2;
    width: min(44.729136164vw, 611px);
  }
}
@media screen and (min-width: 768px) {
  .c-news_viewMore {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .c-news_viewMore {
    margin-top: min(4.2666666667vw, 32px);
  }
}

.c-news_list_item {
  display: grid;
}
@media screen and (min-width: 768px) {
  .c-news_list_item {
    grid-template-columns: 86px 164px 1fr;
    grid-template-rows: 20px auto;
    gap: 8px 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-news_list_item {
    grid-template-columns: min(17.3333333333vw, 130px) min(32.5333333333vw, 244px) 1fr;
    grid-template-rows: min(3.4666666667vw, 26px) auto;
    gap: min(2.1333333333vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .c-news_list_item + .c-news_list_item {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-news_list_item + .c-news_list_item {
    margin-top: min(4.2666666667vw, 32px);
  }
}
.c-news_list_item .c-news_date {
  grid-column: 1/2;
  grid-row: 1/2;
}
.c-news_list_item .c-news_categories {
  grid-column: 2/3;
  grid-row: 1/2;
}
.c-news_list_item .c-news_text {
  grid-column: 1/4;
  grid-row: 2/3;
}

.c-news_date {
  color: #AAAAAA;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-news_date {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-news_date {
    font-size: min(3.2vw, 24px);
  }
}

.c-news_categories {
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-news_categories {
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .c-news_categories {
    gap: min(0.5333333333vw, 4px);
  }
}

.c-news_category {
  display: grid;
  place-content: center;
  color: #FFF;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-news_category {
    width: 80px;
    height: 20px;
    border-radius: 4px;
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-news_category {
    width: min(16vw, 120px);
    height: min(3.4666666667vw, 26px);
    border-radius: min(1.0666666667vw, 8px);
    font-size: min(2.1333333333vw, 16px);
  }
}
.c-news_category.graduate {
  background: #D70C19;
}
.c-news_category.career {
  background: #404040;
}
.c-news_category.is-off {
  background: #FFF;
  border: 1px solid #D9D9D9;
  color: #D9D9D9;
}

.c-news_text {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-news_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-news_text {
    font-size: min(3.2vw, 24px);
  }
}
.c-news_text a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media (any-hover: hover) {
  .c-news_text a {
    transition: color 0.3s ease-in-out;
  }
  .c-news_text a:hover {
    color: #D70C19;
  }
}

/*
---
name: Card
category:
  - component
  - component/card
---

```html
<div class="c-card">
  <div class="c-card_image">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-card_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
<div class="c-card">
  <div class="c-card_image c-card_image-rev">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-card_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
```
*/
@media (any-hover: hover) {
  .c-card_link:hover .c-card_image > img {
    transform: scale(1.1);
  }
}

.c-card_image {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card_image {
    aspect-ratio: 346/230;
    margin-bottom: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .c-card_image {
    aspect-ratio: 320/212;
    margin-bottom: min(4vw, 30px);
  }
}
.c-card_image > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.c-card_link {
  display: block;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .c-card_link {
    margin-bottom: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-card_link {
    margin-bottom: min(2.6666666667vw, 20px);
  }
}

@media screen and (min-width: 768px) {
  .c-card_content {
    padding: 0 min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-card_content {
    padding: 0 min(1.3333333333vw, 10px);
  }
}

.c-card_title {
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-card_title {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-card_title {
    font-size: min(3.2vw, 16px);
  }
}

@media screen and (min-width: 768px) {
  .c-card_tags {
    padding: 0 min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-card_tags {
    padding: 0 min(1.3333333333vw, 10px);
  }
}

.c-cardList:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 1025px) {
  .c-cardList {
    display: flex;
    flex-wrap: wrap;
    max-width: 1147px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-cardList {
    display: flex;
    flex-wrap: wrap;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-cardList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .c-cardList:after {
    content: "";
    display: block;
    width: 47.7611940299%;
  }
}

@media screen and (min-width: 1025px) {
  .c-cardList_item {
    box-sizing: border-box;
    padding-right: 2.7272727273%;
    padding-bottom: 45px;
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-cardList_item {
    box-sizing: border-box;
    padding-right: 2.7272727273%;
    padding-bottom: 30px;
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .c-cardList_item {
    padding-bottom: 15px;
    width: 47.7611940299%;
  }
}

@media screen and (min-width: 768px) {
  .c-cardSlick {
    margin-left: min(-1.1713030747vw, -16px);
  }
}
@media screen and (max-width: 767px) {
  .c-cardSlick {
    margin-left: min(-1vw, -8px);
  }
}
@media screen and (max-width: 767px) {
  .c-cardSlick .slick-list {
    padding-right: min(3.3333333333vw, 25px);
  }
}
@media screen and (min-width: 768px) {
  .c-cardSlick .c-cardList_item {
    padding: 0 min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-cardSlick .c-cardList_item {
    padding: 0 min(2vw, 15px);
  }
}
.c-cardController {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-cardController {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: min(89.3118594436vw, 1220px);
    margin-left: min(-0.5856515373vw, -8px);
  }
}
@media screen and (max-width: 767px) {
  .c-cardController {
    width: min(13.6vw, 102px);
  }
}
.c-cardController .c-arrowRoundedButton {
  pointer-events: auto;
}

@media screen and (min-width: 1025px) {
  .page-top .c-card_content {
    padding: 18px 15px 10px 0;
  }
}
.page-top .c-card_tags {
  padding-left: 0;
}
/**
 * Career staff
 */
.c-careerStaff {
  border-top-color: #D70C19;
  border-bottom-color: #D70C19;
  border-top-style: solid;
  border-bottom-style: solid;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .c-careerStaff {
    padding-top: min(6.4421669107vw, 88px);
    padding-bottom: min(6.4421669107vw, 88px);
    border-top-width: min(1.4641288433vw, 20px);
    border-bottom-width: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .c-careerStaff {
    padding-top: min(16vw, 120px);
    padding-bottom: min(16vw, 120px);
    border-top-width: min(2.6666666667vw, 20px);
    border-bottom-width: min(2.6666666667vw, 20px);
  }
}

.c-careerStaff_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-careerStaff_inner {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .c-careerStaff_inner {
    width: min(89.3333333333vw, 670px);
  }
}

@media screen and (min-width: 768px) {
  .c-careerStaff .c-careerStaff_title {
    margin-bottom: min(2.3426061493vw, 32px);
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .c-careerStaff .c-careerStaff_title {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(8vw, 60px);
  }
}

.c-careerStaff_viewMore {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-careerStaff_viewMore {
    margin-top: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-careerStaff_viewMore {
    margin-top: min(5.3333333333vw, 40px);
  }
}

/*
---
name: Contact
category:
  - component
  - component/contact
---

```html
<div class="contact">
  <p class="contact_staff">株式会社国際協力銀行 採用担当</p>
  <div class="contact_number u-font-roboto">03-5218-3107</div>
  <p class="contact_time">受付時間 9時−17時（平日）</p>
  <p class="contact_note">OB・OG訪問を希望する職員の性別、年次、経歴、駐在・留学の<br class="u-tab">有無等を連絡先にお伝え下さい。</p>
  <a class="contact_telto" href="tel:0352183107">電話をかける</a>
</div>
```
*/
.c-contact {
  line-height: 1;
  text-align: center;
}
.ios .c-contact .c-contact_telto, .android .c-contact .c-contact_telto {
  display: flex;
}

.c-contact_staff {
  font-weight: 500;
  letter-spacing: 0.06rem;
}
@media screen and (min-width: 768px) {
  .c-contact_staff {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-contact_staff {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

.c-contact_number {
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-contact_number {
    font-size: 6.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-contact_number {
    font-size: 3.7rem;
    margin-bottom: 25px;
  }
}

.c-contact_time {
  font-weight: 500;
  letter-spacing: 0.12rem;
}
@media screen and (min-width: 768px) {
  .c-contact_time {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-contact_time {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 768px) {
  .c-contact_note {
    margin-right: 80px;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .c-contact_note {
    font-size: 1.2rem;
    line-height: 1.7083333333;
    margin-bottom: 50px;
    text-align: left;
  }
}

.c-contact_telto {
  border: 1px solid #E60000;
  color: #E60000;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 0.06rem;
  margin: 0 auto;
  height: 50px;
  width: 180px;
}

/*
---
name: Container
category:
  - component
  - component/container
fullWidth: true
---

```html
<div class="c-container" style="background-color: #ccc;">
  <p>Container</p>
</div>
```
*/
.c-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

/*
---
name: Expand box
category:
  - component
  - component/expander
---

```html
<div class="c-expander">
  <div class="c-expander_item is-opened js-toggleSlide">
    <div class="c-expander_header">
      <h3 class="c-expander_title">タグから探す</h3>
    </div>
    <div class="c-expander_body" style="display: block;">
      <div class="c-expander_description"><a href="#" class="c-tag">日本と世界に貢献</a><a href="#" class="c-tag">日本と世界に貢献</a><a href="#" class="c-tag">日本と世界に貢献</a><a href="#" class="c-tag">日本と世界に貢献</a><a href="#" class="c-tag">日本と世界に貢献</a><a href="#" class="c-tag">日本と世界に貢献</a></div>
    </div>
  </div>
</div>
```
*/
@media screen and (min-width: 768px) {
  .c-expander {
    margin-right: 80px;
    max-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  .c-expander {
    margin-right: 20px;
  }
}
.c-expander_item {
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .c-expander_item {
    margin-bottom: 30px;
    padding: 35px 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-expander_item {
    margin-bottom: 15px;
    padding: 20px 16px;
  }
}
.c-expander_item:last-child {
  margin-bottom: 0;
}
.c-expander_item.is-opened .c-expander_header:after {
  margin-top: 0;
  transform: rotate(-45deg);
}
.c-expander_header {
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-expander_header {
    padding: 0 80px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-expander_header {
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .c-expander_header:after {
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
    content: "";
    display: block;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    right: 30px;
    height: 13px;
    width: 13px;
    transform: rotate(135deg);
    transform-origin: center center;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .c-expander_header:after {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    content: "";
    display: block;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    right: 0;
    height: 9px;
    width: 9px;
    transform: rotate(135deg);
    transition: all 0.3s ease-in-out;
  }
}
.c-expander_header:hover {
  opacity: 0.6;
}
.ios .c-expander_header:hover, .android .c-expander_header:hover {
  opacity: 1;
}
.c-expander_title {
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-expander_title {
    font-size: 1.9rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .c-expander_title {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.c-expander_q {
  display: inline-block;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-expander_q {
    font-size: 2rem;
    margin-right: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-expander_q {
    font-size: 1.4rem;
    margin-right: 10px;
    padding-left: 3px;
  }
}
.c-expander_body {
  border-top: 1px solid #ddd;
  display: none;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-expander_body {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 35px;
    padding: 35px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-expander_body {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-top: 18px;
    padding: 23px 0 0 0;
  }
}
/*
---
name: Grid
category:
  - component
  - component/grid
---

- 12カラムをベースをしたグリッドシステム
- 実際に利用するときは`div.col`は不要

```html
 <style>.col { background-color: #ccc; border: solid 1px #999; }</style>
<div class="c-grid">
  <div class="c-grid_item c-grid_item-1"><div class="col">1</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">2</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">3</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">4</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">5</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">6</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">7</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">8</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">9</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">10</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">11</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">12</div></div>
</div>
<div class="c-grid">
  <div class="c-grid_item c-grid_item-4"><div class="col">1</div></div>
  <div class="c-grid_item c-grid_item-4"><div class="col">2</div></div>
  <div class="c-grid_item c-grid_item-4"><div class="col">3</div></div>
</div>
<div class="c-grid c-grid-gutter">
  <div class="c-grid_item c-grid_item-3"><div class="col">1</div></div>
  <div class="c-grid_item c-grid_item-3"><div class="col">2</div></div>
  <div class="c-grid_item c-grid_item-3"><div class="col">3</div></div>
  <div class="c-grid_item c-grid_item-3"><div class="col">4</div></div>
</div>
```
*/
.c-grid:after {
  content: "";
  display: block;
  clear: both;
}
.c-grid {
  display: block;
  width: 100%;
}
.c-grid > .c-grid_item {
  float: left;
  display: block;
  box-sizing: border-box;
}
.c-grid.c-grid-gutter {
  width: auto;
}
/*
---
name: Icon
category:
  - component
  - component/icon
---

```html
<span class="c-ico_arrow_bw"></span>
```
*/
.c-ico_arrow_bw {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #000;
}
@media screen and (min-width: 768px) {
  .c-ico_arrow_bw {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-ico_arrow_bw {
    width: min(4.2666666667vw, 32px);
  }
}
.c-ico_arrow_bw::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-ico_arrow_bw::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-ico_arrow_bw::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.c-ico_arrow_bw {
  rotate: 90deg;
}

/*
---
name: Image
category:
  - component
  - component/image
---

```html
<div class="c-image">
  <img src="http://placehold.jp/1366x768.jpg" alt="">
</div>
```
*/
.c-image > img {
  display: block;
  height: auto;
  width: 100%;
}

/*
---
name: Lead
category:
  - component
  - component/lead
---

```html
<div class="lead">
  <h3 class="lead_title">海図なき世界情勢における「羅針盤」として</h3>
  <p class="lead_description">JBICは2018年6月に第3期中期経営計画を策定し、10年程度先にありたい姿として中長期ビジョン「海図なき世界情勢の中で、日本企業の海外ビジネスを切り開く『羅針盤』でありたい。」を定めました。職員一人ひとりが、これから「羅針盤」として活躍・成長していくことが期待されています。</p>
</div>
```
*/
.c-lead {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-lead {
    margin-bottom: min(5.8565153734vw, 80px);
    padding: 0 min(5.8565153734vw, 80px) min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .c-lead {
    margin-bottom: min(10.6666666667vw, 80px);
    padding-bottom: min(10.6666666667vw, 80px);
  }
}
.c-lead::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #ECECEC;
}
@media screen and (min-width: 768px) {
  .c-lead::after {
    width: calc(100% + min(5.8565153734vw, 80px));
  }
}
@media screen and (max-width: 767px) {
  .c-lead::after {
    width: calc(100% + min(10.6666666667vw, 80px));
  }
}

.c-lead_title {
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-lead_title {
    line-height: 1.8;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-lead_title {
    font-size: 1.6rem;
    line-height: 1.6875;
    margin-bottom: 20px;
  }
}
.c-lead_title > span {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-lead_title > span {
    font-size: 1.5rem;
  }
}

.c-lead_title_sub {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-lead_title_sub {
    margin-top: 0.5em;
  }
}

.c-lead_description {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-lead_description {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-lead_description {
    font-size: 1.4rem;
  }
}

.c-lead_note {
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .c-lead_note {
    margin-top: 10px;
    font-size: 1.1em;
  }
}
@media screen and (max-width: 767px) {
  .c-lead_note {
    margin-top: 5px;
    font-size: 0.9em;
  }
}

/**
 * Magazine
 */
.c-magazine {
  border-top-color: #D70C19;
  border-bottom-color: #D70C19;
  border-top-style: solid;
  border-bottom-style: solid;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .c-magazine {
    padding-top: min(6.4421669107vw, 88px);
    padding-bottom: min(6.4421669107vw, 88px);
    border-top-width: min(1.4641288433vw, 20px);
    border-bottom-width: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .c-magazine {
    padding-top: min(16vw, 120px);
    padding-bottom: min(16vw, 120px);
    border-top-width: min(2.6666666667vw, 20px);
    border-bottom-width: min(2.6666666667vw, 20px);
  }
}

.c-magazine_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-magazine_inner {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .c-magazine_inner {
    width: min(89.3333333333vw, 670px);
  }
}

@media screen and (min-width: 768px) {
  .c-magazine_title {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-magazine_title {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}

.c-magazine_viewMore {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-magazine_viewMore {
    margin-top: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-magazine_viewMore {
    margin-top: min(5.3333333333vw, 40px);
  }
}

/*
---
name: Media
category:
  - component
  - component/media
---

```html
<div class="c-media">
  <div class="c-media_image">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-media_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
<div class="c-media">
  <div class="c-media_image c-media_image-rev">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-media_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
```
*/
.c-media {
  box-sizing: border-box;
  font-size: 1.5rem;
}
.c-container_inner .c-media:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-media {
    display: flex;
    margin-right: 80px;
  }
}
.c-media-border {
  border: 1px solid #ddd;
}
@media screen and (min-width: 1025px) {
  .c-media-border {
    padding: 45px 40px 40px 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-media-border {
    padding: 45px 30px 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-media-border {
    padding: 30px 20px;
  }
}
.c-media-border-black {
  border: 1px solid #8C8F90;
}
@media screen and (min-width: 1025px) {
  .c-media-border-black {
    padding: 45px 40px 40px 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-media-border-black {
    padding: 45px 30px 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-media-border-black {
    padding: 30px 20px;
  }
}
.c-media-border-red {
  border: 1px solid #d70c19;
}
.c-media-borderUpper {
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-media-borderUpper {
    padding: 40px 40px 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-media-borderUpper {
    padding: 30px 10px;
  }
}
.c-media-borderUpper:last-child {
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  .c-media_header {
    flex-shrink: 0;
    width: min(29.2825768668vw, 400px);
    margin-right: min(3.6603221083vw, 50px);
  }
}

.c-media_title {
  box-sizing: border-box;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-media_title {
    font-size: clamp(15px, 1.6105417277vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  .c-media_title {
    margin-bottom: min(6.6666666667vw, 50px);
    font-size: min(4.2666666667vw, 32px);
  }
}
.c-media_title-leftLine {
  border-left: 2px solid #d70c19;
}
@media screen and (min-width: 768px) {
  .c-media_title-leftLine {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-media_title-leftLine {
    padding-left: 10px;
  }
}
.c-media_title-red {
  color: #d70c19;
}

.c-media_summary {
  color: #111111;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-media_summary {
    font-size: 15px;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .c-media_summary {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.c-media_body {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-media_body {
    flex-grow: 1;
  }
}
.c-media_description {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-media_description {
    font-size: clamp(12px, 1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .c-media_description {
    font-size: min(3.7333333333vw, 28px);
  }
}

.c-media_image {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-media_image {
    margin-top: min(4.39238653vw, 60px);
  }
}
@media screen and (max-width: 767px) {
  .c-media_image {
    margin-top: min(8vw, 60px);
  }
}
.c-media_image > img {
  height: auto;
  width: 100%;
}

.c-media_body {
  overflow: hidden;
}

/*
---
name: Modal
category:
  - component
  - component/modal
---

```html
<div class="c-modal">
    <div class="c-modal_bg"></div>
    <div class="c-modal_inner"></div>
  </div>
```
*/
.c-modal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-modal.is-show {
  transform: scale(1);
  opacity: 1;
  pointer-events: visible;
}

.c-modal_bg {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.c-modal_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.c-modal_inner video {
  width: min(100%, 960px);
  aspect-ratio: 16/9;
}

.c-modal_close {
  cursor: pointer;
  position: absolute;
  height: 19px;
  width: 32px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-modal_close {
    top: 40px;
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-modal_close {
    top: 20px;
    right: 25px;
  }
}

.c-modal_closeBar {
  background-color: #D70C19;
  position: absolute;
  width: 24px;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .c-modal_closeBar {
    width: 17px;
    height: 2px;
  }
}
.c-modal_closeBar-1 {
  transform: rotate(45deg);
  top: 9px;
}
.c-modal_closeBar-2 {
  transform: rotate(-45deg);
  top: 9px;
}

.page-top .c-modal_bg,
.page-movie .c-modal_bg,
.page-officetour .c-modal_bg,
.page-articleDetail .c-modal_bg {
  background: #fff;
}
.page-top .c-modal_inner,
.page-movie .c-modal_inner,
.page-officetour .c-modal_inner,
.page-articleDetail .c-modal_inner {
  flex-flow: column nowrap;
}
@media screen and (max-width: 1024px) {
  .page-top .c-modal_inner,
  .page-movie .c-modal_inner,
  .page-officetour .c-modal_inner,
  .page-articleDetail .c-modal_inner {
    overflow: scroll;
  }
}
@media screen and (max-width: 767px) {
  .page-top .c-modal_close,
  .page-movie .c-modal_close,
  .page-officetour .c-modal_close,
  .page-articleDetail .c-modal_close {
    top: 20px;
    right: 0;
  }
}
.page-top .c-modal_closeBar,
.page-movie .c-modal_closeBar,
.page-officetour .c-modal_closeBar,
.page-articleDetail .c-modal_closeBar {
  background: #d70c19;
  width: 24px;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .page-top .c-modal_closeBar,
  .page-movie .c-modal_closeBar,
  .page-officetour .c-modal_closeBar,
  .page-articleDetail .c-modal_closeBar {
    width: 17px;
    height: 2px;
  }
}
.page-top .chapterList,
.page-movie .chapterList,
.page-officetour .chapterList,
.page-articleDetail .chapterList {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .page-top .chapterList,
  .page-movie .chapterList,
  .page-officetour .chapterList,
  .page-articleDetail .chapterList {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
  }
}
@media screen and (max-width: 1024px) {
  .page-top .chapterList,
  .page-movie .chapterList,
  .page-officetour .chapterList,
  .page-articleDetail .chapterList {
    padding: 0 20px;
  }
}
.page-top .chapterList_item,
.page-movie .chapterList_item,
.page-officetour .chapterList_item,
.page-articleDetail .chapterList_item {
  color: #111111;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .page-top .chapterList_item,
  .page-movie .chapterList_item,
  .page-officetour .chapterList_item,
  .page-articleDetail .chapterList_item {
    line-height: 15px;
    padding: 0 8px 0 0;
    margin: 0 0 0 8px;
    border-right: 1px solid #DDDDDD;
  }
}
@media screen and (max-width: 1024px) {
  .page-top .chapterList_item,
  .page-movie .chapterList_item,
  .page-officetour .chapterList_item,
  .page-articleDetail .chapterList_item {
    padding: 16px 5px 13px 5px;
    border-bottom: 1px solid #DDDDDD;
  }
}
.page-top .chapterList_anchor,
.page-movie .chapterList_anchor,
.page-officetour .chapterList_anchor,
.page-articleDetail .chapterList_anchor {
  color: #d70c19;
  cursor: pointer;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .page-top .chapterList.chapterList-closely-covered,
  .page-top .chapterList-lunchtalk,
  .page-movie .chapterList.chapterList-closely-covered,
  .page-movie .chapterList-lunchtalk,
  .page-officetour .chapterList.chapterList-closely-covered,
  .page-officetour .chapterList-lunchtalk,
  .page-articleDetail .chapterList.chapterList-closely-covered,
  .page-articleDetail .chapterList-lunchtalk {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px 0;
    height: 89px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .chapterList.chapterList-closely-covered,
  .page-top .chapterList-lunchtalk,
  .page-movie .chapterList.chapterList-closely-covered,
  .page-movie .chapterList-lunchtalk,
  .page-officetour .chapterList.chapterList-closely-covered,
  .page-officetour .chapterList-lunchtalk,
  .page-articleDetail .chapterList.chapterList-closely-covered,
  .page-articleDetail .chapterList-lunchtalk {
    height: 40vh;
    overflow-y: scroll;
  }
}
.page-top .chapterList.chapterList-closely-covered .chapterList_item,
.page-top .chapterList-lunchtalk .chapterList_item,
.page-movie .chapterList.chapterList-closely-covered .chapterList_item,
.page-movie .chapterList-lunchtalk .chapterList_item,
.page-officetour .chapterList.chapterList-closely-covered .chapterList_item,
.page-officetour .chapterList-lunchtalk .chapterList_item,
.page-articleDetail .chapterList.chapterList-closely-covered .chapterList_item,
.page-articleDetail .chapterList-lunchtalk .chapterList_item {
  border: none;
}
@media screen and (max-width: 1024px) {
  .page-top .chapterList.chapterList-closely-covered .chapterList_item,
  .page-top .chapterList-lunchtalk .chapterList_item,
  .page-movie .chapterList.chapterList-closely-covered .chapterList_item,
  .page-movie .chapterList-lunchtalk .chapterList_item,
  .page-officetour .chapterList.chapterList-closely-covered .chapterList_item,
  .page-officetour .chapterList-lunchtalk .chapterList_item,
  .page-articleDetail .chapterList.chapterList-closely-covered .chapterList_item,
  .page-articleDetail .chapterList-lunchtalk .chapterList_item {
    padding: 3px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .page-top .chapterList.chapterList-closely-covered .chapterList_item:last-of-type,
  .page-top .chapterList-lunchtalk .chapterList_item:last-of-type,
  .page-movie .chapterList.chapterList-closely-covered .chapterList_item:last-of-type,
  .page-movie .chapterList-lunchtalk .chapterList_item:last-of-type,
  .page-officetour .chapterList.chapterList-closely-covered .chapterList_item:last-of-type,
  .page-officetour .chapterList-lunchtalk .chapterList_item:last-of-type,
  .page-articleDetail .chapterList.chapterList-closely-covered .chapterList_item:last-of-type,
  .page-articleDetail .chapterList-lunchtalk .chapterList_item:last-of-type {
    padding-bottom: 20px;
  }
}

.page-history .c-modal_bg {
  background-color: rgba(0, 0, 0, 0.7);
}

/**
 * Movie
 */
.c-movie {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-movie {
    width: min(71.7423133236vw, 980px);
    padding: min(11.7130307467vw, 160px) 0;
  }
}
@media screen and (max-width: 767px) {
  .c-movie {
    width: min(89.3333333333vw, 670px);
    padding: min(21.3333333333vw, 160px) 0;
  }
}

@media screen and (min-width: 768px) {
  .c-movie_title {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-movie_title {
    margin-bottom: min(4.2666666667vw, 32px);
  }
}

.c-movie_list {
  display: grid;
}
@media screen and (min-width: 768px) {
  .c-movie_list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-movie_list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.2vw, 24px);
  }
}
.c-movie_list .c-article_card {
  opacity: 1;
}

@media (any-hover: hover) {
  .c-movie_list_item {
    cursor: pointer;
  }
  .c-movie_list_item .c-movie_thumb img {
    transition: scale 0.3s ease-in-out;
  }
  .c-movie_list_item .c-ico_movie_play {
    transition: background 0.3s ease-in-out;
  }
  .c-movie_list_item .c-ico_movie_play::after {
    transition: background 0.3s ease-in-out;
  }
  .c-movie_list_item .c-movie_head {
    transition: color 0.3s ease-in-out;
  }
  .c-movie_list_item:hover .c-movie_thumb img {
    scale: 1.05;
  }
  .c-movie_list_item:hover .c-ico_movie_play {
    background: #000;
  }
  .c-movie_list_item:hover .c-ico_movie_play::after {
    background: #FFF;
  }
  .c-movie_list_item:hover .c-movie_head {
    color: #D70C19;
  }
}

.c-movie_thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-movie_thumb {
    margin-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-movie_thumb {
    margin-bottom: min(3.2vw, 24px);
  }
}
.c-movie_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-ico_movie_play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-ico_movie_play {
    width: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-ico_movie_play {
    width: min(5.3333333333vw, 40px);
  }
}
.c-ico_movie_play::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  aspect-ratio: 12/14;
  background: #000;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-ico_movie_play::after {
    width: min(0.878477306vw, 12px);
    margin-left: min(0.1464128843vw, 2px);
  }
}
@media screen and (max-width: 767px) {
  .c-ico_movie_play::after {
    width: min(1.6vw, 12px);
    margin-left: min(0.2666666667vw, 2px);
  }
}

.c-movie_head {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-movie_head {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-movie_head {
    font-size: min(3.2vw, 24px);
  }
}

/*
---
name: Mv
category:
  - component
  - component/mv
---

```html
<div class="c-mv">
  <img class="c-mv_image" src="http://placehold.jp/1366x768.jpg" alt="">
</div>
```
*/
.c-mv {
  position: relative;
}
.c-mv-cover {
  width: 100%;
}
.c-mv_image {
  display: block;
  height: auto;
  width: 100%;
}

.c-mv_text {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  height: 100%;
  width: 100%;
}

.c-mv_title {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-mv_title {
    font-size: 5.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-mv_title {
    font-size: 3rem;
    margin-bottom: 25px;
  }
}

.c-mv_description {
  letter-spacing: 0.06em;
  line-height: 1.7222222222;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-mv_description {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mv_description {
    font-size: 1.4rem;
    text-align: left;
    width: 85%;
  }
}

.c-mv_link {
  color: #fff;
  display: block;
  letter-spacing: 0.06em;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-mv_link {
    font-size: 2.2rem;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-mv_link {
    font-size: 1.6rem;
    margin: 40px auto 0;
    text-align: center;
  }
}
.c-mv_link:hover {
  opacity: 0.7;
}

/**
 * 記事詳細mv
 */
.c-mv-article {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-mv-article {
    aspect-ratio: 1366/722;
    padding-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article {
    aspect-ratio: 750/1080;
  }
}

.c-mv-article_image {
  width: 100%;
  height: 100%;
}
.c-mv-article_image .c-mv_image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-mv-article_textWrapper {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .c-mv-article_textWrapper {
    max-height: calc(100vh - 180px);
  }
}
@media screen and (min-width: 768px) {
  .c-mv-article_textWrapper {
    top: 0;
    left: min(2.9282576867vw, 40px);
    width: min(30.0146412884vw, 410px);
    height: 48.4626647145vw;
    border-radius: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_textWrapper {
    bottom: min(2.6666666667vw, 20px);
    left: min(2.6666666667vw, 20px);
    width: min(72vw, 360px);
    height: min(69.3333333333vw, 520px);
    border-radius: min(6.6666666667vw, 40px);
  }
}

.c-mv-article_textWrapper_title {
  display: flex;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  background: linear-gradient(135deg, rgba(215, 12, 25, 0.8) 0%, rgba(215, 12, 25, 0.8) 50%, rgba(255, 255, 255, 0.8));
}
@media screen and (min-width: 768px) {
  .c-mv-article_textWrapper_title {
    padding-right: min(2.9282576867vw, 40px);
    padding-left: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_textWrapper_title {
    padding-right: min(5.3333333333vw, 40px);
    padding-left: min(5.3333333333vw, 40px);
  }
}

.c-mv-article_title {
  color: #FFF;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-mv-article_title {
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_title {
    margin-bottom: min(2.6666666667vw, 20px);
    font-size: min(4.5333333333vw, 26px);
  }
}

.c-mv-article_date {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .c-mv-article_date {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_date {
    font-size: min(3.2vw, 16px);
  }
}
.c-mv-article_date em {
  font-weight: 700;
}

.c-mv-article_textWrapper_subtitle {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .c-mv-article_textWrapper_subtitle {
    min-height: min(8.8579795022vw, 121px);
    padding: min(1.9033674963vw, 26px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_textWrapper_subtitle {
    min-height: min(21.2vw, 159px);
    padding: min(4vw, 30px) min(5.3333333333vw, 40px);
  }
}

.c-mv-article_subtitle {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-mv-article_subtitle {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_subtitle {
    font-size: min(3.0666666667vw, 16px);
  }
}
.c-mv-article_subtitle span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-mv-article_subtitle span {
    margin-top: min(0.7320644217vw, 10px);
    font-size: min(0.878477306vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .c-mv-article_subtitle span {
    margin-top: min(2.6666666667vw, 20px);
    font-size: min(2.4vw, 18px);
  }
}

/*
---
name: next Interview
category:
  - component
  - component/nextInterview
---

```html

```
*/
.c-nextInterview {
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .c-nextInterview {
    padding-top: min(7.3206442167vw, 100px);
    padding-bottom: min(7.3206442167vw, 100px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview {
    padding-top: min(21.3333333333vw, 160px);
    padding-bottom: min(21.3333333333vw, 160px);
  }
}

.c-nextInterview_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_inner {
    width: min(70.2781844802vw, 960px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_inner {
    width: min(89.3333333333vw, 670px);
  }
}

.c-nextInterview_title {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_title {
    margin-bottom: min(4.39238653vw, 60px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_title {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.c-nextInterview_title .c-nextInterview_title_en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_title .c-nextInterview_title_en {
    font-size: min(3.953147877vw, 54px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_title .c-nextInterview_title_en {
    font-size: min(9.8666666667vw, 74px);
  }
}
.c-nextInterview_title .c-nextInterview_title_ja {
  display: block;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_title .c-nextInterview_title_ja {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_title .c-nextInterview_title_ja {
    font-size: min(3.4666666667vw, 26px);
  }
}

.c-nextInterview .c-article_card_wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-nextInterview .c-article_card_wrap {
    margin-bottom: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview .c-article_card_wrap {
    margin-bottom: min(13.3333333333vw, 100px);
  }
}

.c-nextInterview_banner {
  width: 100%;
  background: #000;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_banner {
    margin-bottom: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_banner {
    margin-bottom: min(13.3333333333vw, 100px);
  }
}

.c-nextInterview_banner_link {
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-nextInterview_banner_link:hover {
    opacity: 0.8;
  }
}

.c-nextInterview_links {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_links {
    width: min(57.1010248902vw, 780px);
    gap: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_links {
    width: min(78.6666666667vw, 590px);
    gap: min(1.3333333333vw, 10px);
  }
}

.c-nextInterview_links_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_links_item {
    height: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_links_item {
    height: min(16vw, 120px);
  }
}
.c-nextInterview_links_item .p-roundedRectangle_btn_text_ja {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-nextInterview_links_item .p-roundedRectangle_btn_text_ja {
    margin-top: 0;
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .c-nextInterview_links_item .p-roundedRectangle_btn_text_ja {
    font-size: min(4vw, 30px);
  }
}

/**
 * Recruit
 */
.c-recruit {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-recruit {
    margin-top: min(11.7130307467vw, 160px);
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit {
    margin-top: min(21.3333333333vw, 160px);
    margin-bottom: min(21.3333333333vw, 160px);
  }
}

@media screen and (min-width: 768px) {
  .c-recruit_inner {
    width: min(71.7423133236vw, 980px);
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .c-recruit_title {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_title {
    margin: 0 min(5.3333333333vw, 40px) min(4.2666666667vw, 32px);
  }
}

@media screen and (min-width: 768px) {
  .c-recruit_area {
    position: relative;
    display: flex;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .c-recruit_area + .c-recruit_area {
    margin-top: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_area + .c-recruit_area {
    margin-top: min(10.6666666667vw, 80px);
  }
}
@media screen and (min-width: 768px) {
  .c-recruit_area:has(.c-recruit_messages) .c-recruit_links {
    padding-top: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_area:has(.c-recruit_messages) .c-recruit_lead {
    padding: min(6.4vw, 48px) min(4.2666666667vw, 32px);
  }
}

.c-recruit_lead {
  border-top-style: solid;
  border-left-style: solid;
}
@media screen and (min-width: 768px) {
  .c-recruit_lead {
    position: relative;
    flex-shrink: 0;
    width: min(22.3279648609vw, 305px);
    padding: min(3.2210834553vw, 44px) min(2.0497803807vw, 28px);
    border-top-width: 4px;
    border-left-width: 4px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_lead {
    border-top-width: min(1.0666666667vw, 8px);
    border-left-width: min(1.0666666667vw, 8px);
  }
}
.c-recruit_graduate .c-recruit_lead {
  border-top-color: #D70C19;
  border-left-color: #D70C19;
}
.c-recruit_career .c-recruit_lead {
  border-top-color: #404040;
  border-left-color: #404040;
}

.c-recruit_head {
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-recruit_head {
    margin-bottom: min(1.1713030747vw, 16px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_head {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(4.8vw, 36px);
  }
}
.c-recruit_graduate .c-recruit_head {
  color: #D70C19;
}
.c-recruit_career .c-recruit_head {
  color: #404040;
}

@media screen and (min-width: 768px) {
  .c-recruit_links {
    flex-grow: 1;
    padding: min(4.6852122987vw, 64px) 0 min(4.6852122987vw, 64px) min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_links {
    padding: min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) min(8.5333333333vw, 64px);
  }
}
.c-recruit_graduate .c-recruit_links {
  background: #D70C19;
}
.c-recruit_career .c-recruit_links {
  background: #404040;
}

.c-recruit_messages {
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-recruit_messages {
    gap: min(2.3426061493vw, 32px);
    width: min(46.9985358712vw, 642px);
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_messages {
    gap: min(3.2vw, 24px);
    margin-bottom: min(2.1333333333vw, 16px);
  }
}

@media screen and (min-width: 768px) {
  .c-recruit_messages_item {
    width: min(22.3279648609vw, 305px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_messages_item {
    width: min(43.0666666667vw, 323px);
  }
}

.c-recruit_message_link {
  display: block;
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .c-recruit_message_link {
    padding-bottom: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_message_link {
    padding-bottom: min(4.2666666667vw, 32px);
  }
}
@media (any-hover: hover) {
  .c-recruit_message_link .c-recruit_message_img img {
    transition: scale 0.3s ease-in-out;
  }
  .c-recruit_message_link .c-recruit_message_text {
    transition: opacity 0.3s ease-in-out;
  }
  .c-recruit_message_link:hover .c-recruit_message_img img {
    scale: 1.05;
  }
  .c-recruit_message_link:hover .c-recruit_message_text {
    opacity: 0.6;
  }
}

.c-recruit_message_img {
  width: 100%;
  aspect-ratio: 305/206;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-recruit_message_img {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_message_img {
    margin-bottom: min(3.2vw, 24px);
  }
}

.c-recruit_message_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-recruit_message_text {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_message_text {
    font-size: min(3.4666666667vw, 26px);
    line-height: 1.4;
  }
}

.c-recruit_list {
  display: grid;
}
@media screen and (min-width: 768px) {
  .c-recruit_list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.3426061493vw, 32px);
    width: min(46.9985358712vw, 642px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_list {
    gap: min(2.1333333333vw, 16px);
  }
}

.c-recruit_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  font-weight: 700;
  line-height: 1.8;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-recruit_link {
    padding-bottom: min(1.0980966325vw, 15px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_link {
    padding-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}
@media (any-hover: hover) {
  .c-recruit_link:hover {
    opacity: 0.6;
  }
}

.c-recruit_graduate .c-recruit_link_arrow {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-recruit_graduate .c-recruit_link_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_graduate .c-recruit_link_arrow {
    width: min(4.2666666667vw, 32px);
  }
}
.c-recruit_graduate .c-recruit_link_arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #D70C19;
  border-right-color: #D70C19;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-recruit_graduate .c-recruit_link_arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_graduate .c-recruit_link_arrow::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.c-recruit_career .c-recruit_link_arrow {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-recruit_career .c-recruit_link_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_career .c-recruit_link_arrow {
    width: min(4.2666666667vw, 32px);
  }
}
.c-recruit_career .c-recruit_link_arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #404040;
  border-right-color: #404040;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-recruit_career .c-recruit_link_arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_career .c-recruit_link_arrow::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

@media screen and (min-width: 768px) {
  .c-recruit_entries {
    position: absolute;
    bottom: 0;
    left: 4px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_entries {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: min(5.3333333333vw, 40px);
    padding-bottom: min(3.2vw, 24px);
    border-left-width: min(1.0666666667vw, 8px);
    border-left-style: solid;
  }
  .c-recruit_graduate .c-recruit_entries {
    border-left-color: #D70C19;
  }
  .c-recruit_career .c-recruit_entries {
    border-left-color: #404040;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_entries .p-entryBtn {
    margin-left: min(-0.5333333333vw, -4px);
  }
}
@media screen and (min-width: 768px) {
  .c-recruit_entries .p-entryBtn.graduate {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit_entries .p-entryBtn.graduate {
    margin-top: min(2.1333333333vw, 16px);
  }
}

/*
---
name: Banner
category:
  - component
  - component/banner
---

```html
<a href="#" class="c-related-banner">職員が語る“JBIC REAL DAYS”</a>
```
*/
.c-related-banner {
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(81deg, #b1b1b1 6%, #c46c72 92%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-related-banner {
    box-sizing: border-box;
    font-size: 1.9rem;
    max-width: 940px;
    width: 68.8140556369vw;
    height: 108px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner {
    font-size: 1rem;
    height: 72px;
    margin-bottom: 15px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-related-banner .u-font-bioSans {
    font-size: 2.5rem;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner .u-font-bioSans {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin-right: 7px;
  }
}
.c-related-banner:last-child {
  margin-bottom: 0;
}
.c-related-banner:before {
  background-color: #111;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-related-banner:before {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner:before {
    width: 40px;
  }
}
.c-related-banner:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-related-banner:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 13px;
    width: 13px;
    top: 50%;
    right: 25px;
    margin-top: -8px;
    transform: translateX(0) rotate(45deg);
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    height: 10px;
    width: 10px;
    top: 50%;
    right: 18px;
    margin-top: -6px;
    transform: translateX(0) rotate(45deg);
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .c-related-banner:hover:after {
    transform: translateX(3px) rotate(45deg);
  }
}
@media screen and (min-width: 768px) {
  .c-related-banner .lang-ja {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner .lang-ja {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
}
.c-related-banner .lang-ja-small {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-related-banner .lang-ja-small {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner .lang-ja-small {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-related-banner .info {
    font-size: 2rem;
    letter-spacing: 0.2em;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner .info {
    font-size: 1ßrem;
    letter-spacing: 0.03em;
  }
}
.c-related-banner .ico-tel {
  background: url("../images/common/ico-tel-white.png") no-repeat 0 0;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-related-banner .ico-tel {
    margin-right: 30px;
    height: 40px;
    width: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-related-banner .ico-tel {
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .c-related-banner .ico-tel {
    background-image: url("../images/common/sp/ico-tel-white.png");
    background-size: 24px;
    margin-right: 14px;
    height: 24px;
    width: 24px;
  }
}

/*
---
name: Related Posts
category:
  - component
  - component/relatedPosts
---

```html

```
*/
.c-relatedPosts {
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts {
    margin: min(1.756954612vw, 24px) min(2.9282576867vw, 40px);
    padding-top: min(4.6852122987vw, 64px);
    padding-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts {
    margin: min(3.2vw, 24px) min(5.3333333333vw, 40px);
    padding-top: min(8.5333333333vw, 64px);
    padding-bottom: min(8.5333333333vw, 64px);
  }
}

.c-relatedPosts_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts_inner {
    width: min(83.1625183016vw, 1136px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts_inner {
    width: min(78.6666666667vw, 590px);
  }
}

.c-relatedPosts_title {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts_title {
    display: flex;
    align-items: center;
    gap: min(1.756954612vw, 24px);
    width: min(70.2781844802vw, 960px);
    margin: 0 auto min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts_title {
    margin-bottom: min(4.2666666667vw, 32px);
  }
}
.c-relatedPosts_title .c-relatedPosts_title_en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts_title .c-relatedPosts_title_en {
    font-size: min(3.8067349927vw, 52px);
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts_title .c-relatedPosts_title_en {
    font-size: min(9.8666666667vw, 74px);
  }
}
.c-relatedPosts_title .c-relatedPosts_title_ja {
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts_title .c-relatedPosts_title_ja {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.45;
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts_title .c-relatedPosts_title_ja {
    font-size: min(3.2vw, 24px);
    line-height: 1.8;
  }
}

.c-relatedPosts .c-article_card_wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts .c-article_card_wrap {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-article_card_wrap {
    margin-bottom: min(8.5333333333vw, 64px);
    gap: min(3.2vw, 24px);
  }
}

.c-relatedPosts .c-relatedPosts_viewMore {
  margin: 0 auto;
}
.c-relatedPosts .c-relatedPosts_viewMore:hover .c-viewMore_text {
  border-bottom-color: #FFF;
  color: #FFF;
}
.c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_text {
  border-bottom: 1px solid #FFF;
  color: #FFF;
}
.c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #D70C19;
  border-right-color: #D70C19;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-relatedPosts .c-relatedPosts_viewMore .c-viewMore_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

/*
---
name: Tag
category:
  - component
  - component/tag
---

```html
<a href="#" class="c-tag">タグ</a>
```
*/
.c-tags {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .c-tags {
    gap: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .c-tags {
    gap: min(1.0666666667vw, 8px);
  }
}

.c-tag_link,
.c-tag_label {
  display: grid;
  place-content: center;
  border: 1px solid #D9D9D9;
  background: #F5F5F5;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-tag_link,
  .c-tag_label {
    height: min(1.4641288433vw, 20px);
    padding: 0 min(0.3660322108vw, 5px);
    border-radius: 4px;
    font-size: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .c-tag_link,
  .c-tag_label {
    height: min(3.2vw, 24px);
    padding: 0 min(0.9333333333vw, 7px);
    border-radius: min(0.5333333333vw, 4px);
    font-size: min(2.1333333333vw, 16px);
  }
}

.c-tag_link {
  transition: background 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-tag_link:hover {
    background: #D9D9D9;
  }
}

.c-tag_link_large,
.c-tag_label_large {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-tag_link_large,
  .c-tag_label_large {
    height: min(2.196193265vw, 30px);
    padding: 0 min(0.5124450952vw, 7px);
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .c-tag_link_large,
  .c-tag_label_large {
    height: min(5.3333333333vw, 40px);
    padding: 0 min(1.4666666667vw, 11px);
    font-size: min(2.6666666667vw, 20px);
  }
}

/*
---
name: Tel
category:
  - component
  - component/tel
---

```html
<div class="c-tel"><a href="<%- FILE_PATH %>info_ob/" class="c-tel_btn"><span class="ico-tel"></span>OB・OG訪問のお問い合わせ</a></div>
```
*/
@media screen and (max-width: 767px) {
  .c-tel {
    background-color: #fff;
    padding: 70px 0;
  }
}
.c-tel_btn {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #E60000;
  box-sizing: border-box;
  color: #E60000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-tel_btn {
    font-size: clamp(18px, 1.6105417277vw, 22px);
    letter-spacing: 0.2em;
    margin: 0 auto;
    width: min(72.7672035139vw, 994px);
    aspect-ratio: 994/108;
    padding-right: 59px;
  }
}
@media screen and (max-width: 767px) {
  .c-tel_btn {
    font-size: 1.35rem;
    letter-spacing: 0.07em;
    margin: 0 auto;
    padding-right: 40px;
    height: 72px;
    width: 100%;
  }
}
.c-tel_btn:before {
  background-color: #D70C19;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-tel_btn:before {
    height: 100%;
    width: 59px;
  }
}
@media screen and (max-width: 767px) {
  .c-tel_btn:before {
    height: 100%;
    width: 40px;
  }
}
.c-tel_btn:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateX(0) rotate(45deg);
  transition: all 0.3s ease-in-out;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .c-tel_btn:after {
    margin-top: -8px;
    right: 25px;
    height: 15px;
    width: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-tel_btn:after {
    margin-top: -6px;
    right: 16px;
    height: 10px;
    width: 10px;
  }
}
.c-tel_btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.c-tel_btn:hover:before {
  background-color: #E60000;
}
.c-tel_btn:hover:after {
  transform: translateX(3px) rotate(45deg);
}
.c-tel .ico-tel {
  background: url("../images/common/ico-tel.png") no-repeat 0 0;
  background-size: contain;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-tel .ico-tel {
    margin-right: 60px;
    height: 40px;
    width: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-tel .ico-tel {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-tel .ico-tel {
    margin-right: 18px;
    height: 24px;
    width: 24px;
  }
}

/*
---
name: Title
category:
  - component
  - component/title
---

```html
<h2 class="title">TOPICS</h2>
```
*/
.c-title {
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: min(3.8067349927vw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: min(9.8666666667vw, 74px);
  }
}

.c-title_ja {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-title_ja {
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .c-title_ja {
    font-size: min(8vw, 60px);
  }
}

/*
---
name: Title
category:
  - component
  - component/viewMore
---

```html
<a href="" class="c-viewMore c-news_viewMore">
  <span class="c-viewMore_text">view more</span>
  <span class="c-viewMore_icon"></span>
</a>
```
*/
.c-viewMore {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-viewMore {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-viewMore {
    gap: min(2.1333333333vw, 16px);
  }
}
@media (any-hover: hover) {
  .c-viewMore .c-viewMore_text {
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
  }
  .c-viewMore .c-viewMore_icon {
    transition: translate 0.3s ease-in-out;
  }
  .c-viewMore:hover .c-viewMore_text {
    border-bottom-color: #D70C19;
    color: #D70C19;
  }
  .c-viewMore:hover .c-viewMore_icon {
    translate: 4px 0;
  }
}

.c-viewMore_text {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-viewMore_text {
    height: 24px;
    padding: 0 2px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-viewMore_text {
    height: min(5.3333333333vw, 40px);
    padding: 0 min(0.2666666667vw, 2px);
    font-size: min(3.2vw, 24px);
  }
}

.c-viewMore_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .c-viewMore_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-viewMore_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.c-viewMore_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-viewMore_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c-viewMore_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

/*
---
name: Vertical Media
category:
  - component
  - component/vmedia
---

```html
<div class="c-vmedia c-vmedia-border">
  <div class="c-vmedia_header">
    <h3 class="c-vmedia_title">中長期ビジョン</h3>
  </div>
  <div class="c-vmedia_body">
    <p class="c-vmedia_description">海図なき世界情勢の中で、<br>日本企業の海外ビジネスを切り開く「羅針盤」でありたい。（財務分析、金融法務、国際経済、出融資・審査実務等）を習得します。</p>
  </div>
</div>
```
*/
.c-vmedia {
  box-sizing: border-box;
  font-size: 1.5rem;
}
.c-vmedia-border {
  border: 1px solid #ddd;
}
.c-vmedia-strong {
  background-color: #fff;
  border: 1px solid #d70c19;
}
.c-vmedia-strong .c-vmedia_header {
  background-color: #d70c19;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-vmedia-strong .c-vmedia_header {
    padding: 29px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia-strong .c-vmedia_header {
    padding: 24px 0;
  }
}
.c-vmedia-strong .c-vmedia_title {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-vmedia-strong .c-vmedia_title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia-strong .c-vmedia_title {
    font-size: 1.4rem;
  }
}

.c-vmedia_title {
  box-sizing: border-box;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-vmedia_title {
    font-size: 2.2rem;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia_title {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.c-vmedia_title-leftLine {
  border-left: 2px solid #d70c19;
  padding-left: 20px;
}

.c-vmedia_body {
  letter-spacing: 0.06em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-vmedia_body {
    padding: 45px 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia_body {
    padding: 25px 20px 27px 20px;
  }
}
.c-vmedia_body-strong {
  color: #d70c19;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-vmedia_body-strong {
    font-size: 2.4rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia_body-strong {
    font-size: 1.8rem;
  }
}

.c-vmedia_image {
  display: block;
  margin-top: 70px;
}
.c-vmedia_image > img {
  height: auto;
  width: 100%;
}

.c-vmedia_body {
  overflow: hidden;
}

.c-vmedia_bodyInner {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .c-vmedia_bodyInner {
    width: min(24.8901903367vw, 340px);
  }
}
@media screen and (min-width: 1025px) {
  .c-vmedia_bodyInner:nth-of-type(1) {
    margin: 0 min(6.588579795vw, 90px) 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-vmedia_bodyInner:nth-of-type(2) {
    margin-top: 86px;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia_bodyInner:nth-of-type(2) {
    margin-top: 86px;
  }
}

.c-vmedia_arrow:before, .c-vmedia_arrow:after {
  content: "";
  position: absolute;
  display: block;
  background: #8C8F90;
}
@media screen and (min-width: 1025px) {
  .c-vmedia_arrow:before, .c-vmedia_arrow:after {
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: max(-5.4904831625vw, -85px);
    width: 60px;
    height: 1px;
  }
}
@media screen and (max-width: 1024px) {
  .c-vmedia_arrow:before, .c-vmedia_arrow:after {
    bottom: -51px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 1px;
  }
}
.c-vmedia_arrow:before {
  transform: rotate(45deg);
}
.c-vmedia_arrow:after {
  transform: rotate(-45deg);
}

.c-vmedia_bodyTitle {
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-vmedia_bodyTitle {
    font-size: 1.9rem;
    line-height: 1.5789473684;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia_bodyTitle {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 7px;
  }
}

.c-vmedia_bodyDescription {
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1025px) {
  .c-vmedia_bodyDescription {
    width: 24.8901903367vw;
    max-width: 340px;
  }
}
@media screen and (min-width: 768px) {
  .c-vmedia_bodyDescription {
    line-height: 2;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-vmedia_bodyDescription {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/**
 * Article card wrap
 */
.c-article_card_wrap {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-article_card_wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: min(3.513909224vw, 48px) min(2.3426061493vw, 32px);
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_card_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: min(8.5333333333vw, 64px) min(3.2vw, 24px);
    width: min(89.3333333333vw, 670px);
  }
}

/**
 * Breadcrumb
 */
.p-breadcrumb {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  border-radius: 0 100vmax 100vmax 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    top: 80px;
    height: 24px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    top: min(16vw, 120px);
    height: min(4vw, 30px);
    padding: 0 min(2.1333333333vw, 16px);
  }
}

.p-breadcrumb_list {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb_list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb_list {
    gap: min(2.9333333333vw, 22px);
  }
}

.p-breadcrumb_item:not(:first-child) {
  position: relative;
}
.p-breadcrumb_item:not(:first-child)::before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb_item:not(:first-child)::before {
    left: -14px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb_item:not(:first-child)::before {
    left: min(-1.8666666667vw, -14px);
    width: min(1.3333333333vw, 10px);
    height: min(1.3333333333vw, 10px);
  }
}

.p-breadcrumb_link,
.p-breadcrumb_current {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb_link,
  .p-breadcrumb_current {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb_link,
  .p-breadcrumb_current {
    font-size: min(2.1333333333vw, 16px);
  }
}

@media (any-hover: hover) {
  .p-breadcrumb_link {
    transition: color 0.3s ease-out;
  }
  .p-breadcrumb_link:hover {
    color: #AAAAAA;
  }
}

.p-category_kv {
  position: relative;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-category_kv {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .p-category_kv {
    display: flex;
    flex-direction: column;
    height: 100svh;
  }
}
.p-category_kv::before {
  position: absolute;
  content: "";
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-category_kv::before {
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .p-category_kv::before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 43.7333333333vw);
    background: rgba(0, 0, 0, 0.2);
  }
}
.p-category_kv::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-category_kv::after {
    width: 32.6500732064vw;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-category_kv::after {
    width: 100%;
    height: min(43.7333333333vw, 328px);
  }
}

.p-category_kv_title {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-category_kv_title {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(5.8565153734vw, 80px);
    padding-top: min(10.541727672vw, 144px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_kv_title {
    width: min(86.6666666667vw, 650px);
    padding-top: min(28.5333333333vw, 214px);
  }
}

.p-category_kv_lead {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-category_kv_lead {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_kv_lead {
    width: min(84vw, 630px);
    margin-top: auto;
    margin-bottom: min(36.5333333333vw, 274px);
  }
}

.p-category_kv_lead_text {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-category_kv_lead_text {
    width: min(28.2576866764vw, 386px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_kv_lead_text {
    width: min(66.6666666667vw, 500px);
    font-size: min(3.2vw, 24px);
  }
}

.p-category_pickup {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  margin: 0 auto;
  border-style: solid;
  border-color: #D70C19;
  background: #FFF;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-category_pickup {
    top: -143px;
    width: min(71.7423133236vw, 980px);
    min-height: min(20.8638360176vw, 285px);
    border-width: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup {
    top: min(-10.6666666667vw, -80px);
    width: min(89.3333333333vw, 670px);
    border-width: min(1.3333333333vw, 10px);
  }
}

.p-category_pickup_title {
  position: absolute;
  bottom: 100%;
  display: grid;
  place-content: center;
  background: #D70C19;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-category_pickup_title {
    left: min(-0.7320644217vw, -10px);
    width: min(10.2489019034vw, 140px);
    aspect-ratio: 140/44;
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup_title {
    left: min(-0.6666666667vw, -5px);
    width: min(25.7333333333vw, 193px);
    aspect-ratio: 193/60;
    font-size: min(4.2666666667vw, 32px);
  }
}

@media screen and (min-width: 768px) {
  .p-category_pickup_detail {
    display: grid;
    grid-template-columns: min(29.2825768668vw, 400px) 1fr;
    height: 100%;
    min-height: min(19.3997071742vw, 265px);
  }
}
@media screen and (min-width: 768px) {
  .p-category_pickup_detail_img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup_detail_img {
    aspect-ratio: 650/431;
  }
}
.p-category_pickup_detail_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-category_pickup_detail_textarea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup_detail_textarea {
    padding: min(7.4666666667vw, 56px) min(5.3333333333vw, 40px);
  }
}

.p-category_pickup_detail_date {
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-category_pickup_detail_date {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup_detail_date {
    margin-bottom: min(1.0666666667vw, 8px);
    font-size: min(3.2vw, 24px);
  }
}

@media screen and (min-width: 768px) {
  .p-category_pickup_detail_title {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup_detail_title {
    margin-bottom: min(4.2666666667vw, 32px);
  }
}

.p-category_pickup_detail_title_link {
  color: #D70C19;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-category_pickup_detail_title_link {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup_detail_title_link {
    font-size: min(3.4666666667vw, 26px);
  }
}
@media (any-hover: hover) {
  .p-category_pickup_detail_title_link {
    transition: color 0.3s ease-in-out;
  }
  .p-category_pickup_detail_title_link:hover {
    color: #000;
  }
}

.p-category_pickup .c-article_card_tags {
  margin: 0;
}
.p-category_pickup .c-article_card_tag_link,
.p-category_pickup .c-article_card_tag_label {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-category_pickup .c-article_card_tag_link,
  .p-category_pickup .c-article_card_tag_label {
    padding: 5px 7px;
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_pickup .c-article_card_tag_link,
  .p-category_pickup .c-article_card_tag_label {
    padding: min(0.6666666667vw, 5px) min(0.878477306vw, 12px);
    font-size: min(2.6666666667vw, 20px);
  }
}

.p-category_articles {
  position: relative;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .p-category_articles {
    padding-top: min(22.1815519766vw, 303px);
    padding-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_articles {
    padding-top: min(108.4vw, 813px);
    padding-bottom: min(21.3333333333vw, 160px);
  }
}
@media screen and (min-width: 768px) {
  .p-category_articles:has(.p-category_annotation) {
    padding-bottom: min(2.196193265vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_articles:has(.p-category_annotation) {
    padding-bottom: min(5.3333333333vw, 40px);
  }
}

.p-category_articles_sort_wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-category_articles_sort_wrap {
    gap: min(0.5856515373vw, 8px);
    width: min(71.7423133236vw, 980px);
    margin-bottom: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_articles_sort_wrap {
    gap: min(1.0666666667vw, 8px);
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(4.2666666667vw, 32px);
  }
}

.p-category_articles_sort {
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-category_articles_sort {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_articles_sort {
    font-size: min(3.2vw, 24px);
  }
}
.p-category_articles_sort.is-active {
  color: #000;
  pointer-events: none;
}
.p-category_articles_sort:not(.is-active) {
  color: #AAAAAA;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-category_articles_sort:not(.is-active):hover {
    color: #000;
  }
}
.p-category_articles_sort.sort_icon {
  aspect-ratio: 18/16;
  background: url("../images/common/ico_sort.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-category_articles_sort.sort_icon {
    width: min(1.317715959vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_articles_sort.sort_icon {
    width: min(3.3333333333vw, 25px);
  }
}

.p-category_articles_viewMore {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-category_articles_viewMore {
    margin-top: min(4.6852122987vw, 64px);
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-category_articles_viewMore {
    margin-top: min(8.5333333333vw, 64px);
  }
}
.p-category_articles_viewMore .c-viewMore_icon {
  rotate: 90deg;
}
.p-category_articles_viewMore.is-hidden {
  display: none;
}

.p-category_annotation {
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-category_annotation {
    width: min(71.7423133236vw, 980px);
    margin-top: min(8.4187408492vw, 115px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .p-category_annotation {
    width: min(89.3333333333vw, 670px);
    margin-top: min(12.6666666667vw, 95px);
    font-size: min(2.4vw, 18px);
  }
}

.p-contents {
  margin: 0 auto;
  border-left-style: solid;
  border-left-color: #D70C19;
}
@media screen and (min-width: 768px) {
  .p-contents {
    width: min(77.5988286969vw, 1060px);
    border-left-width: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents {
    border-left-width: min(1.0666666667vw, 8px);
  }
}
@media screen and (min-width: 768px) {
  .p-contents + .p-contents {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents + .p-contents {
    margin-top: min(10.6666666667vw, 80px);
  }
}

.p-contents_head {
  display: flex;
  align-items: center;
  border-radius: 0 100vmax 100vmax 0;
  background: #D70C19;
  color: #FFF;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-contents_head {
    aspect-ratio: 1060/44;
    padding: min(0.2928257687vw, 4px) min(4.39238653vw, 60px);
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_head {
    width: min(94.6666666667vw, 710px);
    aspect-ratio: 710/100;
    padding: min(1.6vw, 12px) min(5.3333333333vw, 40px);
    font-size: min(4.2666666667vw, 32px);
  }
}

@media screen and (min-width: 768px) {
  .p-contents_inner {
    padding: min(2.9282576867vw, 40px) min(4.39238653vw, 60px) min(2.9282576867vw, 40px) min(4.0995607613vw, 56px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_inner {
    padding: min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) min(4.2666666667vw, 32px);
  }
}
@media screen and (min-width: 768px) {
  .p-contents_inner.leftImg {
    display: grid;
    grid-template-columns: min(32.9428989751vw, 450px) 1fr;
    gap: min(2.9282576867vw, 40px);
  }
  .p-contents_inner.leftImg .p-contents_img {
    aspect-ratio: 450/277;
  }
  .p-contents_inner.leftImg .p-contents_text {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contents_inner.leftImg .p-contents_img {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}

.p-contents_subhead {
  color: #D70C19;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contents_subhead {
    margin-bottom: min(1.1713030747vw, 16px);
    padding-right: min(1.4641288433vw, 20px);
    padding-left: min(1.4641288433vw, 20px);
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .p-contents_subhead {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(4vw, 30px);
    line-height: 1.6;
  }
}

.p-contents_text {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contents_text {
    padding-right: min(1.4641288433vw, 20px);
    padding-left: min(1.4641288433vw, 20px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_text {
    font-size: min(3.2vw, 24px);
  }
}
.p-contents_text + .p-contents_text {
  margin-top: 1.8em;
}
@media screen and (min-width: 768px) {
  .p-contents_text + .p-contents_img {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_text + .p-contents_img {
    margin-top: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .p-contents_text + .p-roundedRectangle_btn {
    margin: min(5.8565153734vw, 80px) auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contents_text + .p-roundedRectangle_btn {
    margin: min(16vw, 120px) auto 0;
  }
}

.p-contents_img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contents_img {
    aspect-ratio: 940/320;
  }
}
@media screen and (max-width: 767px) {
  .p-contents_img {
    aspect-ratio: 670/412;
  }
}
.p-contents_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-contents_img + .p-contents_subhead {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_img + .p-contents_subhead {
    margin-top: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .fullImg .p-contents_img + .p-contents_text {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .fullImg .p-contents_img + .p-contents_text {
    margin-top: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .fullImg .p-contents_img + .p-content_textarea {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .fullImg .p-contents_img + .p-content_textarea {
    margin-top: min(5.3333333333vw, 40px);
  }
}

.p-contents_dl {
  border-top: 1px solid #D9D9D9;
}
.p-contents_dl.no-border {
  border-top: none;
}
.p-contents_dl.no-border .p-contents_dl_item {
  border-bottom: none;
}

.p-contents_dl_item {
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .p-contents_dl_item {
    display: grid;
    grid-template-columns: min(16.1054172767vw, 220px) 1fr;
    gap: min(1.756954612vw, 24px);
    padding: min(1.756954612vw, 24px) min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_dl_item {
    padding: min(5.3333333333vw, 40px) min(2.6666666667vw, 20px);
  }
}
.p-contents_dl_item:not(:has(.p-contents_dl_item_title)) {
  grid-template-columns: 1fr;
}
.p-contents_dl_item:not(:has(.p-contents_dl_item_description)) {
  grid-template-columns: 1fr;
}
.p-contents_dl_item:not(:has(.p-contents_dl_item_description)) .p-contents_dl_item_title {
  margin-bottom: 0;
}

.p-contents_dl_item_title {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contents_dl_item_title {
    align-self: center;
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_dl_item_title {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}

.p-contents_dl_item_description {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contents_dl_item_description {
    align-self: center;
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_dl_item_description {
    font-size: min(3.2vw, 24px);
  }
}
.p-contents_dl_item_description .u-note {
  display: block;
  margin-top: 0.5em;
}

.p-contents_flow {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-contents_flow {
    gap: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow {
    gap: 32px;
  }
}

.p-contents_flow_item {
  position: relative;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item {
    display: grid;
    grid-template-columns: min(16.1054172767vw, 220px) 1fr;
    gap: min(1.756954612vw, 24px);
    padding: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item {
    padding: min(10.6666666667vw, 80px) min(5.3333333333vw, 40px) min(5.3333333333vw, 40px);
  }
}
.p-contents_flow_item:not(:last-child)::after {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  content: "";
  background: #000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item:not(:last-child)::after {
    top: calc(100% + 16px);
    width: 20px;
    aspect-ratio: 20/10;
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item:not(:last-child)::after {
    top: calc(100% + 12px);
    width: 15px;
    aspect-ratio: 30/15;
  }
}

.p-contents_flow_item_title {
  align-self: center;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item_title {
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item_title {
    margin-bottom: min(8.5333333333vw, 64px);
    font-size: min(4.2666666667vw, 32px);
  }
}

.p-contents_flow_item_step {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item_step {
    margin-bottom: min(0.2928257687vw, 4px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item_step {
    font-size: min(3.7333333333vw, 28px);
  }
}

.p-contents_flow_item_title_note {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item_title_note {
    display: block;
    margin-top: min(0.2928257687vw, 4px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item_title_note {
    margin-left: min(1.0666666667vw, 8px);
    font-size: min(3.2vw, 24px);
  }
}

.p-contents_flow_item_description {
  align-self: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item_description {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item_description {
    font-size: min(3.2vw, 24px);
  }
}

.p-contents_flow_item_description_note {
  display: block;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-contents_flow_item_description_note {
    margin-top: min(0.5856515373vw, 8px);
    font-size: clamp(10px, 0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_flow_item_description_note {
    margin-top: min(1.0666666667vw, 8px);
    font-size: min(2.4vw, 18px);
  }
}

@media screen and (max-width: 767px) {
  .page-careerApplication .p-contents_flow_item {
    padding-bottom: min(10.6666666667vw, 80px);
  }
}
.page-careerApplication .p-contents_flow_item:last-child .p-contents_flow_item_title {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .page-careerApplication .p-contents_flow_item:last-child .p-contents_flow_item_title {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-careerApplication .p-contents_flow_item_step {
    margin-bottom: 0;
  }
}
.page-careerApplication .p-contents_flow_item_description {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-careerApplication .p-contents_flow_item_description {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerApplication .p-contents_flow_item_description {
    font-size: min(3.7333333333vw, 28px);
  }
}

/**
 * Empty article
 */
#articleEmpty {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #articleEmpty {
    width: min(71.7423133236vw, 980px);
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  #articleEmpty {
    width: min(89.3333333333vw, 670px);
    font-size: min(3.2vw, 24px);
  }
}

.p-article_sort_wrap.is-hidden {
  display: none;
}

/**
 * Entry button
 */
.p-entryBtn {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s ease-in-out;
}
.p-entryBtn.other {
  border-style: solid;
  border-color: #D70C19;
  background: #FFF;
  color: #D70C19;
}
.p-entryBtn.graduate {
  background: #D70C19;
  color: #FFF;
}
.p-entryBtn.career {
  background: #404040;
  color: #FFF;
}
@media (any-hover: hover) {
  .p-entryBtn:hover {
    opacity: 0.8;
  }
}

.p-entryBtn_type {
  font-weight: 700;
  line-height: 1.4;
}

.p-entryBtn_entry {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.p-entryBtn_mypage {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.p-entryBtn_arrow {
  top: 50%;
  translate: 0 -50%;
}
.other .p-entryBtn_arrow {
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .other .p-entryBtn_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .other .p-entryBtn_arrow {
    width: min(4.2666666667vw, 32px);
  }
}
.other .p-entryBtn_arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .other .p-entryBtn_arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .other .p-entryBtn_arrow::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.graduate .p-entryBtn_arrow {
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .graduate .p-entryBtn_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .graduate .p-entryBtn_arrow {
    width: min(4.2666666667vw, 32px);
  }
}
.graduate .p-entryBtn_arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #D70C19;
  border-right-color: #D70C19;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .graduate .p-entryBtn_arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .graduate .p-entryBtn_arrow::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.career .p-entryBtn_arrow {
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .career .p-entryBtn_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .career .p-entryBtn_arrow {
    width: min(4.2666666667vw, 32px);
  }
}
.career .p-entryBtn_arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #404040;
  border-right-color: #404040;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .career .p-entryBtn_arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .career .p-entryBtn_arrow::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

@media screen and (min-width: 768px) {
  .p-entryBtn.fixedButton {
    width: 156px;
    aspect-ratio: 156/74;
    padding-left: 22px;
    padding-right: 30px;
    border-radius: 100vmax 0 0 100vmax;
    filter: drop-shadow(0 0 min(1.4641288433vw, 20px) rgba(0, 0, 0, 0.15));
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.fixedButton {
    width: min(29.0666666667vw, 218px);
    aspect-ratio: 218/100;
    padding-left: min(3.7333333333vw, 28px);
    padding-right: min(4.5333333333vw, 34px);
    border-radius: 100vmax;
    filter: drop-shadow(0 0 min(2.6666666667vw, 20px) rgba(0, 0, 0, 0.15));
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.fixedButton.other {
    border-width: 2px;
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.fixedButton.other {
    border-width: min(0.5333333333vw, 4px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.fixedButton .p-entryBtn_type {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.fixedButton .p-entryBtn_type {
    font-size: min(2.1333333333vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.fixedButton .p-entryBtn_entry {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.fixedButton .p-entryBtn_entry {
    font-size: min(4.5333333333vw, 34px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.fixedButton .p-entryBtn_arrow {
    right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.fixedButton .p-entryBtn_arrow {
    right: min(2.1333333333vw, 16px);
  }
}

@media screen and (min-width: 768px) {
  .p-entryBtn.recruitButton {
    width: min(19.9121522694vw, 272px);
    aspect-ratio: 272/96;
    padding-left: min(2.1229868228vw, 29px);
    padding-right: min(2.635431918vw, 36px);
    border-radius: 0 100vmax 100vmax 0;
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.recruitButton {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: initial;
    gap: 0 min(2.1333333333vw, 16px);
    width: min(68vw, 510px);
    aspect-ratio: 510/136;
    padding-top: min(2.8vw, 21px);
    padding-right: min(7.2vw, 54px);
    padding-bottom: min(2.8vw, 21px);
    padding-left: min(6.9333333333vw, 52px);
    border-radius: 100vmax;
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.recruitButton.other {
    border-width: 2px;
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.recruitButton.other {
    border-width: min(0.5333333333vw, 4px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.recruitButton .p-entryBtn_type {
    font-size: clamp(12px, 1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.recruitButton .p-entryBtn_type {
    width: 100%;
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.recruitButton .p-entryBtn_entry {
    font-size: clamp(24px, 2.635431918vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.recruitButton .p-entryBtn_entry {
    font-size: min(6.9333333333vw, 52px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.recruitButton .p-entryBtn_mypage {
    font-size: clamp(12px, 1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.recruitButton .p-entryBtn_mypage {
    font-size: min(3.7333333333vw, 28px);
  }
}
@media screen and (min-width: 768px) {
  .p-entryBtn.recruitButton .p-entryBtn_arrow {
    right: clamp(12px, 1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-entryBtn.recruitButton .p-entryBtn_arrow {
    right: min(3.2vw, 24px);
  }
}

/**
 * Fixed button
 */
.p-fixed_buttons {
  position: fixed;
  display: flex;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, right 0.3s ease-in-out, bottom 0.6s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-fixed_buttons {
    bottom: 24px;
    right: 0;
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-fixed_buttons {
    bottom: min(5.3333333333vw, 40px);
    left: 50%;
    translate: -50% 0;
    justify-content: flex-end;
    gap: min(1.0666666667vw, 8px);
    width: 100%;
    padding: 0 min(5.3333333333vw, 40px);
  }
}
.p-fixed_buttons.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .p-fixed_buttons.is-hidden {
    right: -156px;
  }
}
@media screen and (max-width: 767px) {
  .p-fixed_buttons.is-hidden {
    bottom: min(-18.6666666667vw, -140px);
  }
}

/**
 * Footer
 */
.p-footer {
  position: relative;
  z-index: 2;
  background: #000;
}

.p-footer_pagetop {
  display: grid;
  place-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .p-footer_pagetop {
    height: 90px;
    padding-top: min(1.4641288433vw, 20px);
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_pagetop {
    height: min(16vw, 120px);
    padding-top: min(2.6666666667vw, 20px);
  }
}
.p-footer_pagetop > span {
  position: relative;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-footer_pagetop > span {
    font-size: min(1.1713030747vw, 16px);
    line-height: 2.5;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_pagetop > span {
    font-size: min(3.2vw, 24px);
  }
}
.p-footer_pagetop > span:before {
  content: "";
  display: block;
  position: absolute;
  height: 8px;
  width: 8px;
  top: -4px;
  right: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-footer_pagetop > span:before {
    top: -8px;
    height: 6px;
    width: 6px;
  }
}
@media screen and (min-width: 768px) {
  .p-footer_pagetop:hover > span:before {
    transform: translateY(-3px) rotate(-45deg);
  }
}

@media screen and (min-width: 768px) {
  .p-footer_nav {
    width: min(87.8477306003vw, 1200px);
    margin: 0 auto;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_nav {
    padding: min(10.6666666667vw, 80px) min(5.3333333333vw, 40px);
  }
}

/**
 * Header
 */
.p-header {
  position: relative;
  display: flex;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  transition: height 0.3s ease-in-out, background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: min(16vw, 120px);
    padding-left: min(2.6666666667vw, 20px);
  }
}
.p-header:has(.p-menu.is-show) .p-header_pcMenu,
.p-header:has(.p-menu.is-show) .p-header_recruit {
  visibility: hidden;
  opacity: 0;
}

.p-header_logoWrapper {
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .p-header_logoWrapper {
    width: 260px;
    aspect-ratio: 260/80;
    z-index: 101;
  }
}
@media screen and (max-width: 767px) {
  .p-header_logoWrapper {
    width: min(13.4666666667vw, 101px);
    aspect-ratio: 101/120;
  }
}

.p-header_logo {
  display: block;
  aspect-ratio: 240/50;
}
@media screen and (min-width: 768px) {
  .p-header_logo {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .p-header_logo {
    width: min(13.4666666667vw, 101px);
  }
}

@media screen and (min-width: 768px) {
  .p-header_pcMenu {
    margin-left: auto;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
}

.p-header_recruit {
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .p-header_recruit {
    margin-left: auto;
  }
}

.p-header_menuBtn {
  display: grid;
  place-content: center;
  height: 100%;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .p-header_menuBtn {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-header_menuBtn {
    width: min(17.0666666667vw, 128px);
  }
}

.page-top .p-header_logo {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-container_hr {
    margin-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-container_hr {
    margin-bottom: min(2.1333333333vw, 16px);
  }
}

.p-hr_kv {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hr_kv {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1366/800;
    max-height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv {
    display: flex;
    flex-direction: column;
    aspect-ratio: 750/1372;
  }
}
@media screen and (max-width: 440px) {
  .p-hr_kv {
    height: 100svh;
  }
}

.p-hr_kv_title {
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_title {
    gap: min(0.5856515373vw, 8px) min(1.1713030747vw, 16px);
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(2.9282576867vw, 40px);
    padding-top: min(10.541727672vw, 144px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_title {
    gap: min(3.2vw, 24px) min(2.1333333333vw, 16px);
    margin-left: min(5.3333333333vw, 40px);
    padding-top: min(24vw, 180px);
  }
}

.p-hr_kv_title_en {
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_title_en {
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_title_en {
    font-size: min(4.5333333333vw, 34px);
  }
}

.p-hr_kv_title_category {
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_title_category {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_title_category {
    font-size: min(3.7333333333vw, 28px);
  }
}

.p-hr_kv_title_ja {
  grid-column: 1/3;
  color: #D70C19;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_title_ja {
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_title_ja {
    font-size: min(8vw, 60px);
  }
}

.p-hr_kv_lead {
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_lead {
    width: min(38.7994143485vw, 530px);
    margin-right: 50%;
    margin-left: auto;
    padding: min(5.8565153734vw, 80px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_lead {
    width: min(76vw, 570px);
    margin-top: auto;
    margin-bottom: min(5.3333333333vw, 40px);
    margin-left: min(5.3333333333vw, 40px);
    padding: min(8vw, 40px) min(5.3333333333vw, 40px);
  }
}

.p-hr_kv_lead_text {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_lead_text {
    font-size: min(2.0497803807vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_lead_text {
    font-size: min(4vw, 30px);
  }
}

.p-hr_kv_lead_profile {
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_lead_profile {
    margin-top: min(1.756954612vw, 24px);
    gap: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_lead_profile {
    margin-top: min(7.4666666667vw, 56px);
    gap: min(2.1333333333vw, 16px) min(2.6666666667vw, 20px);
  }
}

.p-hr_kv_lead_profile_position {
  grid-column: 1/3;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_lead_profile_position {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_lead_profile_position {
    font-size: min(2.4vw, 18px);
  }
}

.p-hr_kv_lead_profile_nameJa {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_lead_profile_nameJa {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_lead_profile_nameJa {
    font-size: min(4vw, 30px);
  }
}

.p-hr_kv_lead_profile_nameEn {
  align-self: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-hr_kv_lead_profile_nameEn {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_kv_lead_profile_nameEn {
    font-size: min(1.7333333333vw, 13px);
  }
}

@media screen and (min-width: 768px) {
  .p-hr_contents {
    margin-top: min(7.3206442167vw, 100px);
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_contents {
    margin-top: min(21.3333333333vw, 160px);
    margin-bottom: min(21.3333333333vw, 160px);
  }
}

.p-hr_title {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-hr_title {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_title {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(8.5333333333vw, 64px);
  }
}

.p-hr_persona {
  border: 1px solid #D70C19;
}
@media screen and (min-width: 768px) {
  .p-hr_persona {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_persona {
    margin-top: min(5.3333333333vw, 40px);
  }
}

.p-hr_persona_head {
  display: grid;
  place-content: center;
  background: #D70C19;
  color: #FFF;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-hr_persona_head {
    height: min(6.588579795vw, 90px);
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_persona_head {
    height: min(19.0666666667vw, 143px);
    font-size: min(3.7333333333vw, 28px);
  }
}

.p-hr_persona_list {
  list-style-type: decimal;
}
@media screen and (min-width: 768px) {
  .p-hr_persona_list {
    padding: min(2.9282576867vw, 40px) min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_persona_list {
    padding: min(8vw, 60px) min(5.3333333333vw, 40px);
  }
}

.p-hr_persona_item {
  margin-left: 1.5em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-hr_persona_item {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .p-hr_persona_item {
    font-size: min(3.4666666667vw, 26px);
  }
}
.p-hr_persona_item + .p-hr_persona_item {
  margin-top: 0.5em;
}

/**
 * Menu
 */
.p-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-menu {
    padding-top: 104px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu {
    padding: min(25.3333333333vw, 190px) min(5.3333333333vw, 40px) min(10.6666666667vw, 80px);
  }
}
.p-menu.is-show {
  visibility: visible;
  opacity: 1;
}
.p-menu .p-menu_contents {
  height: auto;
}
@media screen and (min-width: 1025px) {
  .p-menu .p-menu_contents {
    position: relative;
    width: 980px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-menu .p-menu_contents {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-menu .p-menu_contents {
    width: 100%;
  }
}
.p-menu .p-menu_nav {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-menu .p-menu_nav::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-menu .p-menu_nav {
    max-height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 767px) {
  .p-menu .p-menu_nav {
    max-height: calc(100dvh - 18.6666666667vw);
  }
}
@media screen and (min-width: 768px) {
  .p-menu .p-menu_spScrollable {
    position: relative;
    width: min(71.7423133236vw, 980px);
    margin: 0 auto;
    padding-bottom: min(7.3206442167vw, 100px);
  }
}
@media screen and (max-width: 767px) {
  .p-menu .p-menu_spScrollable {
    padding-bottom: min(10.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1025px) {
  .p-menu .p-menu_jbicMagazine {
    position: absolute;
    bottom: min(7.3206442167vw, 100px);
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-menu .p-menu_jbicMagazine {
    position: absolute;
    bottom: min(7.3206442167vw, 100px);
    right: 0;
    width: min(36.6032210835vw, 500px);
    aspect-ratio: 300/120;
  }
}
@media screen and (max-width: 767px) {
  .p-menu .p-menu_jbicMagazine {
    margin-top: min(8.5333333333vw, 64px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-menu .p-menu_jbicMagazine a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .p-menu .p-menu_jbicMagazine a img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media (any-hover: hover) {
  .p-menu .p-menu_jbicMagazine a {
    transition: opacity 0.3s ease-in-out;
  }
  .p-menu .p-menu_jbicMagazine a:hover {
    opacity: 0.8;
  }
}

/**
 * Menu Links
 */
@media screen and (min-width: 1025px) {
  .p-menuLinks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .p-menuLinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.513909224vw, 48px) min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menuLinks {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .p-menuLinks {
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer .p-menuLinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(8.5333333333vw, 64px) min(3.2vw, 24px);
  }
}
.p-menuLinks .p-menuLinks_title {
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-menuLinks .p-menuLinks_title {
    margin-bottom: 22px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks .p-menuLinks_title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: min(4vw, 30px);
  }
}
.p-menuLinks .p-menuLinks_title .ico_arrow_nav {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-menuLinks .p-menuLinks_title .ico_arrow_nav {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks .p-menuLinks_title .ico_arrow_nav {
    width: min(4.2666666667vw, 32px);
  }
}
.p-menuLinks .p-menuLinks_title .ico_arrow_nav::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-menuLinks .p-menuLinks_title .ico_arrow_nav::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks .p-menuLinks_title .ico_arrow_nav::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.p-menuLinks .p-menuLinks_title .ico_arrow_nav {
  rotate: 90deg;
  transition: rotate 0.3s ease-in-out;
}
.p-menuLinks .p-menuLinks_item {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-menuLinks .p-menuLinks_item {
    font-size: 13px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks .p-menuLinks_item {
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .p-menuLinks .p-menuLinks_item + .p-menuLinks_item {
    margin-top: min(1.7333333333vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks .p-menuLinks_item + .p-menuLinks_item {
    margin-top: min(4vw, 30px);
  }
}
@media (any-hover: hover) {
  .p-menuLinks .p-menuLinks_item a {
    transition: color 0.3s ease-in-out;
  }
  .p-menuLinks .p-menuLinks_item a:hover {
    color: #D70C19;
  }
}

@media screen and (min-width: 1025px) {
  .p-header .category_company {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .category_company {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1025px) {
  .p-header .category_news {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .category_news {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1025px) {
  .p-header .category_project {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .category_project {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 1025px) {
  .p-header .category_people {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .category_people {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
@media screen and (min-width: 1025px) {
  .p-header .category_howwework {
    grid-column: 3/4;
    grid-row: 1/5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .category_howwework {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
@media screen and (min-width: 1025px) {
  .p-header .category_recruit {
    grid-column: 4/5;
    grid-row: 1/5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .category_recruit {
    grid-column: 2/3;
    grid-row: 1/6;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menuLinks_box {
    height: 0;
    visibility: hidden;
    transition: height 0.3s linear, visibility 0.3s linear;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menuLinks_box.graduate {
    margin-top: min(-1.3333333333vw, -10px);
  }
}
.p-header .p-menuLinks_box.graduate .p-menuLinks_subtitle {
  background: rgba(215, 12, 25, 0.7);
}
@media screen and (min-width: 768px) {
  .p-header .p-menuLinks_box.career {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menuLinks_box.career {
    padding-bottom: min(1.3333333333vw, 10px);
  }
}
.p-header .p-menuLinks_box.career .p-menuLinks_subtitle {
  background: rgba(64, 64, 64, 0.7);
}
.p-header .p-menuLinks_subtitle {
  display: flex;
  align-items: center;
  width: 100%;
  color: #FFF;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .p-header .p-menuLinks_subtitle {
    aspect-ratio: 245/36;
    margin-bottom: 16px;
    padding: 0 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menuLinks_subtitle {
    width: min(80vw, 600px);
    aspect-ratio: 600/64;
    margin-bottom: min(2.6666666667vw, 20px);
    padding: 0 min(3.2vw, 24px);
    font-size: min(3.7333333333vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_category {
    width: 100%;
    border-bottom: 1px solid #000;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_category.is-open .p-menuLinks_title .ico_arrow_nav {
    rotate: -90deg;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_category.is-open .p-menuLinks_list {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding-bottom: min(5.3333333333vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_category.is-open .p-menuLinks_box {
    height: auto;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_category .p-menuLinks_box .p-menuLinks_list {
    margin-top: 0;
    padding-bottom: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .p-header .p-menu .p-menuLinks_title {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_title {
    padding: min(5.3333333333vw, 40px) min(1.3333333333vw, 10px);
    transition: padding 0.3s linear;
  }
}
@media screen and (max-width: 767px) {
  .p-header .p-menu .p-menuLinks_list {
    height: 0;
    visibility: hidden;
    opacity: 0;
    margin-top: min(-1.3333333333vw, -10px);
    padding: 0 min(1.3333333333vw, 10px) min(2.6666666667vw, 10px);
    transition: height 0.3s linear, visibility 0.3s linear, opacity 0.3s linear, padding-bottom 0.3s linear;
  }
}

@media screen and (min-width: 1025px) {
  .p-footer .category_company {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer .category_company {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .category_news {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer .category_news {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .category_project {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer .category_project {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .category_people {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer .category_people {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .category_howwework {
    grid-column: 3/4;
    grid-row: 1/5;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer .category_howwework {
    grid-column: 2/3;
    grid-row: 4/5;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .category_recruit {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1/4;
    grid-row: 5/6;
    margin-top: 32px;
  }
  .p-footer .category_recruit .p-menuLinks_title {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-footer .category_recruit {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .category_recruit {
    grid-column: 1/3;
    grid-row: 5/6;
  }
}
.p-footer .p-menuLinks_title {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-footer .p-menuLinks_title {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-menuLinks_title .ico_arrow_nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-menuLinks_item {
    font-size: min(2.6666666667vw, 20px);
    font-weight: 700;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer .p-menuLinks_box {
    width: 300px;
    aspect-ratio: 300/340;
    padding: 32px 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-footer .p-menuLinks_box {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-menuLinks_box {
    padding: min(4.2666666667vw, 32px) min(3.2vw, 24px);
  }
}
.p-footer .p-menuLinks_box.graduate {
  background: rgba(215, 12, 25, 0.3);
}
.p-footer .p-menuLinks_box.career {
  background: rgba(255, 255, 255, 0.2);
}
.p-footer .p-menuLinks_subtitle {
  color: #FFF;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer .p-menuLinks_subtitle {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 800;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-menuLinks_subtitle {
    margin-bottom: min(3.2vw, 24px);
    font-size: min(3.4666666667vw, 26px);
    font-weight: 700;
  }
}
.p-footer .p-menuLinks_item a {
  color: #FFF;
}
@media screen and (min-width: 1220px) {
  .p-footer .p-footer_links {
    grid-column: 3/5;
    grid-row: 5/6;
    align-self: end;
    justify-self: end;
    display: flex;
    flex-direction: column;
    width: min(36.6032210835vw, 500px);
    height: calc(100% - 32px - 42px);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1219px) {
  .p-footer .p-footer_links {
    grid-column: 1/5;
    grid-row: 6/7;
    display: grid;
    grid-template-columns: 500px 1fr;
    grid-template-rows: 1fr auto;
    -moz-column-gap: 24px;
         column-gap: 24px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-footer .p-footer_links {
    grid-column: 2/3;
    grid-row: 5/6;
    display: flex;
    flex-direction: column;
    margin-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer_links {
    grid-column: 1/3;
    grid-row: 6/7;
  }
}
.p-footer .p-footer_magazine {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .p-footer .p-footer_magazine {
    grid-column: 1/2;
    grid-row: 1/3;
    aspect-ratio: 500/180;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-footer .p-footer_magazine {
    aspect-ratio: 500/180;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer_magazine {
    aspect-ratio: 670/254;
  }
}
.p-footer .p-footer_magazine img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-footer .p-footer_navLink {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-footer .p-footer_navLink {
    justify-content: flex-end;
    gap: 4px 24px;
    width: 366px;
    margin-top: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer_navLink {
    width: min(76.2666666667vw, 572px);
    gap: min(0.5333333333vw, 4px) min(3.2vw, 24px);
    margin-top: min(5.3333333333vw, 40px);
  }
}
.p-footer .p-footer_navLink a {
  color: #FFF;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-footer .p-footer_navLink a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer_navLink a {
    font-size: min(2.6666666667vw, 20px);
  }
}
.p-footer .p-footer_navLink a:has(.p-footer_navIcon) {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer .p-footer_navIcon {
    width: min(1.4641288433vw, 20px);
    height: min(1.4641288433vw, 20px);
    margin-right: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer_navIcon {
    width: min(4vw, 20px);
    height: min(4vw, 20px);
    margin-right: min(1.3333333333vw, 10px);
  }
}
.p-footer .p-footer_navIcon-fb {
  background: url("../images/common/ico-footer-fb.png") no-repeat 0 0/contain;
}
.p-footer .p-footer_navIcon-ig {
  background: url("../images/common/ico-footer-ig.png") no-repeat 0 0/contain;
}
.p-footer .p-footer_copy {
  color: #FFF;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-footer .p-footer_copy {
    margin-top: 4px;
    font-size: 12px;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer_copy {
    margin-top: min(0.5333333333vw, 4px);
    font-size: min(2.1333333333vw, 16px);
  }
}

/**
 * Menu Links
 */
.p-menuLinksPC {
  display: flex;
  height: 100%;
  margin-right: 12px;
}
.p-menuLinksPC .p-menuLinks_category {
  position: relative;
  display: grid;
  place-content: center;
  margin: 0 12px;
}
.p-menuLinksPC .p-menuLinks_category.is-open > .p-menuLinks_title {
  color: #505050;
}
.p-menuLinksPC .p-menuLinks_category.is-open > .p-menuLinks_wrap {
  visibility: visible;
  opacity: 1;
}
.p-menuLinksPC .p-menuLinks_title {
  color: #D70C19;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease-out;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-menuLinksPC .p-menuLinks_title:hover {
    color: #505050;
  }
}
.p-menuLinksPC .p-menuLinks_wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 104px 0 40px;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in-out, 0.3s ease-in-out;
  z-index: -1;
}
.p-menuLinksPC .p-menuLinks_list {
  display: grid;
  grid-template-columns: repeat(5, 170px);
  gap: 32px;
  width: 980px;
  margin: 0 auto;
}
.p-menuLinksPC .p-menuLinks_item a {
  display: block;
}
@media (any-hover: hover) {
  .p-menuLinksPC .p-menuLinks_item a img {
    transition: scale 0.3s ease-in-out;
  }
  .p-menuLinksPC .p-menuLinks_item a .p-menuLinks_itemText {
    transition: color 0.3s ease-in-out;
  }
  .p-menuLinksPC .p-menuLinks_item a:hover img {
    scale: 1.05;
  }
  .p-menuLinksPC .p-menuLinks_item a:hover .p-menuLinks_itemText {
    color: #D70C19;
  }
}
.p-menuLinksPC .p-menuLinks_itemImage {
  display: block;
  width: 100%;
  aspect-ratio: 170/112;
  margin-bottom: 10px;
  overflow: hidden;
}
.p-menuLinksPC .p-menuLinks_itemImage img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-menuLinksPC .p-menuLinks_itemText {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

/**
 * Menu Links recruit
 */
.p-menuLinks_recruit {
  position: relative;
  display: flex;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit {
    margin-left: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .p-menuLinks_recruit::before {
    position: absolute;
    top: 50%;
    left: -24px;
    translate: 0 -50%;
    content: "";
    width: 1px;
    height: 40px;
    background: #D9D9D9;
  }
}
@media screen and (min-width: 1025px) {
  .p-menuLinks_recruit .p-menuLinks_title {
    display: grid;
    place-content: center;
    margin-right: 16px;
    color: #D70C19;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 1024px) {
  .p-menuLinks_recruit .p-menuLinks_title {
    display: none;
  }
}
.p-menuLinks_recruit .p-menuLinks_recruit_list {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit .p-menuLinks_recruit_list {
    grid-template-columns: repeat(2, 100px);
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_recruit_list {
    grid-template-columns: repeat(2, min(20.5333333333vw, 154px));
    gap: min(1.0666666667vw, 8px);
  }
}
.p-menuLinks_recruit .p-menuLinks_recruit_item.is-open > .p-menuLinks_btn::before, .p-menuLinks_recruit .p-menuLinks_recruit_item.is-open > .p-menuLinks_btn::after {
  opacity: 1;
  visibility: visible;
}
.p-menuLinks_recruit .p-menuLinks_recruit_item.is-open > .p-menuLinks_btn span {
  border-color: transparent;
}
.p-menuLinks_recruit .p-menuLinks_recruit_item.is-open > .p-menuLinks_btn span::before {
  scale: 3;
  border-radius: 0;
}
.p-menuLinks_recruit .p-menuLinks_recruit_item.is-open > .p-menuLinks_wrap {
  visibility: visible;
  opacity: 1;
}
.p-menuLinks_recruit .p-menuLinks_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_btn::before {
    position: absolute;
    bottom: min(1.3333333333vw, 10px);
    left: 50%;
    translate: -50% 0;
    content: "";
    width: min(2.6666666667vw, 20px);
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: #FFF;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .p-menuLinks_recruit .p-menuLinks_btn::after {
    position: absolute;
    bottom: min(2vw, 15px);
    left: 50%;
    translate: -50% 0;
    rotate: 45deg;
    content: "";
    width: min(0.9333333333vw, 7px);
    height: min(0.9333333333vw, 7px);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
}
.p-menuLinks_recruit .p-menuLinks_btn span {
  position: relative;
  display: grid;
  place-content: center;
  z-index: 0;
  width: 100%;
  border-radius: 100vmax;
  color: #FFF;
  font-weight: 700;
  line-height: 1.4;
  transition: border-color 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit .p-menuLinks_btn span {
    height: 40px;
    font-size: 12px;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_btn span {
    height: min(8vw, 60px);
    font-size: min(2.6666666667vw, 20px);
  }
}
.p-menuLinks_recruit .p-menuLinks_btn span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  scale: 1;
  transition: scale 0.3s ease-in-out, border-radius 0.3s ease-in-out;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .btn_graduate::after {
    border-top: min(0.2666666667vw, 2px) solid #D70C19;
    border-left: min(0.2666666667vw, 2px) solid #D70C19;
  }
}
.p-menuLinks_recruit .btn_graduate span::before {
  background: #D70C19;
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .btn_career::after {
    border-top: min(0.2666666667vw, 2px) solid #000;
    border-left: min(0.2666666667vw, 2px) solid #000;
  }
}
.p-menuLinks_recruit .btn_career span::before {
  background: #404040;
}
.p-menuLinks_recruit .p-menuLinks_wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in-out, 0.3s ease-in-out;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit .p-menuLinks_wrap {
    padding: 104px 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_wrap {
    height: 100dvh;
    max-height: 100dvh;
    padding: min(25.3333333333vw, 190px) min(5.3333333333vw, 40px) min(10.6666666667vw, 80px);
    overflow-y: auto;
    overscroll-behavior-y: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-menuLinks_recruit .p-menuLinks_wrap::-webkit-scrollbar {
    display: none;
  }
}
.p-menuLinks_recruit .p-menuLinks_list {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit .p-menuLinks_list {
    grid-template-columns: repeat(5, 1fr);
    gap: min(2.3426061493vw, 32px);
    width: min(100%, 980px);
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(4.2666666667vw, 32px) min(3.2vw, 24px);
    overflow-y: auto;
    overscroll-behavior-y: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-menuLinks_recruit .p-menuLinks_list::-webkit-scrollbar {
    display: none;
  }
}
.p-menuLinks_recruit .p-menuLinks_item a {
  display: block;
}
@media (any-hover: hover) {
  .p-menuLinks_recruit .p-menuLinks_item a img {
    transition: scale 0.3s ease-in-out;
  }
  .p-menuLinks_recruit .p-menuLinks_item a .p-menuLinks_itemText {
    transition: color 0.3s ease-in-out;
  }
  .p-menuLinks_recruit .p-menuLinks_item a:hover img {
    scale: 1.05;
  }
  .p-menuLinks_recruit .p-menuLinks_item a:hover .p-menuLinks_itemText {
    color: #D70C19;
  }
}
.p-menuLinks_recruit .p-menuLinks_itemImage {
  display: block;
  width: 100%;
  aspect-ratio: 170/112;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit .p-menuLinks_itemImage {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_itemImage {
    margin-bottom: min(1.3333333333vw, 10px);
  }
}
.p-menuLinks_recruit .p-menuLinks_itemImage img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-menuLinks_recruit .p-menuLinks_itemText {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-menuLinks_recruit .p-menuLinks_itemText {
    font-size: clamp(11px, 0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .p-menuLinks_recruit .p-menuLinks_itemText {
    font-size: clamp(10px, 2.2666666667vw, 20px);
  }
}

@media screen and (min-width: 768px) {
  .p-container_company {
    margin-bottom: min(1.1713030747vw, 16px);
    padding-top: min(10.541727672vw, 144px);
  }
}
@media screen and (max-width: 767px) {
  .p-container_company {
    margin-bottom: min(2.1333333333vw, 16px);
    padding-top: min(28.5333333333vw, 214px);
  }
}

@media screen and (min-width: 768px) {
  .p-company_contents {
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_contents {
    margin-bottom: min(21.3333333333vw, 160px);
  }
}

.p-company_title {
  margin: 0 auto;
  color: #D70C19;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-company_title {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_title {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(8.5333333333vw, 64px);
  }
}

.p-company_title_en {
  display: block;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-company_title_en {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_title_en {
    margin-bottom: min(1.6vw, 12px);
    font-size: min(4.5333333333vw, 34px);
  }
}

.p-company_title_ja {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-company_title_ja {
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_title_ja {
    font-size: min(8vw, 60px);
  }
}

.p-company_lead {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-company_lead {
    width: min(71.7423133236vw, 980px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_lead {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(8.5333333333vw, 64px);
  }
}

.p-company_lead_head {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-company_lead_head {
    margin-bottom: min(1.1713030747vw, 16px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_lead_head {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(4.5333333333vw, 34px);
  }
}

.p-company_lead_text {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-company_lead_text {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_lead_text {
    font-size: min(3.2vw, 24px);
  }
}
.p-company_lead_text + .p-company_lead_text {
  margin-top: 1.8em;
}

.p-company_lead_annotation {
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-company_lead_annotation {
    margin-top: min(1.1713030747vw, 16px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_lead_annotation {
    margin-top: min(2.1333333333vw, 16px);
    font-size: min(2.4vw, 18px);
  }
}

.p-company_keywords {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-company_keywords {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_keywords {
    gap: min(5.3333333333vw, 40px);
  }
}

@media screen and (min-width: 768px) {
  .p-contents_text + .p-company_keywords {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-contents_text + .p-company_keywords {
    margin-top: min(5.3333333333vw, 40px);
  }
}

.p-company_keyword {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-company_keyword {
    grid-template-columns: 1fr min(22.6939970717vw, 310px);
    gap: min(1.756954612vw, 24px) min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword {
    grid-template-columns: 1fr min(58.4vw, 438px);
    gap: min(4.2666666667vw, 32px) min(5.3333333333vw, 40px);
  }
}

.p-company_keyword_img {
  grid-column: 1/3;
  grid-row: 1/2;
}
.p-company_keyword_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_img {
    aspect-ratio: 450/277;
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_img {
    aspect-ratio: 670/412;
  }
}

.p-company_keyword_head {
  grid-column: 1/2;
  grid-row: 2/4;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_head {
    font-size: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_head {
    font-size: min(8.5333333333vw, 64px);
  }
}

.p-company_keyword_text {
  grid-column: 2/3;
  grid-row: 2/3;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_text {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_text {
    font-size: min(3.2vw, 24px);
  }
}

.p-company_keyword_link {
  grid-column: 2/3;
  grid-row: 3/4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_link {
    padding-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_link {
    padding-bottom: min(2.1333333333vw, 16px);
  }
}
@media (any-hover: hover) {
  .p-company_keyword_link .p-company_keyword_link_text {
    transition: color 0.3s ease-in-out;
  }
  .p-company_keyword_link .p-company_keyword_link_icon {
    transition: translate 0.3s ease-in-out;
  }
  .p-company_keyword_link:hover .p-company_keyword_link_text {
    color: #D70C19;
  }
  .p-company_keyword_link:hover .p-company_keyword_link_icon {
    translate: 4px 0;
  }
}

.p-company_keyword_link_text {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_link_text {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_link_text {
    font-size: min(3.2vw, 24px);
  }
}

.p-company_keyword_link_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_link_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_link_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.p-company_keyword_link_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-company_keyword_link_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-company_keyword_link_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

.p-recruit_kv {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit_kv {
    height: 100vh;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .p-recruit_kv {
    aspect-ratio: 750/1372;
  }
}
@media screen and (max-width: 480px) {
  .p-recruit_kv {
    height: 100dvh;
  }
}
.p-recruit_kv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit_kv::before {
    width: 32.6500732064vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_kv::before {
    width: min(33.3333333333vw, 250px);
  }
}
.p-recruit_kv::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit_kv::after {
    width: calc(100% - 32.6500732064vw);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_kv::after {
    width: calc(100% - min(33.3333333333vw, 250px));
  }
}

.p-recruit_kv_textarea {
  margin-top: auto;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-recruit_kv_textarea {
    width: min(71.7423133236vw, 980px);
    height: min(42.1669106881vw, 576px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_kv_textarea {
    width: min(84vw, 630px);
    height: min(74.5333333333vw, 559px);
    margin-bottom: min(27.2vw, 204px);
  }
}

@media screen and (min-width: 768px) {
  .p-recruit_kv_textarea_inner {
    width: min(28.2576866764vw, 386px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_kv_textarea_inner {
    width: min(66.6666666667vw, 500px);
  }
}

.p-recruit_kv_title {
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-recruit_kv_title {
    margin-bottom: min(3.513909224vw, 48px);
    font-size: min(3.8067349927vw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_kv_title {
    margin-bottom: min(8.5333333333vw, 64px);
    font-size: min(8.5333333333vw, 64px);
  }
}

.p-recruit_kv_lead {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-recruit_kv_lead {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_kv_lead {
    font-size: min(3.2vw, 24px);
  }
}

.p-recruit_links {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-recruit_links {
    width: min(95.3147877013vw, 1302px);
    margin-top: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_links {
    width: min(89.3333333333vw, 670px);
    margin-top: min(5.3333333333vw, 40px);
  }
}

.p-recruit_link_img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit_link_img {
    aspect-ratio: 635/429;
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_link_img {
    aspect-ratio: 670/452;
    margin-bottom: min(3.2vw, 24px);
  }
}
.p-recruit_link_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-recruit_link_textarea {
    width: min(33.5285505124vw, 458px);
  }
}

.p-recruit_link_title {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-recruit_link_title {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_link_title {
    margin-bottom: min(1.0666666667vw, 8px);
    font-size: min(3.4666666667vw, 26px);
    line-height: 1.6;
  }
}

.p-recruit_link_text {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-recruit_link_text {
    margin-bottom: min(1.1713030747vw, 16px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_link_text {
    margin-bottom: min(3.2vw, 24px);
    font-size: min(3.2vw, 24px);
  }
}

@media screen and (min-width: 768px) {
  .p-container_recruit_sub {
    margin-bottom: min(1.1713030747vw, 16px);
    padding-top: min(10.541727672vw, 144px);
  }
}
@media screen and (max-width: 767px) {
  .p-container_recruit_sub {
    margin-bottom: min(2.1333333333vw, 16px);
    padding-top: min(28.5333333333vw, 214px);
  }
}

@media screen and (min-width: 768px) {
  .p-recruit_contents {
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_contents {
    margin-bottom: min(21.3333333333vw, 160px);
  }
}

.p-recruit_header {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-recruit_header {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_header {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(8.5333333333vw, 64px);
  }
}

.p-recruit_header_inner {
  display: grid;
  grid-template-columns: auto 1fr;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-recruit_header_inner {
    gap: min(0.878477306vw, 12px) min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_header_inner {
    gap: min(2.6666666667vw, 20px) min(2.1333333333vw, 16px);
  }
}

.p-recruit_header_recruit {
  align-self: center;
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-recruit_header_recruit {
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_header_recruit {
    font-size: min(4.2666666667vw, 32px);
  }
}

.p-recruit_header_category {
  align-self: center;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-recruit_header_category {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_header_category {
    font-size: min(3.7333333333vw, 28px);
  }
}

.p-recruit_header_title {
  grid-column: 1/3;
  color: #D70C19;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-recruit_header_title {
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_header_title {
    font-size: min(8vw, 60px);
  }
}

.p-recruit_header_lead {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-recruit_header_lead {
    width: min(71.7423133236vw, 980px);
    margin: min(2.9282576867vw, 40px) auto 0;
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_header_lead {
    margin-top: min(8.5333333333vw, 64px);
    font-size: min(3.2vw, 24px);
  }
}

.p-roundedRectangle_btn {
  position: relative;
  display: block;
  border-radius: 100vmax;
  background: #D9D9D9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn {
    width: min(57.1010248902vw, 780px);
    aspect-ratio: 780/80;
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn {
    width: min(78.6666666667vw, 590px);
    aspect-ratio: 590/120;
  }
}
.c-nextInterview_links_item .p-roundedRectangle_btn {
  background: #FFF;
}
.p-roundedRectangle_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  background: #1A1A1A;
  transition: translate 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn::before {
    translate: min(-3.513909224vw, -48px) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn::before {
    translate: min(-8vw, -30px) 0;
  }
}
@media (any-hover: hover) {
  .p-roundedRectangle_btn:hover::before {
    translate: 0 0;
  }
  .p-roundedRectangle_btn:hover .p-roundedRectangle_btn_icon {
    background: #FFF;
  }
  .p-roundedRectangle_btn:hover .p-roundedRectangle_btn_icon::after {
    border-top-color: #000;
    border-right-color: #000;
  }
}

.p-roundedRectangle_btn_text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn_text {
    align-items: center;
    padding: 0 min(4.39238653vw, 60px);
    gap: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn_text {
    flex-direction: column;
    justify-content: center;
    padding: 0 min(8vw, 60px);
  }
}

.p-roundedRectangle_btn_text_en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn_text_en {
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn_text_en {
    margin-bottom: min(0.5333333333vw, 4px);
    font-size: min(5.3333333333vw, 40px);
  }
}

.p-roundedRectangle_btn_text_ja {
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn_text_ja {
    margin-top: -0.2em;
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn_text_ja {
    font-size: min(3.2vw, 24px);
  }
}

.p-roundedRectangle_btn_icon {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #000;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn_icon {
    right: min(1.1713030747vw, 16px);
    width: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn_icon {
    right: min(2.1333333333vw, 16px);
    width: min(4.2666666667vw, 32px);
  }
}
.p-roundedRectangle_btn_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  rotate: 45deg;
  transition: border-color 0.3s ease-in-out;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-roundedRectangle_btn_icon::after {
    width: min(0.5124450952vw, 7px);
    height: min(0.5124450952vw, 7px);
    margin-left: -1px;
  }
}
@media screen and (max-width: 767px) {
  .p-roundedRectangle_btn_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    margin-left: -1px;
  }
}

/**
 * subNav
 */
/**
 * Font
 */
.u-font-bioSans {
  font-family: bio-sans, sans-serif;
}
@media screen and (max-width: 1024px) {
  .u-font-bioSans {
    -webkit-font-smoothing: antialiased;
  }
}

.u-font-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.u-font-roboto {
  font-family: "Roboto", sans-serif;
}

/**
 * Margin
 */
.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-mt-s {
    margin-top: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mt-s {
    margin-top: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt-s {
    margin-top: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-mt-m {
    margin-top: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mt-m {
    margin-top: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt-m {
    margin-top: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-mt-l {
    margin-top: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mt-l {
    margin-top: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt-l {
    margin-top: 24px !important;
  }
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-mb-s {
    margin-bottom: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mb-s {
    margin-bottom: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mb-s {
    margin-bottom: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-mb-m {
    margin-bottom: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mb-m {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mb-m {
    margin-bottom: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-mb-l {
    margin-bottom: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mb-l {
    margin-bottom: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mb-l {
    margin-bottom: 24px !important;
  }
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-ml-25 {
  margin-left: 25px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-ml-35 {
  margin-left: 35px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-ml-45 {
  margin-left: 45px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-ml-s {
    margin-left: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml-s {
    margin-left: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-ml-s {
    margin-left: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-ml-m {
    margin-left: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml-m {
    margin-left: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-ml-m {
    margin-left: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-ml-l {
    margin-left: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml-l {
    margin-left: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-ml-l {
    margin-left: 24px !important;
  }
}

.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-mr-25 {
  margin-right: 25px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-mr-35 {
  margin-right: 35px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mr-45 {
  margin-right: 45px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-mr-s {
    margin-right: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr-s {
    margin-right: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mr-s {
    margin-right: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-mr-m {
    margin-right: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr-m {
    margin-right: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mr-m {
    margin-right: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-mr-l {
    margin-right: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr-l {
    margin-right: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mr-l {
    margin-right: 24px !important;
  }
}

/**
 * Note
 */
@media screen and (min-width: 768px) {
  .u-note {
    font-size: 1.1rem;
    line-height: 1.7272727273;
  }
}
@media screen and (max-width: 767px) {
  .u-note {
    font-size: 0.9rem;
    line-height: 1.7222222222;
  }
}

/* -----------------------------------------------------------------
   Only
   ----------------------------------------------------------------- */
/*
---
name: Only
category:
  - utility
  - utility/only
---

```html
<p class="u-pc">PCのみ表示</p>
<p class="u-tab">TABLETのみ表示</p>
<p class="u-tab-gt">TABLET以上を表示</p>
<p class="u-tab-lt">TABLET以下を表示</p>
<p class="u-sp">SPのみ表示</p>
```
*/
@media screen and (min-width: 1025px) {
  .u-sp {
    display: none !important;
  }
  .u-tab {
    display: none !important;
  }
  .u-tab-lt {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-sp {
    display: none !important;
  }
  .u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-tab {
    display: none !important;
  }
  .u-tab-gt {
    display: none !important;
  }
  .u-pc {
    display: none !important;
  }
}
/**
 * Padding
 */
.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-100vh {
  padding-top: 100vh !important;
}

@media screen and (min-width: 1025px) {
  .u-pt-s {
    padding-top: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pt-s {
    padding-top: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pt-s {
    padding-top: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pt-m {
    padding-top: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pt-m {
    padding-top: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pt-m {
    padding-top: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pt-l {
    padding-top: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pt-l {
    padding-top: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pt-l {
    padding-top: 24px !important;
  }
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-pb-s {
    padding-bottom: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pb-s {
    padding-bottom: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pb-s {
    padding-bottom: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pb-m {
    padding-bottom: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pb-m {
    padding-bottom: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pb-m {
    padding-bottom: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pb-l {
    padding-bottom: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pb-l {
    padding-bottom: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pb-l {
    padding-bottom: 24px !important;
  }
}

.u-pl-5 {
  padding-left: 5px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-pl-25 {
  padding-left: 25px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-pl-35 {
  padding-left: 35px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pl-45 {
  padding-left: 45px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-pl-s {
    padding-left: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pl-s {
    padding-left: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pl-s {
    padding-left: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pl-m {
    padding-left: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pl-m {
    padding-left: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pl-m {
    padding-left: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pl-l {
    padding-left: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pl-l {
    padding-left: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pl-l {
    padding-left: 24px !important;
  }
}

.u-pr-5 {
  padding-right: 5px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pr-25 {
  padding-right: 25px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pr-35 {
  padding-right: 35px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pr-45 {
  padding-right: 45px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

@media screen and (min-width: 1025px) {
  .u-pr-s {
    padding-right: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pr-s {
    padding-right: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pr-s {
    padding-right: 8px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pr-m {
    padding-right: 32px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pr-m {
    padding-right: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pr-m {
    padding-right: 16px !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-pr-l {
    padding-right: 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pr-l {
    padding-right: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pr-l {
    padding-right: 24px !important;
  }
}

/**
 * Application
 */
@media screen and (min-width: 768px) {
  .page-application .p-contents_text + .p-contents_dl {
    margin-top: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-application .p-contents_text + .p-contents_dl {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-application .page-contact_recipient {
  margin: 0 auto;
  border: 1px solid #D9D9D9;
  background: #F5F5F5;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-application .page-contact_recipient {
    width: min(65.8857979502vw, 900px);
    margin-top: min(2.9282576867vw, 40px);
    margin-bottom: min(2.9282576867vw, 40px);
    padding: min(1.4641288433vw, 20px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-application .page-contact_recipient {
    margin-top: min(5.3333333333vw, 40px);
    margin-bottom: min(5.3333333333vw, 40px);
    padding: min(2.6666666667vw, 20px);
    font-size: min(3.2vw, 24px);
  }
}
.page-application .page-contact_email,
.page-application .page-contact_privacy {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .page-application .page-contact_email:hover,
  .page-application .page-contact_privacy:hover {
    text-decoration: none;
  }
}

/**
 * Article List
 */
.page-article .page-article_kv {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_kv {
    margin-top: 104px;
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_kv {
    margin-top: min(19.2vw, 144px);
  }
}
.page-article .page-article_swiper {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_swiper {
    height: min(43.9238653001vw, 600px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_swiper {
    height: min(133.3333333333vw, 1000px);
  }
}
.page-article .page-article_swiper_wrapper {
  width: auto;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_swiper_wrapper {
    aspect-ratio: 1126/600;
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_swiper_wrapper {
    aspect-ratio: 670/1000;
  }
}
.page-article .page-article_slide {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_slide {
    margin: 0 min(0.878477306vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_slide {
    margin: 0 min(1.6vw, 12px);
  }
}
.page-article .page-article_slide_img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_slide_img {
    width: min(82.4304538799vw, 1126px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_slide_img {
    width: min(89.3333333333vw, 670px);
  }
}
.page-article .page-article_slide_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-article .page-article_slide_inner {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_slide_inner {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_slide_inner {
    width: min(89.3333333333vw, 670px);
  }
}
.page-article .page-article_slide_inner_text {
  display: flex;
  flex-direction: column;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_slide_inner_text {
    width: min(22.3279648609vw, 305px);
    min-height: min(30.7467057101vw, 420px);
    padding: min(2.3426061493vw, 32px) min(2.3426061493vw, 32px) 0;
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_slide_inner_text {
    width: min(78.6666666667vw, 590px);
    min-height: min(56vw, 420px);
    padding: min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) 0;
  }
}
.page-article .page-article_slide_title {
  color: #D70C19;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_slide_title {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_slide_title {
    margin-bottom: min(1.0666666667vw, 8px);
    font-size: min(4.8vw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .page-article .page-article_slide_text {
    font-size: min(1.1713030747vw, 16px);
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_slide_text {
    font-size: min(3.2vw, 24px);
    line-height: 1.6;
  }
}
.page-article .page-article_slide_viewMore {
  margin-top: auto;
  cursor: pointer;
}
.page-article .page-article_navigation {
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_navigation {
    gap: min(1.756954612vw, 24px);
    width: min(71.7423133236vw, 980px);
    margin-top: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_navigation {
    gap: min(3.2vw, 24px);
    width: min(89.3333333333vw, 670px);
    margin-top: min(7.2vw, 54px);
  }
}
.page-article .page-article_controler {
  display: flex;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_controler {
    gap: min(0.5856515373vw, 8px);
    height: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_controler {
    gap: min(1.0666666667vw, 8px);
    height: min(8vw, 60px);
  }
}
.page-article .page-article_prev,
.page-article .page-article_next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  border-radius: 100%;
  background: #000;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_prev,
  .page-article .page-article_next {
    width: min(2.9282576867vw, 40px);
    height: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_prev,
  .page-article .page-article_next {
    width: min(8vw, 60px);
    height: min(8vw, 60px);
  }
}
.page-article .page-article_prev::after,
.page-article .page-article_next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  border-top-style: solid;
  border-left-style: solid;
  border-top-color: #FFF;
  border-left-color: #FFF;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_prev::after,
  .page-article .page-article_next::after {
    width: min(0.9516837482vw, 13px);
    height: min(0.9516837482vw, 13px);
    border-top-width: min(0.2928257687vw, 4px);
    border-left-width: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_prev::after,
  .page-article .page-article_next::after {
    width: min(1.7333333333vw, 13px);
    height: min(1.7333333333vw, 13px);
    border-top-width: min(0.5333333333vw, 4px);
    border-left-width: min(0.5333333333vw, 4px);
  }
}
.page-article .page-article_prev svg,
.page-article .page-article_next svg {
  display: none;
}
@media (any-hover: hover) {
  .page-article .page-article_prev:hover,
  .page-article .page-article_next:hover {
    background: #D70C19;
  }
}
.page-article .page-article_prev::after {
  rotate: -45deg;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_prev::after {
    margin-left: min(0.2196193265vw, 3px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_prev::after {
    margin-left: min(0.2666666667vw, 2px);
  }
}
.page-article .page-article_next::after {
  rotate: 135deg;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_next::after {
    margin-left: min(-0.1464128843vw, -2px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_next::after {
    margin-left: min(-0.1333333333vw, -1px);
  }
}
.page-article .page-article_pagination {
  position: static;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.page-article .swiper-pagination-bullet {
  border-radius: 100vmax;
  background: #D9D9D9;
  opacity: 1;
  transition: width 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-article .swiper-pagination-bullet {
    width: min(1.1713030747vw, 16px);
    height: min(0.439238653vw, 6px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .swiper-pagination-bullet {
    width: min(3.7333333333vw, 28px);
    height: min(1.6vw, 12px);
  }
}
@keyframes activeBar {
  0% {
    translate: -100% 0;
  }
  100% {
    translate: 0 0;
  }
}
.page-article .swiper-pagination-bullet-active {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-article .swiper-pagination-bullet-active {
    width: min(2.635431918vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .swiper-pagination-bullet-active {
    width: min(8.2666666667vw, 62px);
  }
}
.page-article .swiper-pagination-bullet-active::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -100% 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  background: #D70C19;
  animation: activeBar 6.2s linear forwards;
}
@media screen and (min-width: 768px) {
  .page-article .page-magazine {
    margin-top: min(7.3206442167vw, 100px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-magazine {
    margin-top: min(21.3333333333vw, 160px);
  }
}
.page-article .page-magazine_title {
  margin: 0 auto;
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-article .page-magazine_title {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(4.831625183vw, 66px);
    font-size: min(3.8067349927vw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-magazine_title {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(15.2vw, 114px);
    font-size: min(9.8666666667vw, 74px);
  }
}
.page-article .page-article_filter {
  position: relative;
  margin: 0 auto;
  border-style: solid;
  border-color: #D70C19;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter {
    width: min(71.7423133236vw, 980px);
    padding: min(2.3426061493vw, 32px) min(2.196193265vw, 30px);
    border-width: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter {
    width: min(89.3333333333vw, 670px);
    padding: min(7.2vw, 54px) min(4vw, 30px);
    border-width: 5px;
  }
}
.page-article .page-article_filter_title {
  position: absolute;
  bottom: 100%;
  display: grid;
  place-content: center;
  background: #D70C19;
  color: #FFF;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_title {
    left: -10px;
    width: min(10.2489019034vw, 140px);
    aspect-ratio: 140/44;
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter_title {
    left: -5px;
    width: min(25.8666666667vw, 194px);
    aspect-ratio: 194/60;
    font-size: min(4.2666666667vw, 32px);
  }
}
.page-article .page-article_filter_body {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_body {
    gap: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter_body {
    gap: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_list {
    display: grid;
    grid-template-columns: min(5.8565153734vw, 80px) 1fr;
    gap: min(1.756954612vw, 24px);
  }
}
.page-article .page-article_filter_list_head {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_list_head {
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter_list_head {
    margin-bottom: min(1.0666666667vw, 8px);
    font-size: min(2.6666666667vw, 20px);
  }
}
.page-article .page-article_filter_list_detail {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_list_detail {
    grid-template-columns: repeat(7, 1fr);
    gap: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter_list_detail {
    grid-template-columns: repeat(3, 1fr);
    gap: min(1.0666666667vw, 8px) min(1.3333333333vw, 10px);
  }
}
.page-article .page-article_filter_list_detail_item {
  display: grid;
  align-items: center;
  border-radius: 100vmax;
  border: 1px solid #000;
  background: #F5F5F5;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
  transition: border-color 0.2s ease-out, background 0.2s ease-out, color 0.2s ease-out;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_list_detail_item {
    grid-template-columns: min(2.1333333333vw, 16px) 1fr;
    padding: min(0.1464128843vw, 2px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter_list_detail_item {
    grid-template-columns: min(3.2vw, 24px) 1fr;
    padding: min(0.4vw, 3px);
    font-size: min(2.2666666667vw, 17px);
  }
}
.page-article .page-article_filter_list_detail_item .ico-check {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #000;
  transition: background 0.2s ease-out;
}
.page-article .page-article_filter_list_detail_item .ico-check::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  pointer-events: none;
  margin-top: -1px;
  border-bottom-style: solid;
  border-bottom-color: #FFF;
  border-left-style: solid;
  border-left-color: #FFF;
  rotate: -45deg;
  transition: border-color 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_filter_list_detail_item .ico-check::after {
    width: min(0.5856515373vw, 8px);
    height: min(0.3660322108vw, 5px);
    border-bottom-width: min(0.1464128843vw, 2px);
    border-left-width: min(0.1464128843vw, 2px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_filter_list_detail_item .ico-check::after {
    width: min(1.6vw, 12px);
    height: min(0.9333333333vw, 7px);
    border-bottom-width: min(0.4vw, 3px);
    border-left-width: min(0.4vw, 3px);
  }
}
@media (any-hover: hover) {
  .page-article .page-article_filter_list_detail_item:hover {
    border-color: #D9D9D9;
    background: #FFF;
    color: #D9D9D9;
  }
  .page-article .page-article_filter_list_detail_item:hover .ico-check {
    background: #D9D9D9;
  }
  .page-article .page-article_filter_list_detail_item:hover .ico-check::after {
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}
.page-article .page-article_filter_list_detail_item.is-graduate {
  border-color: #D70C19;
  background: #D70C19;
  color: #FFF;
}
.page-article .page-article_filter_list_detail_item.is-graduate .ico-check {
  background: #FFF;
}
.page-article .page-article_filter_list_detail_item.is-graduate .ico-check::after {
  border-bottom-color: #D70C19;
  border-left-color: #D70C19;
}
@media (any-hover: hover) {
  .page-article .page-article_filter_list_detail_item.is-graduate:hover {
    border-color: #D9D9D9;
    background: #FFF;
    color: #D9D9D9;
  }
  .page-article .page-article_filter_list_detail_item.is-graduate:hover .ico-check {
    background: #D9D9D9;
  }
  .page-article .page-article_filter_list_detail_item.is-graduate:hover .ico-check::after {
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}
.page-article .page-article_filter_list_detail_item.is-career {
  border-color: #404040;
  background: #404040;
  color: #FFF;
}
.page-article .page-article_filter_list_detail_item.is-career .ico-check {
  background: #FFF;
}
.page-article .page-article_filter_list_detail_item.is-career .ico-check::after {
  border-bottom-color: #404040;
  border-left-color: #404040;
}
@media (any-hover: hover) {
  .page-article .page-article_filter_list_detail_item.is-career:hover {
    border-color: #D9D9D9;
    background: #FFF;
    color: #D9D9D9;
  }
  .page-article .page-article_filter_list_detail_item.is-career:hover .ico-check {
    background: #D9D9D9;
  }
  .page-article .page-article_filter_list_detail_item.is-career:hover .ico-check::after {
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}
.page-article .page-article_filter_list_detail_item.is-off, .page-article .page-article_filter_list_detail_item.is-out {
  border-color: #D9D9D9;
  background: #FFF;
  color: #D9D9D9;
}
.page-article .page-article_filter_list_detail_item.is-off .ico-check, .page-article .page-article_filter_list_detail_item.is-out .ico-check {
  background: #D9D9D9;
}
.page-article .page-article_filter_list_detail_item.is-off .ico-check::after, .page-article .page-article_filter_list_detail_item.is-out .ico-check::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.page-article .page-article_list {
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_list {
    margin-top: min(-8.78477306vw, -120px);
    padding-top: min(18.1551976574vw, 248px);
    padding-bottom: min(11.7130307467vw, 160px);
    scroll-margin-top: min(-8.0527086384vw, -110px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_list {
    margin-top: -185px;
    padding-top: 273px;
    padding-bottom: min(21.3333333333vw, 160px);
    scroll-margin-top: min(-21.3333333333vw, -160px);
  }
}
.page-article .c-article_card.is-hidden {
  display: none;
}
.page-article .page-article_viewMore {
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_viewMore {
    margin-top: min(4.6852122987vw, 64px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_viewMore {
    margin-top: min(8.5333333333vw, 64px);
  }
}
.page-article .page-article_viewMore .c-viewMore_icon {
  rotate: 90deg;
}
.page-article .page-article_viewMore.is-hidden {
  display: none;
}
.page-article .page-article_list_sort_wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_list_sort_wrap {
    gap: min(0.5856515373vw, 8px);
    width: min(71.7423133236vw, 980px);
    margin-bottom: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_list_sort_wrap {
    gap: min(1.0666666667vw, 8px);
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(4.2666666667vw, 32px);
  }
}
.page-article .page-article_list_sort {
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_list_sort {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_list_sort {
    font-size: min(3.2vw, 24px);
  }
}
.page-article .page-article_list_sort.is-active {
  color: #000;
  pointer-events: none;
}
.page-article .page-article_list_sort:not(.is-active) {
  color: #AAAAAA;
  cursor: pointer;
}
@media (any-hover: hover) {
  .page-article .page-article_list_sort:not(.is-active):hover {
    color: #000;
  }
}
.page-article .page-article_list_sort.sort_icon {
  aspect-ratio: 18/16;
  background: url("../images/common/ico_sort.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .page-article .page-article_list_sort.sort_icon {
    width: min(1.317715959vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .page-article .page-article_list_sort.sort_icon {
    width: min(3.3333333333vw, 25px);
  }
}

/**
 * Career
 */
@media screen and (min-width: 768px) {
  .page-career .p-recruit_kv {
    background: url("../images/career/kv.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-career .p-recruit_kv {
    background: url("../images/career/sp/kv.jpg") no-repeat center center/cover;
  }
}
.page-career .p-recruit_kv::before {
  background: rgba(64, 64, 64, 0.8);
}
@media screen and (min-width: 768px) {
  .page-career .p-recruit_link {
    display: flex;
    align-items: center;
    gap: min(3.6603221083vw, 50px);
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-career .p-recruit_link {
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
@media screen and (min-width: 768px) {
  .page-career .p-recruit_link_img {
    width: min(46.486090776vw, 635px);
    margin-bottom: 0;
  }
}

/**
 * Careerdesign
 */
.page-careerdesign .page-contents {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-careerdesign .page-contents {
    width: min(65.8857979502vw, 900px);
    margin-top: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerdesign .page-contents {
    width: min(89.3333333333vw, 670px);
    margin-top: min(16vw, 120px);
  }
}
.page-careerdesign .page-contents .p-contents_subhead {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .page-careerdesign .p-contents_subhead {
    margin-bottom: min(3.2vw, 24px);
  }
}
.page-careerdesign .page-contents_schedule .p-contents_dl_item_title {
  display: grid;
  grid-template-columns: auto 1fr;
}
.page-careerdesign .page-contents_schedule .p-contents_dl_item_title .schedule_time {
  grid-column: 1/3;
}
.page-careerdesign .page-features {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-careerdesign .page-features {
    grid-template-columns: repeat(3, 1fr);
    gap: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerdesign .page-features {
    gap: min(2.1333333333vw, 16px);
  }
}
.page-careerdesign .page-feature {
  border-left: 2px solid #D70C19;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-careerdesign .page-feature {
    padding: min(0.2928257687vw, 4px) 0 min(0.2928257687vw, 4px) min(1.317715959vw, 18px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerdesign .page-feature {
    padding: min(1.0666666667vw, 8px) 0 min(1.0666666667vw, 8px) min(3.4666666667vw, 26px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-careerdesign .page-schedule_note {
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-careerdesign .page-schedule_note {
    margin-top: min(1.756954612vw, 24px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerdesign .page-schedule_note {
    margin-top: min(5.3333333333vw, 40px);
    font-size: min(2.4vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .page-careerdesign .page-entryBtn {
    margin-top: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerdesign .page-entryBtn {
    margin-top: min(16vw, 120px);
  }
}
.page-careerdesign .page-entryBtn_text {
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-careerdesign .page-entryBtn_text {
    margin-bottom: min(1.1713030747vw, 16px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-careerdesign .page-entryBtn_text {
    margin-bottom: min(4.2666666667vw, 32px);
    font-size: min(3.2vw, 24px);
  }
}
.page-careerdesign .p-roundedRectangle_btn {
  margin: 0 auto;
}

/**
 * Company
 */
.page-company .page-slogan {
  display: grid;
  place-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-company .page-slogan {
    aspect-ratio: 940/300;
  }
}
@media screen and (max-width: 767px) {
  .page-company .page-slogan {
    width: min(78.6666666667vw, 590px);
    aspect-ratio: 590/300;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .page-company .page-slogan img {
    width: min(43.1918008785vw, 590px);
  }
}
@media screen and (max-width: 767px) {
  .page-company .page-slogan img {
    width: min(78.6666666667vw, 590px);
  }
}
@media screen and (min-width: 768px) {
  .page-company .p-contents_dl {
    margin-bottom: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-company .p-contents_dl {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.page-company .p-contents_dl_item_description .establishment {
  margin-top: 1.6em;
}
.page-company .p-contents_dl_item_description .histories {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
}

/**
 * Compatibility (welfare)
 */
@media screen and (min-width: 768px) {
  .page-compatibility .p-contents_subhead {
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .p-contents_subhead {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-graph_description {
    margin-top: min(3.2vw, 24px);
    color: #8C8F90;
    font-size: 0.9rem;
  }
  .page-compatibility .page-graph_description .ico-pinch {
    background: url("../images/workstyle/compatibility/ico-pinch.png") no-repeat center center/contain;
    background-size: contain;
    display: inline-block;
    height: 16px;
    margin-right: 7px;
    vertical-align: bottom;
    width: 13px;
  }
}
.page-compatibility .page-authentication {
  display: grid;
  align-self: center;
  border: 1px solid #ECECEC;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-authentication {
    grid-template-columns: min(7.3206442167vw, 100px) 1fr;
    gap: min(2.9282576867vw, 40px);
    padding: min(0.7320644217vw, 10px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-authentication {
    grid-template-columns: min(24vw, 180px) 1fr;
    gap: min(4vw, 30px);
    padding: min(4vw, 30px);
  }
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-authentication:first-of-type {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-authentication:first-of-type {
    margin-top: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-authentication + .page-authentication {
    margin-top: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-authentication + .page-authentication {
    margin-top: min(3.2vw, 24px);
  }
}
.page-compatibility .page-authentication .page-authentication_text {
  align-self: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-authentication .page-authentication_text {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-authentication .page-authentication_text {
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-compatibility .page-support_img {
  border: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-support_img {
    padding: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-support_img {
    padding: min(2.6666666667vw, 20px);
  }
}
.page-compatibility .page-other_support_head {
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-other_support_head {
    margin-top: min(2.9282576867vw, 40px);
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-other_support_head {
    margin-top: min(5.3333333333vw, 40px);
    margin-bottom: min(2.6666666667vw, 20px);
    font-size: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-other_support_list {
    display: flex;
    flex-wrap: wrap;
    gap: min(0.7320644217vw, 10px);
    margin-bottom: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-other_support_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(1.3333333333vw, 10px);
    width: min(78.6666666667vw, 590px);
    margin: 0 auto min(1.3333333333vw, 10px);
  }
}
.page-compatibility .page-other_support_list_item {
  border-radius: 100vmax;
  border: 1px solid #000;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-other_support_list_item {
    padding: min(1.0980966325vw, 15px) min(4.7584187408vw, 65px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-other_support_list_item {
    display: grid;
    place-content: center;
    height: min(8vw, 60px);
    font-size: min(2.6666666667vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-other_support_list_item:nth-child(5) {
    grid-column: 1/3;
  }
}
.page-compatibility .page-other_support_note {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-other_support_note {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-other_support_note {
    width: min(78.6666666667vw, 590px);
    margin: 0 auto;
  }
}
.page-compatibility .page-banner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-compatibility .page-banner {
    width: min(71.7423133236vw, 980px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-compatibility .page-banner {
    width: min(89.3333333333vw, 670px);
    margin-top: min(10.6666666667vw, 80px);
  }
}
.page-compatibility .page-banner_link {
  display: block;
}
@media (any-hover: hover) {
  .page-compatibility .page-banner_link {
    transition: opacity 0.3s ease-in-out;
  }
  .page-compatibility .page-banner_link:hover {
    opacity: 0.8;
  }
}

/**
 * CP Message
 */
@media screen and (min-width: 768px) {
  .page-cpmessage .p-hr_kv {
    background: url("../images/career/cpmessage/kv.jpg") no-repeat right top/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-cpmessage .p-hr_kv {
    background: url("../images/career/cpmessage/sp/kv.jpg") no-repeat center top/cover;
  }
}
@media screen and (min-width: 768px) {
  .page-cpmessage .p-hr_persona {
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-cpmessage .p-hr_persona {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-cpmessage .leftImg {
    gap: 0 min(2.9282576867vw, 40px);
  }
}
.page-cpmessage .leftImg .p-contents_img {
  grid-column: 1/2;
  grid-row: 1/4;
}
.page-cpmessage .leftImg .p-contents_text:nth-of-type(1) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.page-cpmessage .leftImg .p-contents_text:nth-of-type() {
  grid-column: 2/3;
  grid-row: 2/3;
}
.page-cpmessage .leftImg .p-contents_text:nth-of-type(3) {
  grid-column: 2/3;
  grid-row: 3/4;
}

/**
 * ESG
 */
.page-esg .page-esgPoint {
  position: relative;
  z-index: 1;
  border: 1px solid #E60000;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint {
    margin-top: min(2.9282576867vw, 40px);
    margin-bottom: 90px;
    padding: min(2.9282576867vw, 40px) min(2.9282576867vw, 40px) min(4.7584187408vw, 65px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint {
    margin-top: min(5.3333333333vw, 40px);
    margin-bottom: min(12vw, 90px);
    padding: 0 min(5.3333333333vw, 40px) min(13.3333333333vw, 75px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint:before, .page-esg .page-esgPoint:after {
    content: "";
    display: block;
    border-bottom: 1px solid #E60000;
    background: #fff;
    position: absolute;
    left: 50%;
    right: 0;
    bottom: -21px;
    margin: auto;
    width: 170px;
    height: 80px;
    z-index: -1;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint:before, .page-esg .page-esgPoint:after {
    content: "";
    display: block;
    border-bottom: 1px solid #E60000;
    background: #fff;
    position: absolute;
    left: 50%;
    right: 0;
    bottom: -2.9333333333vw;
    margin: auto;
    width: 22.6666666667vw;
    height: 10.6666666667vw;
    z-index: -1;
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint:before {
    transform: translate3d(0, 0, 0) rotate(13deg);
    left: -140px;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint:before {
    transform: translate3d(0, 0, 0) rotate(13deg);
    left: -18.6666666667vw;
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint:after {
    transform: translate3d(0, 0, 0) rotate(-13deg);
    left: 156px;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint:after {
    transform: translate3d(0, 0, 0) rotate(-13deg);
    left: 19.7333333333vw;
  }
}
.page-esg .page-esgPoint_block {
  border-bottom: 1px solid #d70c19;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_block {
    display: flex;
    padding: min(2.196193265vw, 30px) 0 min(2.196193265vw, 30px) min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_block {
    padding: min(10.6666666667vw, 60px) 0;
  }
}
.page-esg .page-esgPoint_blockTitle {
  display: flex;
  color: #FF4350;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockTitle {
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: min(5.8565153734vw, 80px);
    margin-right: min(2.9282576867vw, 40px);
    padding-right: min(2.196193265vw, 30px);
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockTitle {
    align-items: flex-end;
    margin-bottom: min(5.3333333333vw, 30px);
    padding-bottom: min(6vw, 32px);
    border-bottom: 1px solid #ddd;
  }
}
.page-esg .page-esgPoint_blockInitial {
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockInitial {
    display: block;
    font-size: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockInitial {
    margin-right: min(2.6666666667vw, 20px);
    font-size: min(12vw, 75px);
  }
}
.page-esg .page-esgPoint_blockText {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockText {
    writing-mode: vertical-rl;
    font-size: min(1.2445095168vw, 17px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockText {
    margin-bottom: 0.2em;
    font-size: min(4vw, 24px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockBody {
    flex-grow: 1;
    margin-right: min(1.4641288433vw, 20px);
    padding-top: min(2.196193265vw, 30px);
    padding-bottom: min(2.196193265vw, 30px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockList + .c-annotation {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockList + .c-annotation {
    margin-top: min(8vw, 60px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockListItem {
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockListItem {
    font-size: min(3.7333333333vw, 21px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockListItem + .page-esgPoint_blockListItem {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockListItem + .page-esgPoint_blockListItem {
    margin-top: min(8vw, 45px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemWrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemWrapper {
    margin-top: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemInner {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemInner {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemInner + .page-esgPoint_itemInner {
    margin-top: min(2.1333333333vw, 16px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemInner-one {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemInner-one {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemInner-three {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemInner-three {
    width: 100%;
  }
}
.page-esg .page-esgPoint_itemTitleSub {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  background: #ECECEC;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemTitleSub {
    min-height: 48px;
    padding-top: min(0.5124450952vw, 7px);
    padding-bottom: min(0.5124450952vw, 7px);
    font-size: clamp(10px, 1.0248901903vw, 14px);
  }
  .page-esg .page-esgPoint_itemTitleSub .sp-only {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemTitleSub {
    padding-top: min(2.1333333333vw, 16px);
    padding-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 18px);
  }
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemTitleSub-three {
    border-radius: 25px;
    padding: 6px 12px;
  }
}
.page-esg .page-esgPoint_itemTextSub {
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_itemTextSub {
    font-size: 1.3rem;
    line-height: 2;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_itemTextSub {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.page-esg .page-esgPoint_blockFooter {
  font-weight: 700;
  color: #D70C19;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_blockFooter {
    font-size: min(1.3909224012vw, 19px);
    line-height: 2;
    letter-spacing: 0.1em;
    margin: 24px 0 0 -12px;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_blockFooter {
    font-size: min(4.2666666667vw, 24px);
    line-height: 1.6875;
    letter-spacing: 0.06em;
    margin: 24px 0 0;
  }
}
.page-esg .page-esgPoint_boxText {
  display: grid;
  place-content: center;
  background: #f7aeae;
  text-align: center;
  color: #D70C19;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .page-esg .page-esgPoint_boxText {
    height: 90px;
    line-height: 90px;
    font-size: min(1.3909224012vw, 19px);
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 1024px) {
  .page-esg .page-esgPoint_boxText {
    height: min(19.0666666667vw, 107px);
    font-size: min(3.7333333333vw, 21px);
    letter-spacing: 0.06em;
    margin: 0 auto;
  }
}
.page-esg .page-promotion_system_img {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-esg .page-promotion_system_img {
    aspect-ratio: 940/320;
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-promotion_system_img {
    width: min(78.6666666667vw, 590px);
    aspect-ratio: 590/760;
    margin: min(5.3333333333vw, 40px) auto 0;
  }
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow {
    width: min(78.6666666667vw, 590px);
    margin: min(5.3333333333vw, 40px) auto 0;
  }
}
.page-esg .page-flow_title {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow_title {
    margin-bottom: min(1.0248901903vw, 14px);
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow_title {
    margin-bottom: min(4vw, 30px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-esg .page-flow_items {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow_items {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow_items {
    gap: min(5.3333333333vw, 40px);
  }
}
.page-esg .page-flow_item {
  position: relative;
  border: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow_item {
    aspect-ratio: 286/260;
    padding: min(2.196193265vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow_item {
    display: grid;
    grid-template-columns: min(26.6666666667vw, 200px) 1fr;
    gap: min(4vw, 30px);
    padding: min(4vw, 30px);
  }
}
.page-esg .page-flow_item:not(:last-child)::after {
  position: absolute;
  content: "";
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow_item:not(:last-child)::after {
    top: 50%;
    left: 100%;
    translate: 0 -50%;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: min(2.9282576867vw, 40px);
    height: min(4.39238653vw, 60px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow_item:not(:last-child)::after {
    top: 100%;
    left: 50%;
    translate: -50% 0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: min(8vw, 60px);
    height: min(5.3333333333vw, 40px);
  }
}
.page-esg .page-flow_item_head {
  display: grid;
  place-content: center;
  color: #D70C19;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow_item_head {
    height: min(5.1244509517vw, 70px);
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.756954612vw, 24px);
    font-weight: 500;
    line-height: 1.46;
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow_item_head {
    font-size: min(3.7333333333vw, 28px);
    font-weight: 700;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .page-esg .page-flow_item_text {
    font-size: min(1.0980966325vw, 15px);
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-flow_item_text {
    align-self: center;
    font-size: min(3.2vw, 24px);
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .page-esg .page-green {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green {
    width: min(78.6666666667vw, 590px);
    margin: min(5.3333333333vw, 40px) auto 0;
  }
}
.page-esg .page-green_head {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-esg .page-green_head {
    margin-bottom: min(1.0248901903vw, 14px);
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green_head {
    margin-bottom: min(3.2vw, 24px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-esg .page-green_lead {
  display: grid;
  place-content: center;
  width: 100%;
  border-radius: 100vmax;
  border: 1px solid #000;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-esg .page-green_lead {
    height: min(2.3426061493vw, 32px);
    margin-bottom: min(1.0248901903vw, 14px);
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green_lead {
    height: min(13.3333333333vw, 100px);
    margin-bottom: min(3.2vw, 24px);
    font-size: min(3.2vw, 24px);
  }
}
.page-esg .page-green_image {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-esg .page-green_image {
    margin-bottom: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green_image {
    margin-bottom: min(3.2vw, 24px);
  }
}
.page-esg .page-green_project {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background: #ECECEC;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-esg .page-green_project {
    height: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green_project {
    height: min(24vw, 180px);
  }
}
.page-esg .page-green_project_head {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-esg .page-green_project_head {
    margin-bottom: min(0.7320644217vw, 10px);
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green_project_head {
    margin-bottom: min(1.3333333333vw, 10px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-esg .page-green_project_text {
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-esg .page-green_project_text {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-esg .page-green_project_text {
    font-size: min(2.6666666667vw, 20px);
  }
}

/**
 * FAQ
 */
.page-faq .page-faq_list {
  margin: 0 auto;
  border-top: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list {
    width: min(71.7423133236vw, 980px);
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
.page-faq .page-faq_list_details {
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_details {
    padding-top: min(2.3426061493vw, 32px);
    padding-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_details {
    padding-top: min(4.2666666667vw, 32px);
    padding-bottom: min(4.2666666667vw, 32px);
  }
}
.page-faq .page-faq_list_details.is-open .page-faq_list_arrow {
  rotate: -90deg;
}
.page-faq .page-faq_list_summary {
  list-style: none;
  display: grid;
  align-items: center;
  transition: color 0.3s ease-in-out;
}
.page-faq .page-faq_list_summary::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_summary {
    grid-template-columns: min(2.9282576867vw, 40px) 1fr 20px;
    gap: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_summary {
    grid-template-columns: min(8vw, 60px) 1fr min(4.2666666667vw, 32px);
    gap: min(3.2vw, 24px);
  }
}
@media (any-hover: hover) {
  .page-faq .page-faq_list_summary:hover {
    color: #D70C19;
  }
}
.page-faq .page-faq_list_number {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_number {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_number {
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-faq .page-faq_list_title {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_title {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_title {
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-faq .page-faq_list_arrow {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #000;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_arrow {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_arrow {
    width: min(4.2666666667vw, 32px);
  }
}
.page-faq .page-faq_list_arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_arrow::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.page-faq .page-faq_list_arrow {
  rotate: 90deg;
  transition: rotate 0.3s ease-out;
}
.page-faq .page-faq_list_content {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-faq .page-faq_list_text {
    margin-top: min(0.5856515373vw, 8px);
    margin-left: min(4.6852122987vw, 64px);
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .page-faq .page-faq_list_text {
    margin-top: min(1.0666666667vw, 8px);
    margin-left: min(11.2vw, 84px);
    font-size: min(3.2vw, 24px);
    line-height: 1.8;
  }
}
.page-faq .page-faq_list_text a {
  text-decoration: underline;
}

/**
 * History
 */
.page-history .p-company_contents {
  background: #F5F5F5;
}
.page-history .page-contents {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-history .page-contents {
    width: min(71.7423133236vw, 980px);
    padding: min(5.8565153734vw, 80px) 0 min(7.3206442167vw, 100px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-contents {
    width: min(89.3333333333vw, 670px);
    padding: min(10.6666666667vw, 80px) 0 min(13.3333333333vw, 100px);
  }
}
.page-history .page-detail:last-child {
  position: relative;
}
.page-history .page-detail:last-child::after {
  position: absolute;
  top: 100%;
  content: "";
  width: 2px;
  margin-left: -1px;
  background-position: center center;
  background-repeat: repeat-y;
  background-size: 2px 100%;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail:last-child::after {
    left: min(23.5724743777vw, 322px);
    height: min(7.3206442167vw, 100px);
    background-image: repeating-linear-gradient(180deg, #D70C19, #D70C19 min(0.7320644217vw, 10px), #F5F5F5 min(0.7320644217vw, 10px), #F5F5F5 min(1.4641288433vw, 20px));
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail:last-child::after {
    left: min(8vw, 60px);
    height: min(13.3333333333vw, 100px);
    background-image: repeating-linear-gradient(180deg, #D70C19, #D70C19 min(1.3333333333vw, 10px), #F5F5F5 min(1.3333333333vw, 10px), #F5F5F5 min(2.6666666667vw, 20px));
  }
}
.page-history .page-detail_head {
  background: #D70C19;
  color: #FFF;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head {
    display: flex;
    align-items: center;
    height: min(7.3206442167vw, 100px);
    padding: 0 min(2.9282576867vw, 40px);
    border-radius: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head {
    padding: min(5.3333333333vw, 40px) min(3.2vw, 24px);
    border-radius: min(1.0666666667vw, 8px);
  }
}
@media (any-hover: hover) {
  .page-history .page-detail_head:has(.page-detail_head_viewMore:hover) {
    background: #000;
  }
}
.page-history .page-detail_head_year {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head_year {
    flex-shrink: 0;
    margin-right: min(1.756954612vw, 24px);
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head_year {
    display: block;
    margin-bottom: min(1.0666666667vw, 8px);
    font-size: min(7.2vw, 54px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head_year span {
    margin-left: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head_year span {
    margin-left: min(0.5333333333vw, 4px);
  }
}
.page-history .page-detail_head_title {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head_title {
    margin-right: min(1.756954612vw, 24px);
    font-size: min(1.6105417277vw, 22px);
  }
  .page-history .page-detail_head_title .pc-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head_title {
    display: block;
    font-size: min(4.2666666667vw, 32px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head_viewMore {
    flex-shrink: 0;
    margin-left: auto;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head_viewMore {
    margin-top: min(7.7333333333vw, 58px);
    margin-left: auto;
  }
}
.page-history .page-detail_head_viewMore .c-viewMore_text {
  border-bottom-color: #FFF;
}
.page-history .page-detail_head_viewMore .c-viewMore_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head_viewMore .c-viewMore_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head_viewMore .c-viewMore_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.page-history .page-detail_head_viewMore .c-viewMore_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #D70C19;
  border-right-color: #D70C19;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_head_viewMore .c-viewMore_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_head_viewMore .c-viewMore_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.page-history .page-detail_head_viewMore .c-viewMore_icon::after {
  transition: border-color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .page-history .page-detail_head_viewMore:hover .c-viewMore_text {
    color: #FFF;
  }
  .page-history .page-detail_head_viewMore:hover .c-viewMore_icon::after {
    border-top-color: #000;
    border-right-color: #000;
  }
}
.page-history .page-detail_list {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list {
    padding-top: min(4.6852122987vw, 64px);
    padding-bottom: min(4.0263543192vw, 55px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list {
    padding-top: min(8.5333333333vw, 64px);
    padding-bottom: min(14.9333333333vw, 112px);
  }
}
.page-history .page-detail_list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list::before {
    left: min(23.5724743777vw, 322px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list::before {
    left: min(8vw, 60px);
  }
}
.page-history .page-detail_list_item {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_item {
    grid-template-columns: min(14.6412884334vw, 200px) min(7.3206442167vw, 100px) 1fr;
    gap: 0 min(5.270863836vw, 72px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_item {
    grid-template-columns: min(16vw, 120px) 1fr;
    gap: 0 min(6.9333333333vw, 52px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_item + .page-detail_list_item {
    margin-top: min(4.0263543192vw, 55px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_item + .page-detail_list_item {
    margin-top: min(14.9333333333vw, 112px);
  }
}
.page-history .page-detail_list_head {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  border-radius: 100vmax;
  border: 2px solid #D70C19;
  background: #FFF;
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_head {
    grid-column: 2/3;
    grid-row: 1/2;
    aspect-ratio: 100/40;
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_head {
    aspect-ratio: 120/48;
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-history .page-detail_list_head.is-black {
  border-color: #000;
  color: #000;
}
.page-history .page-detail_list_head::before, .page-history .page-detail_list_head::after {
  position: absolute;
  height: 1px;
  background: #AAA;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_head::before, .page-history .page-detail_list_head::after {
    top: min(1.3909224012vw, 19px);
    width: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_head::before, .page-history .page-detail_list_head::after {
    top: min(2.6666666667vw, 20px);
    width: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_head::before {
    right: calc(100% + min(1.1713030747vw, 16px));
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_head::after {
    left: calc(100% + min(1.1713030747vw, 16px));
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_head::after {
    content: "";
    left: calc(100% + min(2.1333333333vw, 16px));
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_head.is-left::before, .page-history .page-detail_list_head.is-both::before {
    content: "";
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_head.is-right::after, .page-history .page-detail_list_head.is-both::after {
    content: "";
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_description.is-society {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_description.is-society {
    margin-top: min(0.8vw, 6px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_description.is-society:not(:has(span)) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_description.is-society:has(span) + .is-jbic {
    margin-top: min(4.2666666667vw, 32px);
    padding-top: min(4.2666666667vw, 32px);
    border-top: 1px solid #D9D9D9;
  }
}
.page-history .page-detail_list_society {
  display: block;
  color: #AAA;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_society {
    font-size: min(1.0248901903vw, 14px);
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_society {
    font-size: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_society + .page-detail_list_society {
    margin-top: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_society + .page-detail_list_society {
    margin-top: min(4.8vw, 36px);
  }
}
.page-history .page-detail_list_description.is-jbic {
  color: #D70C19;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_description.is-jbic {
    grid-column: 3/4;
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_description.is-jbic {
    grid-column: 2/3;
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-history .page-detail_list_description.is-jbic em {
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_description.is-jbic:nth-child(3) {
    grid-row: 1/2;
    margin-top: min(0.439238653vw, 6px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_description.is-jbic:nth-child(4) {
    grid-row: 2/3;
    margin-top: min(2.5622254758vw, 35px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_description.is-jbic:nth-child(4) {
    margin-top: min(5.6vw, 42px);
  }
}
.page-history .page-detail_list_description.is-jbic.mt0 {
  margin-top: 0;
}
.page-history .page-detail_list_lead {
  color: #000;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_lead {
    margin-top: min(1.1713030747vw, 16px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_lead {
    margin-top: min(3.2vw, 24px);
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_img {
    width: min(25.6222547584vw, 350px);
    margin-top: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_img {
    width: min(63.7333333333vw, 478px);
    margin-top: min(2.1333333333vw, 16px);
  }
}
.page-history .page-detail_list_caption {
  color: #000;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_caption {
    margin-top: min(0.7320644217vw, 10px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_caption {
    margin-top: min(2.1333333333vw, 16px);
    font-size: min(2.4vw, 18px);
  }
}
.page-history .page-detail_list_link {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_link {
    width: min(32.9428989751vw, 450px);
    margin-top: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_link {
    width: min(63.7333333333vw, 478px);
    margin-top: min(2.1333333333vw, 16px);
  }
}
@media (any-hover: hover) {
  .page-history .page-detail_list_link:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-detail_list_viewMore {
    margin-top: min(1.317715959vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-detail_list_viewMore {
    margin-top: min(3.2vw, 24px);
  }
}
.page-history .page-detail_modal_text,
.page-history .page-detail_modal_img,
.page-history .page-detail_modal_caption {
  display: none;
}
.page-history .page-modal {
  position: relative;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal {
    width: min(71.7423133236vw, 980px);
    height: min(39.0922401171vw, 534px);
    padding: min(4.6852122987vw, 64px);
    padding-right: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal {
    width: min(89.3333333333vw, 670px);
    height: min(72.89vh, 1000px);
    padding: min(8.5333333333vw, 64px) min(1.0666666667vw, 8px) min(8.5333333333vw, 64px) min(5.3333333333vw, 40px);
  }
}
.page-history .page-modal .page-modal_inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: #505050 #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-modal_inner {
    padding-right: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-modal_inner {
    padding-right: min(2.9333333333vw, 22px);
  }
}
.page-history .page-modal .page-detail_head_year {
  display: block;
  margin: 0;
  color: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-detail_head_year {
    margin-bottom: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-detail_head_year {
    margin-bottom: min(3.2vw, 24px);
  }
}
.page-history .page-modal .page-detail_head_title {
  display: block;
  color: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-detail_head_title {
    margin-right: 0;
    margin-bottom: min(1.1713030747vw, 16px);
    font-size: min(1.4641288433vw, 20px);
  }
  .page-history .page-modal .page-detail_head_title .pc-none {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-detail_head_title {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-history .page-modal .page-detail_modal_text {
  display: block;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-detail_modal_text {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-detail_modal_text {
    font-size: min(3.2vw, 24px);
  }
}
.page-history .page-modal .page-detail_modal_note {
  display: block;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-detail_modal_note {
    margin-top: min(1.1713030747vw, 16px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-detail_modal_note {
    margin-top: min(2.1333333333vw, 16px);
    font-size: min(2.4vw, 18px);
  }
}
.page-history .page-modal .page-detail_modal_img {
  display: block;
}
.page-history .page-modal .page-detail_modal_caption {
  display: block;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-detail_modal_caption {
    margin-top: min(0.7320644217vw, 10px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-detail_modal_caption {
    margin-top: min(2.1333333333vw, 16px);
    font-size: min(2.4vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-modal_image_wrap {
    width: min(37.4816983895vw, 512px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-modal_image_wrap {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-history .page-modal .page-detail_list_img {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-detail_list_img + .page-detail_list_img {
    margin-top: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-detail_list_img + .page-detail_list_img {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-history .page-modal .page-modal_close {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-modal_close {
    width: min(4.39238653vw, 60px);
    height: min(4.39238653vw, 60px);
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-modal_close {
    width: min(17.0666666667vw, 128px);
    height: min(16vw, 120px);
  }
}
.page-history .page-modal .page-modal_close::before, .page-history .page-modal .page-modal_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  height: 1px;
  background: #000;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-history .page-modal .page-modal_close::before, .page-history .page-modal .page-modal_close::after {
    width: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .page-history .page-modal .page-modal_close::before, .page-history .page-modal .page-modal_close::after {
    width: min(11.2vw, 84px);
  }
}
.page-history .page-modal .page-modal_close::before {
  rotate: 20deg;
}
.page-history .page-modal .page-modal_close::after {
  rotate: -20deg;
}
@media (any-hover: hover) {
  .page-history .page-modal .page-modal_close:hover::before, .page-history .page-modal .page-modal_close:hover::after {
    background: #D70C19;
  }
}
.page-history .c-modal_close {
  display: none;
}

/**
 * HR Message
 */
@media screen and (min-width: 768px) {
  .page-hrmessage .p-hr_kv {
    background: url("../images/newgrad/hrmessage/kv.jpg") no-repeat right center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-hrmessage .p-hr_kv {
    background: url("../images/newgrad/hrmessage/sp/kv.jpg") no-repeat center top/cover;
  }
}

/**
 * Human
 */
@media screen and (max-width: 767px) {
  .page-human .p-company_title_ja {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .page-human .page-content + .page-content {
    margin-top: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-content + .page-content {
    margin-top: min(10.6666666667vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-graph_description {
    margin-top: min(3.2vw, 24px);
    color: #8C8F90;
    font-size: 0.9rem;
  }
  .page-human .page-graph_description .ico-pinch {
    background: url("../images/career/human/ico-pinch.png") no-repeat center center/contain;
    background-size: contain;
    display: inline-block;
    height: 16px;
    margin-right: 7px;
    vertical-align: bottom;
    width: 13px;
  }
}
.page-human .page-tables {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-human .page-tables {
    gap: min(1.756954612vw, 24px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-tables {
    gap: min(3.2vw, 24px);
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-human .page-table {
  border: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-human .page-table {
    display: grid;
    grid-template-columns: min(16.1054172767vw, 220px) 1fr;
    gap: min(2.9282576867vw, 40px) min(2.196193265vw, 30px);
    padding: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-table {
    padding: min(7.4666666667vw, 56px) min(5.3333333333vw, 40px);
  }
}
.page-human .page-table_title {
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-human .page-table_title {
    align-self: center;
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-table_title {
    margin-bottom: min(4vw, 30px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-human .page-table_description {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-human .page-table_description {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-table_description {
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-human .page-overview_img {
    margin-top: min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-overview_img {
    margin-top: min(10.6666666667vw, 80px);
  }
}
.page-human .page-overview_img_caption {
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-human .page-overview_img_caption {
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-overview_img_caption {
    margin-bottom: min(3.2vw, 24px);
    font-size: min(4vw, 30px);
  }
}
.page-human .page-overview_img_caption span {
  display: block;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-human .page-overview_img_caption span {
    margin-top: min(0.5856515373vw, 8px);
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-overview_img_caption span {
    margin-top: min(2.1333333333vw, 16px);
    font-size: min(2.4vw, 18px);
  }
}
.page-human .page-skills_note {
  display: block;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-human .page-skills_note {
    font-size: min(0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-skills_note {
    font-size: min(2.4vw, 18px);
  }
}
.page-human .page-development_img {
  border-top: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-human .page-development_img {
    grid-column: 1/3;
    padding-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-human .page-development_img {
    margin-top: min(5.3333333333vw, 40px);
    padding-top: min(5.3333333333vw, 40px);
  }
}
.page-human .page-development_img_head {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-human .page-development_img_head {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.1713030747vw, 16px);
  }
}
/**
 * Info OB.OG
 */
@media screen and (min-width: 768px) {
  .page-infoob .p-recruit_header {
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-infoob .p-recruit_header {
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
@media screen and (min-width: 768px) {
  .page-infoob .p-recruit_header_lead {
    margin-bottom: min(4.6852122987vw, 64px);
  }
}
@media screen and (max-width: 767px) {
  .page-infoob .p-recruit_header_lead {
    margin-bottom: min(4.6852122987vw, 64px);
  }
}
.page-infoob .p-recruit_header_lead a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page-infoob .p-roundedRectangle_btn {
    margin: min(5.8565153734vw, 80px) auto 0;
  }
}
@media screen and (max-width: 767px) {
  .page-infoob .p-roundedRectangle_btn {
    margin: min(16vw, 120px) auto 0;
  }
}

/**
 * Keyword
 */
.page-keyword .page-environments {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-environments {
    grid-template-columns: min(21.4494875549vw, 293px) min(9.663250366vw, 132px) min(9.663250366vw, 132px) min(21.4494875549vw, 293px);
    grid-template-rows: min(18.4480234261vw, 252px) min(18.4480234261vw, 252px) min(22.1083455344vw, 302px);
    gap: min(2.196193265vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-environments {
    gap: 30px;
    width: min(78.6666666667vw, 590px);
    margin: 0 auto;
  }
}
.page-keyword .page-environments_item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-environments_item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .page-keyword .page-environments_item:nth-child(2) {
    grid-column: 2/4;
    grid-row: 1/2;
  }
  .page-keyword .page-environments_item:nth-child(3) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
  .page-keyword .page-environments_item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .page-keyword .page-environments_item:nth-child(5) {
    grid-column: 2/4;
    grid-row: 2/3;
  }
  .page-keyword .page-environments_item:nth-child(6) {
    grid-column: 4/5;
    grid-row: 2/3;
  }
  .page-keyword .page-environments_item:nth-child(7) {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .page-keyword .page-environments_item:nth-child(8) {
    grid-column: 3/5;
    grid-row: 3/4;
  }
  .page-keyword .page-environments_item:nth-child(n+4)::before {
    position: absolute;
    top: min(-1.0980966325vw, -15px);
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #D9D9D9;
  }
  .page-keyword .page-environments_item:not(:nth-child(3n)):not(:nth-child(8))::after {
    position: absolute;
    top: 0;
    right: min(-1.0980966325vw, -15px);
    content: "";
    width: 1px;
    height: 100%;
    background: #D9D9D9;
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-environments_item:nth-child(n+2)::before {
    position: absolute;
    top: -15px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #D9D9D9;
  }
}
.page-keyword .page-environments_img {
  display: block;
}
.page-keyword .page-environments_img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.page-keyword .page-achievements {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-achievements {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: min(18.4480234261vw, 252px) min(22.1083455344vw, 302px);
    gap: min(2.196193265vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-achievements {
    gap: 30px;
  }
}
.page-keyword .page-achievements_item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-achievements_item:nth-child(1)::after {
    position: absolute;
    top: 0;
    right: min(-1.0980966325vw, -15px);
    content: "";
    width: 1px;
    height: 100%;
    background: #D9D9D9;
  }
  .page-keyword .page-achievements_item:nth-child(3) {
    grid-column: 1/3;
  }
  .page-keyword .page-achievements_item:nth-child(3)::before {
    position: absolute;
    top: min(-1.0980966325vw, -15px);
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #D9D9D9;
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-achievements_item:nth-child(n+2)::before {
    position: absolute;
    top: -15px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #D9D9D9;
  }
}
.page-keyword .page-achievements_img {
  display: block;
}
.page-keyword .page-achievements_img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.page-keyword .page-links {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-links {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-links {
    gap: min(10.6666666667vw, 80px);
  }
}
.page-keyword .page-links_link {
  display: block;
}
@media (any-hover: hover) {
  .page-keyword .page-links_link .page-links_item_img img {
    transition: scale 0.3s ease-in-out;
  }
  .page-keyword .page-links_link .c-viewMore_text {
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
  }
  .page-keyword .page-links_link .c-viewMore_icon {
    transition: translate 0.3s ease-in-out;
  }
  .page-keyword .page-links_link:hover .page-links_item_img img {
    scale: 1.05;
  }
  .page-keyword .page-links_link:hover .c-viewMore_text {
    border-bottom-color: #D70C19;
    color: #D70C19;
  }
  .page-keyword .page-links_link:hover .c-viewMore_icon {
    translate: 4px 0;
  }
}
.page-keyword .page-links_item_head {
  display: flex;
  align-items: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-links_item_head {
    gap: min(1.1713030747vw, 16px);
    margin-bottom: min(1.756954612vw, 24px);
    font-size: min(1.4641288433vw, 20px);
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-links_item_head {
    gap: min(3.2vw, 24px);
    margin-bottom: min(3.2vw, 24px);
    font-size: min(3.4666666667vw, 26px);
    line-height: 1.6;
  }
}
.page-keyword .page-links_item_head span {
  color: #D70C19;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-links_item_head span {
    font-size: min(2.635431918vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-links_item_head span {
    font-size: min(6.1333333333vw, 46px);
  }
}
.page-keyword .page-links_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-keyword .page-links_item_img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-links_item_img {
    aspect-ratio: 450/277;
    margin-bottom: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-links_item_img {
    aspect-ratio: 670/412;
    margin-bottom: min(3.2vw, 24px);
  }
}
.page-keyword .page-links_item_text {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-keyword .page-links_item_text {
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-keyword .page-links_item_text {
    margin-bottom: min(2.6666666667vw, 20px);
    font-size: min(3.4666666667vw, 26px);
  }
}
.page-keyword .page-links_item_viewMore {
  pointer-events: none;
}

/**
 * Links
 */
.page-links .p-recruit_contents {
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-links .p-recruit_contents {
    margin-top: min(4.6852122987vw, 64px);
    padding-top: min(11.7130307467vw, 160px);
    padding-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-links .p-recruit_contents {
    margin-top: min(8.5333333333vw, 64px);
    padding-top: min(21.3333333333vw, 160px);
    padding-bottom: min(21.3333333333vw, 160px);
  }
}
.page-links .c-article_card.is-hidden {
  display: none;
}
.page-links .page-links_viewMore {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-links .page-links_viewMore {
    margin-top: min(4.6852122987vw, 64px);
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .page-links .page-links_viewMore {
    margin-top: min(8.5333333333vw, 64px);
  }
}
.page-links .page-links_viewMore .c-viewMore_icon {
  rotate: 90deg;
}
.page-links .page-links_viewMore.is-hidden {
  display: none;
}

/**
 * Message
 */
@media screen and (min-width: 768px) {
  .page-message .p-container_message {
    margin-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-container_message {
    margin-bottom: min(2.1333333333vw, 16px);
  }
}
.page-message .p-message_kv {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv {
    aspect-ratio: 1366/800;
    max-height: 100vh;
    padding-top: min(10.541727672vw, 144px);
    background: url("../images/message/kv.jpg") no-repeat right center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv {
    display: flex;
    flex-direction: column;
    aspect-ratio: 750/1372;
    padding-top: min(28.5333333333vw, 214px);
    background: url("../images/message/sp/kv.jpg") no-repeat center top/cover;
  }
}
@media screen and (max-width: 440px) {
  .page-message .p-message_kv {
    height: 100svh;
  }
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv_lead {
    width: min(38.7994143485vw, 530px);
    margin-right: 50%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv_lead {
    width: min(76vw, 570px);
    margin-top: auto;
    margin-bottom: min(5.3333333333vw, 40px);
    margin-left: min(5.3333333333vw, 40px);
  }
}
.page-message .p-message_kv_lead_text {
  font-weight: 700;
  line-height: 1.6;
  background: rgba(215, 12, 25, 0.8);
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv_lead_text {
    padding: min(5.8565153734vw, 80px) min(2.9282576867vw, 40px);
    font-size: min(2.0497803807vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv_lead_text {
    padding: min(8vw, 60px) min(5.3333333333vw, 40px);
    font-size: min(4vw, 30px);
  }
}
.page-message .p-message_kv_lead_profile {
  display: grid;
  grid-template-columns: auto 1fr;
  background: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv_lead_profile {
    gap: min(0.7320644217vw, 10px);
    padding: min(2.3426061493vw, 32px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv_lead_profile {
    gap: min(2.1333333333vw, 16px) min(2.6666666667vw, 20px);
    padding: min(4.2666666667vw, 32px) min(5.3333333333vw, 40px);
  }
}
.page-message .p-message_kv_lead_profile_position {
  grid-column: 1/3;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv_lead_profile_position {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv_lead_profile_position {
    font-size: min(2.4vw, 18px);
  }
}
.page-message .p-message_kv_lead_profile_nameJa {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv_lead_profile_nameJa {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv_lead_profile_nameJa {
    font-size: min(4vw, 30px);
  }
}
.page-message .p-message_kv_lead_profile_nameEn {
  align-self: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-message .p-message_kv_lead_profile_nameEn {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_kv_lead_profile_nameEn {
    font-size: min(1.7333333333vw, 13px);
  }
}
@media screen and (min-width: 768px) {
  .page-message .p-message_contents {
    margin-top: min(7.3206442167vw, 100px);
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_contents {
    margin-top: min(21.3333333333vw, 160px);
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
.page-message .p-message_title {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-message .p-message_title {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-message .p-message_title {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(8.5333333333vw, 64px);
  }
}

/**
 * Mission
 */
.page-mission .p-contents_head {
  text-transform: uppercase;
}

/**
 * Newgrad
 */
@media screen and (min-width: 768px) {
  .page-newgrad .p-recruit_kv {
    background: url("../images/newgrad/kv.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-newgrad .p-recruit_kv {
    background: url("../images/newgrad/sp/kv.jpg") no-repeat center center/cover;
  }
}
.page-newgrad .p-recruit_kv::before {
  background: rgba(215, 12, 25, 0.3);
}
@media screen and (min-width: 768px) {
  .page-newgrad .p-recruit_links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.3426061493vw, 32px);
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (min-width: 768px) {
  .page-newgrad .p-recruit_link_text {
    margin-right: min(1.1713030747vw, 16px);
  }
}

/**
 * News
 */
@media screen and (min-width: 768px) {
  .page-news .c-container {
    padding-top: min(10.541727672vw, 144px);
    padding-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-news .c-container {
    padding-top: min(28.5333333333vw, 214px);
    padding-bottom: min(21.3333333333vw, 160px);
  }
}
.page-news .c-title {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-news .c-title {
    width: min(87.8477306003vw, 1200px);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-news .c-title {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(8.5333333333vw, 64px);
  }
}
.page-news .page-filter {
  display: flex;
  align-items: center;
  margin: 0 auto;
  border: 1px solid #D9D9D9;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-news .page-filter {
    width: min(71.7423133236vw, 980px);
    height: 60px;
    margin-bottom: 40px;
    padding: 0 min(1.1713030747vw, 16px);
    border-radius: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-news .page-filter {
    width: min(89.3333333333vw, 670px);
    height: min(10.6666666667vw, 80px);
    margin-bottom: min(8.5333333333vw, 64px);
    padding: 0 min(3.2vw, 24px);
    border-radius: min(1.0666666667vw, 8px);
  }
}
.page-news .page-filter_head {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-news .page-filter_head {
    margin-right: 22px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-news .page-filter_head {
    margin-right: min(2.9333333333vw, 22px);
    font-size: min(3.2vw, 24px);
  }
}
.page-news .page-filter_category {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-news .page-filter_category {
    grid-template-columns: repeat(2, 80px);
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .page-news .page-filter_category {
    grid-template-columns: repeat(2, min(16vw, 120px));
    gap: min(1.0666666667vw, 8px);
  }
}
.page-news .page-filter_category_item {
  display: grid;
  place-content: center;
  aspect-ratio: 80/20;
  border: 1px solid #D9D9D9;
  background: #FFF;
  color: #D9D9D9;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-news .page-filter_category_item {
    border-radius: 4px;
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-news .page-filter_category_item {
    border-radius: min(1.0666666667vw, 8px);
    font-size: min(2.1333333333vw, 16px);
  }
}
.page-news .page-filter_category_item.is-active {
  border: none;
  color: #FFF;
}
.page-news .page-filter_category_item.is-active.graduate {
  background: #D70C19;
}
.page-news .page-filter_category_item.is-active.career {
  background: #404040;
}
.page-news .page-filter_number {
  margin-left: auto;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-news .page-filter_number {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-news .page-filter_number {
    font-size: min(4vw, 30px);
  }
}
.page-news .c-news_contents {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-news .c-news_contents {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .page-news .c-news_contents {
    width: min(89.3333333333vw, 670px);
  }
}
@media screen and (min-width: 768px) {
  .page-news .c-news_list_item {
    grid-template-rows: auto;
  }
}
@media screen and (min-width: 768px) {
  .page-news .c-news_list_item .c-news_text {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .page-news .c-news_list_item + .c-news_list_item {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-news .c-news_list_item.is-hidden {
  display: none;
}
.page-news .c-news_categories {
  margin-top: 0.2em;
}
.page-news .c-news_viewMore {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-news .c-news_viewMore {
    margin-top: min(4.6852122987vw, 64px);
  }
}
@media screen and (max-width: 767px) {
  .page-news .c-news_viewMore {
    margin-top: min(8.5333333333vw, 64px);
  }
}
@media (any-hover: hover) {
  .page-news .c-news_viewMore {
    cursor: pointer;
  }
}
.page-news .c-viewMore_icon {
  rotate: 90deg;
}

/**
 * Office tour
 */
.page-officetour .p-contents_head {
  text-transform: uppercase;
}
.page-officetour .page-layout_img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-layout_img {
    aspect-ratio: 1366/463;
    margin: min(2.9282576867vw, 40px) 0;
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-layout_img {
    aspect-ratio: 750/462;
    margin: min(10.6666666667vw, 80px) 0;
  }
}
.page-officetour .page-layout_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-officetour .page-concept_img {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-concept_img {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-concept_img {
    margin-top: min(10.6666666667vw, 80px);
  }
}
@media screen and (min-width: 768px) {
  .page-officetour .page-concept_list {
    margin-top: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-concept_list {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-officetour .page-concept_list_item {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-concept_list_item {
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-concept_list_item {
    font-size: min(2.6666666667vw, 20px);
  }
}
.page-officetour .page-other_list {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-other_list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.7086383602vw, 37px) min(1.1713030747vw, 16px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-other_list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(4vw, 30px);
    margin-top: min(10.6666666667vw, 80px);
  }
}
.page-officetour .page-other_list_item_text {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-other_list_item_text {
    padding: min(0.7320644217vw, 10px);
    font-size: min(0.878477306vw, 12px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-other_list_item_text {
    padding: min(2.6666666667vw, 20px);
    font-size: min(2.4vw, 18px);
  }
}
.page-officetour .page-movie {
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 100vmax;
  background: #000;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-movie {
    width: clamp(300px, 33.6749633968vw, 460px);
    aspect-ratio: 460/60;
    margin: min(5.8565153734vw, 80px) auto 0;
    font-size: clamp(12px, 1.317715959vw, 18px);
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-movie {
    width: min(100%, 640px);
    aspect-ratio: 640/120;
    margin: min(10.6666666667vw, 80px) auto 0;
    padding-left: min(8vw, 60px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-officetour .page-movie::before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  border-radius: 100%;
  background: #FFF;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-movie::before {
    left: min(1.0980966325vw, 15px);
    width: min(2.196193265vw, 30px);
    height: min(2.196193265vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-movie::before {
    left: min(4vw, 30px);
    width: min(8vw, 60px);
    height: min(8vw, 60px);
  }
}
.page-officetour .page-movie::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  background: #000;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-officetour .page-movie::after {
    left: min(1.9765739385vw, 27px);
    width: min(0.7320644217vw, 10px);
    height: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .page-movie::after {
    left: min(7.2vw, 54px);
    width: min(2.6666666667vw, 20px);
    height: min(3.7333333333vw, 28px);
  }
}
@media (any-hover: hover) {
  .page-officetour .page-movie {
    transition: background 0.3s ease-in-out;
  }
  .page-officetour .page-movie::after {
    transition: background 0.3s ease-in-out;
  }
  .page-officetour .page-movie:hover {
    background: #D70C19;
  }
  .page-officetour .page-movie:hover::after {
    background: #D70C19;
  }
}
@media screen and (min-width: 768px) {
  .page-officetour .modal-movie {
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 767px) {
  .page-officetour .modal-movie {
    margin-bottom: 17px;
  }
}

/**
 * People
 */
@media screen and (min-width: 768px) {
  .page-people .p-category_kv {
    background: url("../images/people/kv.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-people .p-category_kv {
    background: url("../images/people/sp/kv.jpg") no-repeat center top/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-people .p-category_kv_lead_text {
    color: #FFF;
  }
}

/**
 * PLAN
 */
@media screen and (min-width: 768px) {
  .page-plan .page-vision {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-plan .page-vision_title {
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_title {
    font-size: min(1.6105417277vw, 22px);
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_title {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(4.2666666667vw, 32px);
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_detail {
    display: grid;
    grid-template-columns: min(20.4978038067vw, 280px) min(21.9619326501vw, 300px) min(20.4978038067vw, 280px);
    grid-template-rows: repeat(3, min(8.78477306vw, 120px));
    gap: min(0.7320644217vw, 10px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_detail {
    width: min(78.6666666667vw, 590px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_detail_img {
    grid-column: 2/3;
    grid-row: 1/4;
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_detail_img {
    width: min(56vw, 420px);
    margin: 0 auto min(5.3333333333vw, 40px);
  }
}
.page-plan .page-vision_detail_item {
  display: grid;
  place-content: center;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_detail_item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .page-plan .page-vision_detail_item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .page-plan .page-vision_detail_item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .page-plan .page-vision_detail_item:nth-child(5) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .page-plan .page-vision_detail_item:nth-child(6) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .page-plan .page-vision_detail_item:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_detail_item {
    aspect-ratio: 590/140;
  }
  .page-plan .page-vision_detail_item + .page-vision_detail_item {
    margin-top: min(1.8666666667vw, 14px);
  }
}
.page-plan .page-vision_detail_item_text {
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_detail_item_text {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_detail_item_text {
    font-size: min(3.2vw, 24px);
  }
}
.page-plan .page-vision_arrow {
  aspect-ratio: 140/40;
  margin: 0 auto;
  background: #D70C19;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_arrow {
    width: min(10.2489019034vw, 140px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_arrow {
    width: min(18.6666666667vw, 140px);
    margin-top: min(5.3333333333vw, 40px);
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.page-plan .page-vision_theme {
  border: 1px solid #D70C19;
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_theme {
    width: min(78.6666666667vw, 590px);
    margin: 0 auto;
  }
}
.page-plan .page-vision_theme_head {
  display: grid;
  place-content: center;
  width: 100%;
  background: #D70C19;
  color: #FFF;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_theme_head {
    aspect-ratio: 940/90;
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_theme_head {
    aspect-ratio: 590/143;
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-plan .page-vision_theme_text {
  color: #D70C19;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-plan .page-vision_theme_text {
    padding: min(2.9282576867vw, 40px);
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-vision_theme_text {
    padding: min(8vw, 60px) min(5.3333333333vw, 40px);
    font-size: min(4.8vw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative + .page-initiative {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative + .page-initiative {
    margin-top: min(8.2666666667vw, 62px);
  }
}
.page-plan .page-initiative_title {
  display: grid;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative_title {
    grid-template-columns: min(3.6603221083vw, 50px) 1fr;
    grid-template-rows: min(3.6603221083vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative_title {
    grid-template-columns: min(8.5333333333vw, 64px) 1fr;
    grid-template-rows: min(13.3333333333vw, 100px);
  }
}
.page-plan .page-initiative_title_num {
  display: grid;
  place-content: center;
  background: #D70C19;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative_title_num {
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative_title_num {
    font-size: min(4.8vw, 36px);
  }
}
.page-plan .page-initiative_title_text {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  color: #D70C19;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative_title_text {
    padding: 0 min(1.1713030747vw, 16px);
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative_title_text {
    padding: 0 min(3.2vw, 24px);
    font-size: min(4vw, 30px);
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative_img {
    margin-bottom: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative_img {
    margin-bottom: min(1.0666666667vw, 8px);
  }
}
.page-plan .page-initiative_img_caption {
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative_img_caption {
    margin-top: min(0.5856515373vw, 8px);
    font-size: clamp(10px, 0.8052708638vw, 11px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative_img_caption {
    margin-top: min(1.0666666667vw, 8px);
    font-size: min(2.4vw, 18px);
  }
}
.page-plan .page-initiative_list {
  margin-left: 2em;
  list-style-type: disc;
}
.page-plan .page-initiative_list_item {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-plan .page-initiative_list_item {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-initiative_list_item {
    font-size: min(3.2vw, 24px);
  }
}
.page-plan .page-banner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-plan .page-banner {
    width: min(71.7423133236vw, 980px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-plan .page-banner {
    width: min(89.3333333333vw, 670px);
    margin-top: min(10.6666666667vw, 80px);
  }
}
.page-plan .page-banner_link {
  display: block;
}
@media (any-hover: hover) {
  .page-plan .page-banner_link {
    transition: opacity 0.3s ease-in-out;
  }
  .page-plan .page-banner_link:hover {
    opacity: 0.8;
  }
}

/**
 * Project
 */
@media screen and (min-width: 768px) {
  .page-project .p-category_kv {
    background: url("../images/project/kv.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-project .p-category_kv {
    background: url("../images/project/sp/kv.jpg") no-repeat center top/cover;
  }
}
.page-project .p-category_kv_lead_text {
  color: #FFF;
}

/**
 * Statue
 */
@media screen and (min-width: 768px) {
  .page-statue .p-hr_kv {
    height: auto;
    aspect-ratio: 1366/800;
    max-height: initial;
    background: #f5f5f5 url("../images/newgrad/statue/kv.jpg") no-repeat right bottom/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-statue .p-hr_kv {
    height: auto;
    aspect-ratio: 750/1055;
    background: url("../images/newgrad/statue/sp/kv.jpg") no-repeat center top/cover;
  }
}
.page-statue .page-kv_lead {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-statue .page-kv_lead {
    width: min(77.5988286969vw, 1060px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-kv_lead {
    width: min(76vw, 570px);
    margin-top: auto;
    margin-bottom: min(5.3333333333vw, 40px);
    margin-left: min(5.3333333333vw, 40px);
  }
}
.page-statue .page-kv_lead_text {
  background: #FFF;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-statue .page-kv_lead_text {
    width: min(24.8901903367vw, 340px);
    padding: min(5.8565153734vw, 80px) min(2.9282576867vw, 40px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-kv_lead_text {
    padding: min(5.3333333333vw, 40px);
    font-size: min(3.2vw, 24px);
  }
}
.page-statue .page-messages {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-statue .page-messages {
    gap: min(8.78477306vw, 120px);
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-messages {
    gap: min(16vw, 120px);
    width: min(89.3333333333vw, 670px);
  }
}
@media screen and (min-width: 768px) {
  .page-statue .page-message {
    display: flex;
    gap: min(4.39238653vw, 60px);
  }
  .page-statue .page-message:nth-child(odd) .page-message_img::before {
    left: min(-0.7320644217vw, -10px);
  }
  .page-statue .page-message:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-statue .page-message:nth-child(even) .page-message_img::before {
    right: min(-0.7320644217vw, -10px);
  }
}
.page-statue .page-message_img {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_img {
    flex-shrink: 0;
    width: min(33.6749633968vw, 460px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_img {
    margin-bottom: min(8vw, 60px);
  }
}
.page-statue .page-message_img::before {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  background: #D70C19;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_img::before {
    top: min(-0.7320644217vw, -10px);
    width: min(9.5168374817vw, 130px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_img::before {
    top: min(-1.3333333333vw, -10px);
    left: min(-1.3333333333vw, -10px);
    width: min(28vw, 210px);
  }
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_textarea {
    flex-grow: 1;
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_textarea {
    width: min(84vw, 630px);
    margin: 0 auto;
  }
}
.page-statue .page-message_title {
  color: #D70C19;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_title {
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_title {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(4vw, 30px);
    line-height: 1.6;
  }
}
.page-statue .page-message_text {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_text {
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_text {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-statue .page-message_profile {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: min(0.2928257687vw, 4px) min(0.7320644217vw, 10px);
  width: -moz-fit-content;
  width: fit-content;
}
.page-statue .page-message_profile_position {
  grid-column: 1/3;
  font-weight: 700;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_profile_position {
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_profile_position {
    font-size: min(3.2vw, 24px);
  }
}
.page-statue .page-message_profile_name {
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_profile_name {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_profile_name {
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-statue .page-message_profile_year {
  align-self: center;
  font-weight: 500;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .page-statue .page-message_profile_year {
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-statue .page-message_profile_year {
    font-size: min(2.6666666667vw, 20px);
  }
}

/**
 * Top page
 */
@keyframes kvFade {
  /* 18秒中:
      1秒 = 5.556%
      6秒 = 33.333%
      7秒 = 38.889%
  */
  0% {
    opacity: 0;
    sclae: 1;
  }
  5.556% {
    opacity: 1;
  } /* フェードイン1秒 */
  33.333% {
    opacity: 1;
  } /* 表示維持5秒 */
  38.889% {
    opacity: 0;
  } /* フェードアウト1秒 */
  100% {
    opacity: 0;
    scale: 1.1;
  }
}
@keyframes kvTextFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-top .kv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-top .kv {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv {
    height: 100svh;
  }
}
.page-top .kv_slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-top .kv_slider::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}
.page-top .kv_sliderImg {
  position: absolute;
  inset: 0;
  animation: kvFade 18s infinite;
  opacity: 0;
}
.page-top .kv_sliderImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-top .kv_sliderImg:nth-child(1) {
  animation-delay: -1s;
}
.page-top .kv_sliderImg:nth-child(2) {
  animation-delay: 5s;
}
.page-top .kv_sliderImg:nth-child(3) {
  animation-delay: 11s;
}
.page-top .kv_text {
  position: absolute;
  opacity: 0;
  animation: kvTextFadeIn 0.4s ease-in-out 1s forwards;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-top .kv_text {
    top: 80px;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    height: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_text {
    top: min(16vw, 120px);
    left: min(8vw, 60px);
    height: calc(100svh - min(16vw, 120px) - min(24vw, 180px));
  }
}
.page-top .kv_text_scroll {
  width: 100%;
  height: 100%;
}
.page-top .kv_text_scroll.is-open {
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
  will-change: scroll-position;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.page-top .kv_text_scroll.is-open::-webkit-scrollbar {
  display: none;
}
.page-top .kv_text_scroll.is-locked {
  overscroll-behavior: contain;
}
.page-top .kv_text_inner {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-top .kv_text_inner {
    width: min(71.7423133236vw, 980px);
    height: auto;
    padding-top: calc((100vh - min(30.75vw, 420px)) / 2 - 80px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_text_inner {
    padding-top: calc(100% - min(23.8653001464vw, 163px) - min(2.9282576867vw, 40px));
    padding-top: 50%;
  }
}
@media screen and (min-width: 768px) {
  .page-top .kv_logo {
    width: min(33.8945827233vw, 463px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_logo {
    width: min(72vw, 270px);
    margin-bottom: min(9.6vw, 36px);
  }
}
.page-top .kv_lead {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead {
    height: calc(100vh - (100vh - min(30.75vw, 420px)) / 2 - min(20.5vw, 280px) - min(2.93vw, 40px));
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead {
    height: calc(100svh - min(46.8vw, 176px) - min(43.47vw, 163px) - min(9.6vw, 36px) - min(21.33vw, 80px));
  }
}
.page-top .kv_lead_inner {
  overflow: hidden;
  transition: height 0.6s linear;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_inner {
    padding-bottom: min(18.6676427526vw, 255px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_inner {
    padding-bottom: min(21.3333333333vw, 160px);
  }
}
.page-top .kv_lead_text {
  color: #FFF;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_text {
    font-size: clamp(12px, 1.317715959vw, 18px);
    line-height: 2.8;
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_text {
    font-size: min(3.2vw, 12px);
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_text + .kv_lead_text {
    margin-top: 2.8em;
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_text + .kv_lead_text {
    margin-top: 2em;
  }
}
.page-top .kv_lead_readMore {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_readMore {
    gap: min(0.7320644217vw, 10px);
    height: min(1.756954612vw, 24px);
    margin-top: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_readMore {
    gap: min(2.4vw, 18px);
    height: min(3.2vw, 24px);
    margin-top: min(2.1333333333vw, 16px);
  }
}
@media (any-hover: hover) {
  .page-top .kv_lead_readMore {
    cursor: pointer;
  }
  .page-top .kv_lead_readMore .kv_lead_readMore_text {
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
  }
  .page-top .kv_lead_readMore .kv_lead_viewMore_icon {
    transition: background 0.3s ease-in-out;
  }
  .page-top .kv_lead_readMore .kv_lead_viewMore_icon::after {
    transition: border-top-color 0.3s ease-in-out, border-right-color 0.3s ease-in-out;
  }
  .page-top .kv_lead_readMore:hover .kv_lead_readMore_text {
    color: #D70C19;
    border-bottom-color: #D70C19;
  }
  .page-top .kv_lead_readMore:hover .kv_lead_viewMore_icon {
    background: #D70C19;
  }
  .page-top .kv_lead_readMore:hover .kv_lead_viewMore_icon::after {
    border-top-color: #FFF;
    border-right-color: #FFF;
  }
}
.page-top .kv_lead_readMore_text {
  display: grid;
  place-content: center;
  height: 100%;
  border-bottom: 1px solid #FFF;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_readMore_text {
    padding: 0 min(0.1464128843vw, 2px);
    font-size: clamp(12px, 1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_readMore_text {
    padding: 0 min(0.2666666667vw, 2px);
    font-size: clamp(12px, 2.1333333333vw, 16px);
  }
}
.page-top .kv_lead_viewMore_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_viewMore_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_viewMore_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.page-top .kv_lead_viewMore_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #000;
  border-right-color: #000;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-top .kv_lead_viewMore_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .kv_lead_viewMore_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.page-top .kv_lead_viewMore_icon {
  rotate: 90deg;
}
.page-top .movie {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
@media (any-hover: hover) {
  .page-top .movie:hover .movie_thumb img {
    scale: 1.05;
  }
  .page-top .movie:hover .movie_thumb .ico_movie_play {
    background: #000;
  }
  .page-top .movie:hover .movie_thumb .ico_movie_play::after {
    background: #FFF;
  }
}
.page-top .movie .movie_thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-top .movie .movie_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: scale 0.3s ease-in-out;
}
.page-top .movie .ico_movie_play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-top .movie .ico_movie_play {
    width: min(70vw / 13.66, 70px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .movie .ico_movie_play {
    width: min(70vw / 7.5, 70px);
  }
}
.page-top .movie .ico_movie_play::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  aspect-ratio: 21/24;
  margin-left: 2px;
  background: #000;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .page-top .movie .ico_movie_play::after {
    width: min(21vw / 13.66, 21px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .movie .ico_movie_play::after {
    width: min(21vw / 7.5, 21px);
  }
}
.page-top .movie {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-top .movie {
    width: min(71.7423133236vw, 980px);
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .movie {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
.page-top .pickup {
  margin: 0 auto;
  border-style: solid;
  border-color: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-top .pickup {
    width: min(94.1434846266vw, 1286px);
    margin-bottom: min(11.7130307467vw, 160px);
    padding-top: min(8.0527086384vw, 110px);
    padding-bottom: min(8.0527086384vw, 110px);
    border-width: min(0.7320644217vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .pickup {
    margin-bottom: min(21.3333333333vw, 160px);
    padding-top: min(14.6666666667vw, 110px);
    padding-bottom: min(14.6666666667vw, 110px);
    border-width: min(1.3333333333vw, 10px);
  }
}
.page-top .pickup_title {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-top .pickup_title {
    width: min(71.7423133236vw, 980px);
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .pickup_title {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(4.2666666667vw, 32px);
  }
}
.page-top .page-pickup_card_wrap {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-top .page-pickup_card_wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.3426061493vw, 32px);
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .page-pickup_card_wrap {
    gap: min(4.2666666667vw, 32px);
    width: min(89.3333333333vw, 670px);
  }
}
.page-top .page-pickup_card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.page-top .page-pickup_card_link {
  position: relative;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-top .page-pickup_card_link {
    display: grid;
    grid-template-columns: min(43.0666666667vw, 323px) 1fr;
    gap: min(3.2vw, 24px);
  }
}
@media (any-hover: hover) {
  .page-top .page-pickup_card_link .page-pickup_card_img img {
    transition: scale 0.3s ease-in-out;
  }
  .page-top .page-pickup_card_link .c-viewMore_text {
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
  }
  .page-top .page-pickup_card_link .c-viewMore_icon {
    transition: translate 0.3s ease-in-out;
  }
  .page-top .page-pickup_card_link:hover .page-pickup_card_img img {
    scale: 1.05;
  }
  .page-top .page-pickup_card_link:hover .c-viewMore_text {
    border-bottom-color: #D70C19;
    color: #D70C19;
  }
  .page-top .page-pickup_card_link:hover .c-viewMore_icon {
    translate: 4px 0;
  }
}
.page-top .page-pickup_card_img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-top .page-pickup_card_img {
    margin-bottom: min(1.756954612vw, 24px);
  }
}
.page-top .page-pickup_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .page-top .page-pickup_card_textarea {
    align-self: center;
  }
}
.page-top .page-pickup_card_text {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-top .page-pickup_card_text {
    margin-bottom: min(1.1713030747vw, 16px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .page-pickup_card_text {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.4666666667vw, 26px);
  }
}
.page-top .page-pickup_card_viewMore {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-top .company {
    margin-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company {
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
.page-top .company_top {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-top .company_top {
    aspect-ratio: 1366/641;
    background: url("../images/top/bg_company.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_top {
    aspect-ratio: 750/1201;
    background: url("../images/top/sp/bg_company.jpg") no-repeat center center/cover;
  }
}
.page-top .company_top::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  background: rgba(26, 26, 26, 0.5);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-top .company_top::before {
    width: calc(50vw - min(11.2005856515vw, 153px));
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_top::before {
    width: min(33.3333333333vw, 250px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .company_top_inner {
    width: min(71.7423133236vw, 980px);
    margin: auto auto 0;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_top_inner {
    width: min(84vw, 630px);
    margin-top: auto;
  }
}
.page-top .company_title {
  margin-top: auto;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-top .company_title {
    margin-bottom: min(2.3426061493vw, 32px);
    font-size: min(3.8067349927vw, 52px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_title {
    margin-bottom: min(5.6vw, 42px);
    margin-left: min(5.3333333333vw, 40px);
    font-size: min(9.8666666667vw, 74px);
  }
}
.page-top .company_top_guide {
  display: flex;
  flex-direction: column;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-top .company_top_guide {
    width: min(22.3279648609vw, 305px);
    aspect-ratio: 305/420;
    padding: min(2.3426061493vw, 32px) min(2.3426061493vw, 32px) 0;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_top_guide {
    width: 100%;
    aspect-ratio: 630/380;
    padding: min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) 0;
  }
}
.page-top .company_top_guide_head {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-top .company_top_guide_head {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_top_guide_head {
    margin-bottom: min(1.0666666667vw, 8px);
    font-size: min(4.8vw, 36px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .company_top_guide_lead {
    font-size: min(1.1713030747vw, 16px);
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_top_guide_lead {
    font-size: min(3.2vw, 24px);
    line-height: 1.6;
  }
}
.page-top .company_viewMore {
  margin-top: auto;
}
.page-top .company_bottom {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-top .company_bottom {
    width: min(71.7423133236vw, 980px);
    margin-top: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_bottom {
    width: min(89.3333333333vw, 670px);
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-top .company_list_large {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_large {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.3426061493vw, 32px);
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_large {
    gap: min(4.2666666667vw, 32px);
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.page-top .company_list_large_link {
  display: block;
}
@media (any-hover: hover) {
  .page-top .company_list_large_link .company_list_large_img img {
    transition: scale 0.3s ease-in-out;
  }
  .page-top .company_list_large_link .company_list_large_text_text {
    transition: color 0.3s ease-in-out;
  }
  .page-top .company_list_large_link .company_list_large_text_icon {
    transition: translate 0.3s ease-in-out;
  }
  .page-top .company_list_large_link:hover .company_list_large_img img {
    scale: 1.05;
  }
  .page-top .company_list_large_link:hover .company_list_large_text_text {
    color: #D70C19;
  }
}
.page-top .company_list_large_img {
  width: 100%;
  aspect-ratio: 474/320;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_large_img {
    margin-bottom: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_large_img {
    margin-bottom: min(4.2666666667vw, 32px);
  }
}
.page-top .company_list_large_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_large_text {
    padding-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_large_text {
    padding-bottom: min(4.2666666667vw, 32px);
  }
}
.page-top .company_list_large_text_text {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_large_text_text {
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_large_text_text {
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-top .company_list_large_text_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_large_text_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_large_text_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.page-top .company_list_large_text_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_large_text_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_large_text_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.page-top .company_list_small {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_small {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_small {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.1333333333vw, 16px) min(3.2vw, 24px);
  }
}
.page-top .company_list_small_link {
  display: block;
}
@media (any-hover: hover) {
  .page-top .company_list_small_link .company_list_small_text_text {
    transition: color 0.3s ease-in-out;
  }
  .page-top .company_list_small_link .company_list_small_text_icon {
    transition: translate 0.3s ease-in-out;
  }
  .page-top .company_list_small_link:hover .company_list_small_text_text {
    color: #D70C19;
  }
  .page-top .company_list_small_link:hover .company_list_small_text_icon {
    translate: 4px 0;
  }
}
.page-top .company_list_small_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_small_text {
    padding-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_small_text {
    padding-bottom: min(2.1333333333vw, 16px);
  }
}
.page-top .company_list_small_text_text {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_small_text_text {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_small_text_text {
    font-size: min(3.2vw, 24px);
  }
}
.page-top .company_list_small_text_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_small_text_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_small_text_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.page-top .company_list_small_text_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-top .company_list_small_text_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .company_list_small_text_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
.page-top .project,
.page-top .people {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-top .project,
  .page-top .people {
    display: flex;
    height: min(29.2825768668vw, 400px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .project {
    flex-direction: row-reverse;
  }
}
.page-top .project_img,
.page-top .people_img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-top .project_img,
  .page-top .people_img {
    width: 50%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-top .project_img,
  .page-top .people_img {
    width: 100%;
    aspect-ratio: 750/440;
  }
}
.page-top .project_img img,
.page-top .people_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-top .project_text,
.page-top .people_text {
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-top .project_text,
  .page-top .people_text {
    display: flex;
    align-items: center;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .page-top .project_text,
  .page-top .people_text {
    width: 100%;
    height: min(66.6666666667vw, 500px);
    padding: min(8.5333333333vw, 64px) min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .project_text_inner,
  .page-top .people_text_inner {
    width: min(32.3572474378vw, 442px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .project_text_inner {
    margin-left: auto;
    margin-right: min(3.513909224vw, 48px);
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .page-top .people_text_inner {
    margin-left: min(3.513909224vw, 48px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .project_title,
  .page-top .people_title {
    margin-bottom: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .project_title,
  .page-top .people_title {
    margin-bottom: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .project_lead,
  .page-top .people_lead {
    margin-bottom: min(1.1713030747vw, 16px);
    font-weight: 500;
    line-height: 2;
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .project_lead,
  .page-top .people_lead {
    margin-bottom: min(3.2vw, 24px);
    line-height: 1.6;
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .project_viewMore {
    margin-left: auto;
  }
}
.page-top .howwework {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-top .howwework {
    width: min(71.7423133236vw, 980px);
    margin-top: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework {
    width: min(89.3333333333vw, 670px);
    margin-top: min(21.3333333333vw, 160px);
  }
}
@media screen and (min-width: 768px) {
  .page-top .howwework_title {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_title {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.page-top .howwework_inner {
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_inner {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.2vw, 24px);
  }
}
.page-top .howwework_top {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top {
    grid-column: 1/4;
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top {
    grid-column: 1/3;
  }
}
.page-top .howwework_top_img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_img {
    aspect-ratio: 980/400;
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_img {
    aspect-ratio: 670/800;
  }
}
.page-top .howwework_top_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-top .howwework_top_text {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_text {
    top: min(2.3426061493vw, 32px);
    bottom: min(2.3426061493vw, 32px);
    left: min(2.3426061493vw, 32px);
    width: min(22.3279648609vw, 305px);
    padding: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_text {
    bottom: min(5.3333333333vw, 40px);
    left: 50%;
    translate: -50% 0;
    width: min(78.6666666667vw, 590px);
    aspect-ratio: 590/320;
    padding: min(5.3333333333vw, 40px);
  }
}
.page-top .howwework_top_text_lead {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_text_lead {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_text_lead {
    font-size: min(3.2vw, 24px);
  }
}
.page-top .howwework_top_viewMore {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_links:nth-of-type(n + 4) {
    margin-top: min(4.2666666667vw, 32px);
  }
}
@media (any-hover: hover) {
  .page-top .howwework_top_link .howwework_top_link_img img {
    transition: scale 0.3s ease-in-out;
  }
  .page-top .howwework_top_link .howwework_top_link_text_text {
    transition: color 0.3s ease-in-out;
  }
  .page-top .howwework_top_link:hover .howwework_top_link_img img {
    scale: 1.05;
  }
  .page-top .howwework_top_link:hover .howwework_top_link_text_text {
    color: #D70C19;
  }
}
.page-top .howwework_top_link_img {
  width: 100%;
  aspect-ratio: 305/206;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_link_img {
    margin-bottom: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_link_img {
    margin-bottom: min(3.2vw, 24px);
  }
}
.page-top .howwework_top_link_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-top .howwework_top_link_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-top .howwework_top_link_text_text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_link_text_text {
    font-size: min(1.317715959vw, 19px);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_link_text_text {
    font-size: min(3.4666666667vw, 26px);
    line-height: 1.4;
  }
}
.page-top .howwework_top_link_text_icon {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_link_text_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_link_text_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.page-top .howwework_top_link_text_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-top .howwework_top_link_text_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .howwework_top_link_text_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}

/**
 * Uniqueness
 */
.page-uniqueness .page-crossroad_img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad_img {
    width: min(52.4158125915vw, 716px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_img {
    width: min(78.6666666667vw, 590px);
    margin-top: min(5.3333333333vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-graph_description {
    color: #8C8F90;
    font-size: 0.9rem;
  }
  .page-uniqueness .page-graph_description .ico-pinch {
    background: url("../images/uniqueness/ico-pinch.png") no-repeat center center/contain;
    background-size: contain;
    display: inline-block;
    height: 16px;
    margin-right: 7px;
    vertical-align: bottom;
    width: 13px;
  }
}
.page-uniqueness .page-crossroad {
  border: 1px solid #D70C19;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad {
    margin-top: min(5.3333333333vw, 40px);
  }
}
.page-uniqueness .page-crossroad_title {
  display: grid;
  place-content: center;
  width: 100%;
  background: #D70C19;
  color: #FFF;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad_title {
    aspect-ratio: 940/90;
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_title {
    aspect-ratio: 590/143;
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-uniqueness .page-crossroad_inner {
  position: relative;
  display: grid;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: min(7.6134699854vw, 104px);
    padding: min(2.9282576867vw, 40px) min(5.8565153734vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_inner {
    gap: min(14.4vw, 108px);
    padding: min(8vw, 60px) min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad_inner::before, .page-uniqueness .page-crossroad_inner::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    content: "";
    width: min(4.0995607613vw, 56px);
    height: 1px;
    background: #000;
  }
}
.page-uniqueness .page-crossroad_inner::before {
  rotate: 45deg;
}
.page-uniqueness .page-crossroad_inner::after {
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_detail {
    width: min(68vw, 510px);
    margin: 0 auto;
  }
}
.page-uniqueness .page-crossroad_detail:first-child {
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_detail:first-child::before, .page-uniqueness .page-crossroad_detail:first-child::after {
    position: absolute;
    top: calc(100% + min(3.2vw, 24px) + min(4vw, 30px));
    left: 50%;
    translate: -50% 0;
    content: "";
    width: min(11.2vw, 84px);
    height: 1px;
    background: #000;
  }
}
.page-uniqueness .page-crossroad_detail:first-child::before {
  rotate: 45deg;
}
.page-uniqueness .page-crossroad_detail:first-child::after {
  rotate: -45deg;
}
.page-uniqueness .page-crossroad_head {
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad_head {
    margin-bottom: min(0.5856515373vw, 8px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_head {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(4vw, 30px);
  }
}
.page-uniqueness .page-crossroad_text {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-crossroad_text {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-crossroad_text {
    font-size: min(3.4666666667vw, 26px);
  }
}
.page-uniqueness .page-banner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-uniqueness .page-banner {
    width: min(71.7423133236vw, 980px);
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-uniqueness .page-banner {
    width: min(89.3333333333vw, 670px);
    margin-top: min(10.6666666667vw, 80px);
  }
}
.page-uniqueness .page-banner_link {
  display: block;
}
@media (any-hover: hover) {
  .page-uniqueness .page-banner_link {
    transition: opacity 0.3s ease-in-out;
  }
  .page-uniqueness .page-banner_link:hover {
    opacity: 0.8;
  }
}

/**
 * Workstyle
 */
@media screen and (min-width: 768px) {
  .page-workstyle .p-category_kv {
    background: url("../images/workstyle/kv.jpg") no-repeat right top/cover;
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .p-category_kv {
    background: url("../images/workstyle/sp/kv.jpg") no-repeat center top/cover;
  }
}
@media screen and (min-width: 768px) {
  .page-workstyle .p-category_kv {
    height: auto;
    aspect-ratio: 1366/800;
    max-height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .p-category_kv_lead {
    margin-bottom: min(27.2vw, 204px);
  }
}
.page-workstyle .p-category_kv_lead_text {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links {
    padding-top: min(11.7130307467vw, 160px);
    padding-bottom: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links {
    padding-top: min(18.1333333333vw, 136px);
    padding-bottom: min(21.3333333333vw, 160px);
  }
}
.page-workstyle .page-workstyle_links_list {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links_list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.3426061493vw, 32px);
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links_list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.2vw, 24px);
    width: min(89.3333333333vw, 670px);
  }
}
.page-workstyle .page-workstyle_links_item_link {
  display: block;
}
@media (any-hover: hover) {
  .page-workstyle .page-workstyle_links_item_link .page-workstyle_links_item_img img {
    transition: scale 0.3s ease-in-out;
  }
  .page-workstyle .page-workstyle_links_item_link .page-workstyle_links_item_title_text {
    transition: color 0.3s ease-in-out;
  }
  .page-workstyle .page-workstyle_links_item_link:hover .page-workstyle_links_item_img img {
    scale: 1.05;
  }
  .page-workstyle .page-workstyle_links_item_link:hover .page-workstyle_links_item_title_text {
    color: #D70C19;
  }
}
.page-workstyle .page-workstyle_links_item_img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links_item_img {
    margin-bottom: min(0.5856515373vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links_item_img {
    margin-bottom: min(3.2vw, 24px);
  }
}
.page-workstyle .page-workstyle_links_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-workstyle .page-workstyle_links_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links_item_title {
    gap: min(0.2928257687vw, 4px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links_item_title {
    gap: min(3.2vw, 24px);
  }
}
.page-workstyle .page-workstyle_links_item_title_text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links_item_title_text {
    font-size: min(1.3909224012vw, 19px);
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links_item_title_text {
    font-size: min(3.4666666667vw, 26px);
    line-height: 1.4;
  }
}
.page-workstyle .page-workstyle_links_item_title_icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #D70C19;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links_item_title_icon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links_item_title_icon {
    width: min(4.2666666667vw, 32px);
  }
}
.page-workstyle .page-workstyle_links_item_title_icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  margin-left: -1px;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-top-style: solid;
  border-right-style: solid;
  rotate: 45deg;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-workstyle_links_item_title_icon::after {
    width: 7px;
    height: 7px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-workstyle_links_item_title_icon::after {
    width: min(1.4666666667vw, 11px);
    height: min(1.4666666667vw, 11px);
    border-top-width: min(0.5333333333vw, 4px);
    border-right-width: min(0.5333333333vw, 4px);
  }
}
@media screen and (min-width: 768px) {
  .page-workstyle .p-category_articles {
    padding-top: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .p-category_articles {
    padding-top: min(21.3333333333vw, 160px);
  }
}
.page-workstyle .page-category_articles_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-category_articles_inner {
    width: min(71.7423133236vw, 980px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-category_articles_inner {
    width: min(89.3333333333vw, 670px);
  }
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-category_articles_inner + .page-category_articles_inner {
    margin-top: min(11.7130307467vw, 160px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-category_articles_inner + .page-category_articles_inner {
    margin-top: min(21.3333333333vw, 160px);
  }
}
.page-workstyle .page-category_articles_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-category_articles_header {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-category_articles_header {
    margin-bottom: min(4.2666666667vw, 32px);
  }
}
.page-workstyle .page-category_articles_header .p-category_articles_sort_wrap {
  margin-bottom: 0;
}
.page-workstyle .page-category_articles_title {
  flex-shrink: 0;
  color: #D70C19;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-workstyle .page-category_articles_title {
    font-size: min(3.074670571vw, 42px);
  }
}
@media screen and (max-width: 767px) {
  .page-workstyle .page-category_articles_title {
    font-size: min(8vw, 60px);
  }
}

/**
 * MV
 */
.c-article_mv {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-article_mv {
    display: grid;
    grid-template-columns: 1fr min(67.3499267936vw, 920px);
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv {
    margin-top: min(20vw, 150px);
  }
}

.c-article_mv_textWrapper {
  border-left-color: #D70C19;
  border-left-style: solid;
}
@media screen and (min-width: 768px) {
  .c-article_mv_textWrapper {
    display: grid;
    grid-template-rows: 1fr auto;
    height: calc(100% - 80px);
    margin-top: auto;
    padding: 0 min(4.0995607613vw, 56px);
    border-left-width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_textWrapper {
    padding-top: min(10.6666666667vw, 80px);
    padding-right: min(6.6666666667vw, 50px);
    padding-bottom: min(8.5333333333vw, 64px);
    padding-left: min(5.3333333333vw, 40px);
    border-left-width: min(1.3333333333vw, 10px);
  }
}

.c-article_mv_textWrapper_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-article_mv_textWrapper_title {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}

.c-article_mv_title {
  color: #D70C19;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-article_mv_title {
    margin-bottom: min(1.4641288433vw, 20px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_title {
    margin-bottom: min(3.2vw, 24px);
    font-size: min(4.5333333333vw, 34px);
  }
}

.c-article_mv_date {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-article_mv_date {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_date {
    font-size: min(3.2vw, 24px);
  }
}
.c-article_mv_date em {
  font-weight: 700;
  font-style: normal;
}

.c-article_mv_subtitle {
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .c-article_mv_subtitle {
    font-size: min(1.1713030747vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_subtitle {
    font-size: min(3.0666666667vw, 23px);
  }
}

@media screen and (min-width: 768px) {
  .c-article_mv_tag {
    margin-top: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_tag {
    margin-top: min(3.2vw, 24px);
  }
}

@media screen and (min-width: 768px) {
  .c-article_mv_image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_image {
    height: min(73.2vw, 549px);
    border-left: min(1.3333333333vw, 10px) solid #D70C19;
  }
}

.c-article_mv_image_detail {
  display: block;
  width: 100%;
  height: 100%;
}
.c-article_mv_image_detail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .c-article_mv_movie {
    height: auto;
    padding-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .c-article_mv_movie .c-article_mv_textWrapper {
    height: 100%;
    padding-bottom: min(7.3206442167vw, 100px);
  }
}
@media screen and (min-width: 768px) {
  .c-article_mv_movie .c-article_mv_image {
    height: auto;
    padding-bottom: min(7.3206442167vw, 100px);
  }
}
.c-article_mv_movie .c-article_mv_image_inner {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
@media (any-hover: hover) {
  .c-article_mv_movie .c-article_mv_image_inner:hover .movie_thumb img {
    scale: 1.05;
  }
  .c-article_mv_movie .c-article_mv_image_inner:hover .movie_thumb .ico_movie_play {
    background: #000;
  }
  .c-article_mv_movie .c-article_mv_image_inner:hover .movie_thumb .ico_movie_play::after {
    background: #FFF;
  }
}
.c-article_mv_movie .c-article_mv_image_inner .movie_thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-article_mv_movie .c-article_mv_image_inner .movie_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: scale 0.3s ease-in-out;
}
.c-article_mv_movie .c-article_mv_image_inner .ico_movie_play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-article_mv_movie .c-article_mv_image_inner .ico_movie_play {
    width: min(70vw / 13.66, 70px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_movie .c-article_mv_image_inner .ico_movie_play {
    width: min(70vw / 7.5, 70px);
  }
}
.c-article_mv_movie .c-article_mv_image_inner .ico_movie_play::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  aspect-ratio: 21/24;
  margin-left: 2px;
  background: #000;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-article_mv_movie .c-article_mv_image_inner .ico_movie_play::after {
    width: min(21vw / 13.66, 21px);
  }
}
@media screen and (max-width: 767px) {
  .c-article_mv_movie .c-article_mv_image_inner .ico_movie_play::after {
    width: min(21vw / 7.5, 21px);
  }
}

/**
 * Outline
 */
.article_outline {
  border-right-color: #D70C19;
  border-left-color: #D70C19;
  border-right-style: solid;
  border-left-style: solid;
}
@media screen and (min-width: 768px) {
  .article_outline {
    padding-top: min(7.3206442167vw, 100px);
    padding-bottom: min(11.7130307467vw, 160px);
    border-right-width: 16px;
    border-left-width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .article_outline {
    padding-top: min(18.6666666667vw, 140px);
    padding-bottom: min(18.6666666667vw, 140px);
    border-right-width: min(1.3333333333vw, 10px);
    border-left-width: min(1.3333333333vw, 10px);
  }
}

.article_outline_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .article_outline_inner {
    width: min(70.2781844802vw, 960px);
  }
}
@media screen and (max-width: 767px) {
  .article_outline_inner {
    width: min(89.3333333333vw, 670px);
  }
}

@media screen and (min-width: 768px) {
  .article_outline_title {
    margin-bottom: min(2.3426061493vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .article_outline_title {
    margin-bottom: min(4.2666666667vw, 32px);
  }
}

.article_outline_movie_wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
@media (any-hover: hover) {
  .article_outline_movie_wrap:hover .movie_thumb img {
    scale: 1.05;
  }
  .article_outline_movie_wrap:hover .movie_thumb .ico_movie_play {
    background: #000;
  }
  .article_outline_movie_wrap:hover .movie_thumb .ico_movie_play::after {
    background: #FFF;
  }
}
.article_outline_movie_wrap .movie_thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.article_outline_movie_wrap .movie_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: scale 0.3s ease-in-out;
}
.article_outline_movie_wrap .ico_movie_play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFF;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .article_outline_movie_wrap .ico_movie_play {
    width: min(70vw / 13.66, 70px);
  }
}
@media screen and (max-width: 767px) {
  .article_outline_movie_wrap .ico_movie_play {
    width: min(70vw / 7.5, 70px);
  }
}
.article_outline_movie_wrap .ico_movie_play::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  aspect-ratio: 21/24;
  margin-left: 2px;
  background: #000;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .article_outline_movie_wrap .ico_movie_play::after {
    width: min(21vw / 13.66, 21px);
  }
}
@media screen and (max-width: 767px) {
  .article_outline_movie_wrap .ico_movie_play::after {
    width: min(21vw / 7.5, 21px);
  }
}
.article_outline_movie_wrap {
  width: 100%;
}

.article_outline_introduction {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .article_outline_introduction {
    margin-top: min(2.9282576867vw, 40px);
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .article_outline_introduction {
    margin-top: min(8.5333333333vw, 64px);
    font-size: min(3.7333333333vw, 28px);
  }
}

@media screen and (min-width: 768px) {
  .persons {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .persons {
    margin-top: min(8.5333333333vw, 64px);
  }
}

.porsons_title {
  color: #D70C19;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .porsons_title {
    margin-bottom: min(0.3660322108vw, 5px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .porsons_title {
    margin-bottom: min(2.6666666667vw, 20px);
    font-size: min(5.6vw, 42px);
  }
}

.persons_detail {
  position: relative;
  display: grid;
  border-color: #D70C19;
  border-style: solid;
  overflow: hidden;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .persons_detail {
    gap: min(2.9282576867vw, 40px);
    padding: min(2.635431918vw, 36px);
    border-radius: min(1.1713030747vw, 16px);
    border-width: 4px;
  }
}
@media screen and (max-width: 767px) {
  .persons_detail {
    gap: min(8.5333333333vw, 64px);
    padding: min(5.8666666667vw, 44px) min(3.4666666667vw, 26px);
    border-radius: min(2.1333333333vw, 16px);
    border-width: min(0.5333333333vw, 4px);
  }
}
.persons_detail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #D70C19;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .persons_detail::before {
    width: min(7.3206442167vw, 100px);
  }
}
@media screen and (max-width: 767px) {
  .persons_detail::before {
    width: min(18vw, 135px);
  }
}
@media screen and (min-width: 768px) {
  .persons_detail:not(:has(> :only-child)):not(:has(.persons_career)) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.9282576867vw, 40px) min(1.4641288433vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .persons_detail:not(:has(> :only-child)):not(:has(.persons_career)) .persons_detail_inner {
    grid-template-columns: min(8.78477306vw, 120px) 1fr;
  }
}

.persons_detail_inner {
  display: grid;
}
@media screen and (min-width: 768px) {
  .persons_detail_inner {
    grid-template-columns: min(8.78477306vw, 120px) min(16.8374816984vw, 230px) auto;
    gap: min(3.0014641288vw, 41px);
  }
}
@media screen and (max-width: 767px) {
  .persons_detail_inner {
    grid-template-columns: min(28vw, 210px) 1fr;
    grid-template-rows: repeat(2, auto);
    gap: min(2.6666666667vw, 20px) min(4vw, 30px);
  }
}

@media screen and (max-width: 767px) {
  .persons_img {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}

.persons_thumb {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .persons_data {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.persons_data_occupation {
  font-weight: 700;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .persons_data_occupation {
    margin-bottom: 5px;
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .persons_data_occupation {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}

.persons_data_name {
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .persons_data_name {
    margin-bottom: min(1.0980966325vw, 15px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .persons_data_name {
    margin-bottom: min(3.2vw, 24px);
    font-size: min(4.2666666667vw, 32px);
  }
}

.persons_data_year {
  font-weight: 400;
  line-height: 1.23;
}
@media screen and (min-width: 768px) {
  .persons_data_year {
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .persons_data_year {
    font-size: min(2.6666666667vw, 20px);
  }
}

.persons_data_section {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .persons_data_section {
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .persons_data_section {
    font-size: min(3.2vw, 24px);
  }
}

@media screen and (max-width: 767px) {
  .persons_career {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.person_careerTitle {
  font-weight: 700;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .person_careerTitle {
    margin-bottom: min(0.5124450952vw, 7px);
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .person_careerTitle {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}

.person_careerBody {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .person_careerBody {
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .person_careerBody {
    font-size: min(3.2vw, 24px);
  }
}
.person_careerBody dl {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
}

/**
 * Project Outline
 */
/**
 * Article List
 */
.page-articleDetail .c-container {
  background: #FFF;
  overflow-x: initial;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .c-mv-article + .c-container {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
}
.page-articleDetail .c-container_contents {
  max-width: 1366px;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .c-mv + .c-container .c-container_inner {
    padding-top: 75px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .c-mv + .c-container .c-container_inner {
    padding-top: 45px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .c-box.c-box-blue {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .c-box.c-box-blue {
    padding-top: 27px;
    padding-bottom: 54px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .page-articleDetail .article {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_outlineInline {
    padding: min(7.3206442167vw, 100px) min(14.7877013177vw, 202px);
    border: min(0.7320644217vw, 10px) solid #D70C19;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_outlineInline {
    padding: min(17.3333333333vw, 130px) min(4vw, 30px);
    border: min(1.3333333333vw, 10px) solid #D70C19;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_outlineInline .c-title {
    margin-bottom: 40px;
    font-size: 54px;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_outlineInline .c-title {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(9.8666666667vw, 74px);
  }
}
.page-articleDetail .article_movie {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_movie {
    cursor: pointer;
    aspect-ratio: 960/540;
    overflow: hidden;
    z-index: 2;
    margin: 0 auto min(2.9282576867vw, 40px);
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_movie {
    aspect-ratio: 670/377;
    margin: 0 auto min(8vw, 60px);
  }
}
@media screen and (any-hover: hover) and (min-width: 1025px) {
  .page-articleDetail .article_movie:hover .article_movieImg {
    transform: scale(1.1);
  }
}
@media screen and (any-hover: hover) and (min-width: 1025px) {
  .page-articleDetail .article_movie:hover .article_movieButton span {
    color: #111;
  }
  .page-articleDetail .article_movie:hover .article_movieButton:before {
    transform: translateX(0);
  }
}
.page-articleDetail .article_movieInner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.page-articleDetail .article_movieButton {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-family: bio-sans, san-serif;
  text-align: center;
  letter-spacing: 0.2em;
  margin: auto;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_movieButton {
    font-size: 36px;
    line-height: 120px;
    border: 2px solid #fff;
    width: 367px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_movieButton {
    font-size: 5.3333333333vw;
    line-height: 16vw;
    width: 53.3333333333vw;
    height: 16vw;
    border: 0.5333333333vw solid #fff;
  }
}
.page-articleDetail .article_movieButton span {
  display: inline-block;
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .article_movieButton span {
    position: relative;
    top: -4px;
    left: 4px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_movieButton:before {
    content: "";
    width: 483px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-left: 120px solid transparent;
    border-bottom: 150px solid #fff;
  }
}
.page-articleDetail .article_movieImg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_movieImg {
    transition: all 0.3s ease-in-out;
  }
}
.page-articleDetail .article_movieImg > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.page-articleDetail .modal-movie {
  max-width: 900px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_header {
    max-width: 1100px;
    margin-right: 80px;
    margin-bottom: 73px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_header {
    margin-right: 20px;
    margin-bottom: 45px;
  }
}
.page-articleDetail .article_series {
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_series {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_series {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_series > .lang-ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_series > .lang-ja {
    font-size: 1.4rem;
  }
}
.page-articleDetail .article_title {
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_title {
    font-size: 3.5rem;
    line-height: 1.7142857143;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_title {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.page-articleDetail .article_subtitle {
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_subtitle {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-articleDetail .article_subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.page-articleDetail .article_introduction {
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_introduction {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_introduction {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.page-articleDetail .tags {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .tags {
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .tags {
    margin-bottom: min(8vw, 60px);
  }
}
.page-articleDetail .note {
  color: #8c8f90;
  letter-spacing: 0.06rem;
  line-height: 1.7272727273;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .note {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .note {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .persons {
    margin-top: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .persons {
    margin-top: min(8vw, 60px);
  }
}
.page-articleDetail .persons > .c-media {
  display: block;
  width: 100%;
  margin-right: 0;
}
.page-articleDetail .persons > .c-media .c-title {
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .persons > .c-media .c-title {
    margin-bottom: min(1.1713030747vw, 16px);
    margin-left: min(0.7320644217vw, 10px);
    font-size: min(1.9033674963vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .persons > .c-media .c-title {
    margin-bottom: min(4vw, 30px);
    font-size: min(5.6vw, 42px);
  }
}
.page-articleDetail .persons > .c-media .c-media_body {
  width: 100%;
  max-width: initial;
}
.page-articleDetail .persons_content {
  background: linear-gradient(135deg, #FFF 0%, #D70C19 30%, #D70C19 100%);
}
@media screen and (min-width: 768px) {
  .page-articleDetail .persons_content {
    padding: min(2.9282576867vw, 40px);
    border-radius: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .persons_content {
    padding: min(6.6666666667vw, 50px) min(4vw, 30px);
    border-radius: min(2.6666666667vw, 20px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .persons_content:not(:has(.person-1)) {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.page-articleDetail .person {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person-1 {
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person-1 dl + dl {
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person-1 .person_career-long dl:nth-child(odd) {
    margin-right: 6%;
  }
}
.page-articleDetail .person-full {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person:not(.person-1):has(.person_infoInner:only-child) {
    width: calc((100% - 40px) / 2);
  }
  .page-articleDetail .person:not(.person-1):has(.person_infoInner:only-child):nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person:not(.person-1):has(.person_infoInner:nth-child(2)):nth-child(n+2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person:not(.person-1):nth-child(n+2) {
    margin-top: min(8vw, 60px);
  }
}
.page-articleDetail .person_thumb {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_thumb {
    width: min(8.78477306vw, 120px);
    margin-right: min(3.0014641288vw, 41px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_thumb {
    width: min(28vw, 210px);
    margin-right: min(4vw, 30px);
  }
}
.page-articleDetail .person_thumb > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-articleDetail .person_info {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_info {
    display: flex;
    width: calc(100% - min(11.7862371889vw, 161px));
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_infoInner + .person_infoInner {
    margin-left: min(3.0014641288vw, 41px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_infoInner + .person_infoInner {
    margin-top: min(2.6666666667vw, 20px);
  }
}
.page-articleDetail .person_occupation {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_occupation {
    margin-bottom: min(0.3660322108vw, 5px);
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_occupation {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}
.page-articleDetail .person_name {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_name {
    margin-bottom: min(0.878477306vw, 12px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_name {
    margin-bottom: min(2.6666666667vw, 20px);
    font-size: min(4.2666666667vw, 32px);
  }
}
.page-articleDetail .person_year {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_year {
    font-size: min(0.9516837482vw, 13px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_year {
    font-size: min(2.6666666667vw, 20px);
  }
}
.page-articleDetail .person_section1,
.page-articleDetail .person_section2,
.page-articleDetail .person_section3 {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_section1,
  .page-articleDetail .person_section2,
  .page-articleDetail .person_section3 {
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_section1,
  .page-articleDetail .person_section2,
  .page-articleDetail .person_section3 {
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_careerTitle {
    margin-bottom: min(0.3660322108vw, 5px);
    font-size: min(1.0248901903vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_careerTitle {
    margin-bottom: min(2.1333333333vw, 16px);
    font-size: min(3.2vw, 24px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_career {
    font-size: min(0.9516837482vw, 13px);
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_career {
    font-size: min(3.2vw, 24px);
    line-height: 1.6;
  }
}
.page-articleDetail .person_career dl {
  float: left;
}
.page-articleDetail .person_career dt {
  clear: both;
  float: left;
  display: block;
  line-height: 1.4;
  width: 3.5em;
  white-space: nowrap;
}
.page-articleDetail .person_career dd {
  display: block;
  line-height: 1.4;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .person_career dd {
    margin-left: calc(3.5em + 10px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .person_career dd {
    margin-left: calc(3.5em + 5px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock {
    margin-bottom: min(10.2489019034vw, 140px);
  }
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .imgBlock > .c-image {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock > .c-image {
    margin-bottom: min(10.2489019034vw, 140px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock > .c-image {
    margin-bottom: min(10.6666666667vw, 80px);
  }
}
.page-articleDetail .imgBlock .c-media_title {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock .c-media_description {
    padding-right: 0;
    margin-bottom: min(18.6666666667vw, 140px);
  }
}
.page-articleDetail .imgBlock .c-media_description a {
  color: #d70c19;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .imgBlock .c-media_description a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .imgBlock.full:first-child {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.full > .c-image {
    width: 100vw;
    aspect-ratio: 1366/463;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.full > .c-image {
    width: 100%;
    aspect-ratio: 750/462;
  }
}
.page-articleDetail .imgBlock.full > .c-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-articleDetail .imgBlock.full .c-media {
  display: block;
  width: 100%;
  max-width: initial;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.full .c-media {
    width: min(50.9516837482vw, 696px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.full .c-media {
    width: min(89.3333333333vw, 670px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.center {
    width: min(50.9516837482vw, 696px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.center .c-media {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.center .c-media {
    width: min(89.3333333333vw, 670px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.left {
    display: flex;
    flex-flow: row nowrap;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.left > .c-image {
    width: min(47.5841874085vw, 650px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.left > .c-image {
    padding-right: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.left .c-media {
    width: min(33.8945827233vw, 463px);
    margin: min(4.39238653vw, 60px) auto 0 min(3.6603221083vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.left .c-media {
    width: min(89.3333333333vw, 670px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.right {
    display: flex;
    flex-flow: row-reverse nowrap;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.right > .c-image {
    width: min(47.5841874085vw, 650px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.right > .c-image {
    padding-left: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock.right .c-media {
    width: min(33.8945827233vw, 463px);
    margin: min(4.39238653vw, 60px) min(3.6603221083vw, 50px) 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock.right .c-media {
    width: min(89.3333333333vw, 670px);
    margin: 0 auto;
  }
}
.page-articleDetail .imgBlock > .c-media {
  flex-flow: column wrap;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock > .c-media .c-media_header {
    max-width: none;
    width: 100%;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock > .c-media .c-media_body {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock > .c-media .c-media_title {
    margin-bottom: 20px;
  }
}
.page-articleDetail .imgBlock .c-media_title {
  color: #d70c19;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock .c-media_title {
    font-size: min(2.0497803807vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock .c-media_title {
    font-size: min(4.8vw, 36px);
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock .c-media_description + .note {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .imgBlock .c-media_description + .note {
    margin-top: 35px;
  }
}
.page-articleDetail .imgBlock:last-child .c-media_description {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .imgBlock + .c-box {
    margin-top: min(-4.39238653vw, -60px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .insideImage {
    display: flex;
    justify-content: center;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .insideImage {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .insideImage > .c-image {
    max-width: 960px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .insideImage > .c-image {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .insideImage-border {
    margin-top: -20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .insideImage-border {
    margin-top: -10px;
    margin-bottom: 60px;
  }
}
.page-articleDetail .insideImage-border > .c-image {
  border: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .page-articleDetail .insideImage-border > .c-image {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .insideImage_dummy {
    max-width: 450px;
    width: 32.9428989751%;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .insideImage_annotation {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .insideImage_annotation {
    margin-top: 5px;
    margin-left: 20px;
  }
  .page-articleDetail .insideImage_annotation:has(.ico-pinch) {
    margin-left: 0;
  }
}
.page-articleDetail .insideImage_annotation .ico-pinch {
  background: url("../../common/sp/ico-pinch.png") no-repeat 0 0;
  background-size: contain;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .page-articleDetail .insideImage_annotation .ico-pinch {
    font-size: 0.9rem;
    height: 15px;
    width: 19px;
  }
}
.page-articleDetail .outline:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .outline {
    max-width: 960px;
    width: calc(100% - 200px);
    margin: 0 auto 140px;
    padding: 60px 60px 70px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .outline {
    margin-right: min(5.3333333333vw, 40px);
    margin-bottom: min(16vw, 120px);
    margin-left: min(5.3333333333vw, 40px);
  }
}
.page-articleDetail .outline > .c-title {
  color: #ddd;
  line-height: 1;
  text-align: right;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .outline > .c-title {
    font-size: 4rem;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .outline > .c-title {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
  }
}
.page-articleDetail .outline-jp > .c-title {
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .outline-jp > .c-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .outline-jp > .c-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .outline_body {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .outline_img {
    float: left;
    width: 356px;
    width: min(60%, 356px);
    margin-right: min(3.6603221083vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .outline_img {
    margin-bottom: 23px;
    width: 100%;
  }
}
.page-articleDetail .outline_img > img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.page-articleDetail .outline_description {
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .outline_description {
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .outline_description {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
.page-articleDetail .outline_description a {
  color: #d70c19;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .outline_description a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px;
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow {
    margin-right: min(5.3333333333vw, 40px);
    margin-bottom: min(16vw, 120px);
    margin-left: min(5.3333333333vw, 40px);
  }
}
.page-articleDetail .flow > .c-title {
  color: #ddd;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: right;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-title {
    font-size: 4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow > .c-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
.page-articleDetail .flow > .c-media {
  border-color: #8c8f90;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-media {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow > .c-media {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-media.c-media-border {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow > .c-media.c-media-border {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-media .c-media_header {
    max-width: 220px;
    width: 16.1054172767vw;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-media .c-media_body {
    max-width: 510px;
    width: 37.3352855051vw;
  }
}
.page-articleDetail .flow > .c-media .c-media_title {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-media .c-media_title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow > .c-media .c-media_title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow > .c-media .c-media_description {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    padding-right: 0;
  }
}
.page-articleDetail .flow > .c-media:after {
  background: url("../images/common/ico-arrow-gray.png") no-repeat 50% 0;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .page-articleDetail .flow > .c-media:after {
    bottom: -36px;
    width: 100%;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .flow > .c-media:after {
    bottom: -23px;
    width: 100%;
    height: 9px;
  }
}
.page-articleDetail .flow > .c-media:last-child {
  margin-bottom: 0;
}
.page-articleDetail .flow > .c-media:last-child:after {
  display: none;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule {
    max-width: 960px;
    margin: 0 auto 140px;
    padding-top: 40px !important;
    padding-left: 160px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-articleDetail .schedule {
    max-width: 960px;
    margin: 0 auto 140px;
    padding-left: 11.7130307467%;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .schedule {
    margin-right: min(5.3333333333vw, 40px);
    margin-bottom: min(16vw, 120px);
    margin-left: min(5.3333333333vw, 40px);
    padding-left: min(8vw, 60px);
  }
}
.page-articleDetail .schedule > .c-title {
  color: #ddd;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .schedule > .c-title {
    font-size: 4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .schedule > .c-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
.page-articleDetail .schedule_outerline {
  border-left: 1px solid #ddd;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_outerline {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_outerline {
    padding-top: 10px;
  }
}
.page-articleDetail .schedule_list {
  margin-left: -1px;
}
.page-articleDetail .schedule_item {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_item {
    display: flex;
    margin-bottom: 0;
    padding-bottom: 28px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_item {
    margin-bottom: 0;
    padding-bottom: 15px;
  }
}
.page-articleDetail .schedule_item:last-child {
  border-left: none;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_item:last-child {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_item:last-child {
    margin-bottom: 0;
  }
}
.page-articleDetail .schedule_item:last-child:after {
  display: none;
}
.page-articleDetail .schedule_item:before {
  background-color: #000;
  border-radius: 100%;
  content: "";
  display: inline-block;
  margin-right: 50px;
  margin-left: -3px;
  height: 7px;
  width: 7px;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_item:before {
    top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_item:before {
    top: 5px;
    margin-right: 20px;
  }
}
.page-articleDetail .schedule_item:after {
  border-left: 1px solid #111;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_item:after {
    top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_item:after {
    top: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_time {
    display: flex;
    line-height: 1.6923076923;
  }
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_time {
    display: inline-block;
    font-size: 1.3rem;
    margin-bottom: 5px;
    margin-left: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .schedule_time:after {
    background: url("../images/articleDetail/dotline.png") no-repeat 50% 50%;
    content: "";
    display: inline-block;
    height: 1px;
    width: 125px;
    vertical-align: middle;
    position: relative;
    top: 11px;
  }
}
.page-articleDetail .schedule_description {
  display: inline-block;
  line-height: 1.6923076923;
}
@media screen and (max-width: 1024px) {
  .page-articleDetail .schedule_description {
    font-size: 1.3rem;
    margin-left: 28px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary {
    max-width: 960px;
    margin: 0 auto 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary {
    margin-top: min(-2.6666666667vw, -20px);
    margin-right: min(5.3333333333vw, 40px);
    margin-bottom: min(8vw, 60px);
    margin-left: min(5.3333333333vw, 40px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary.c-box {
    padding: 75px 56px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary.c-box {
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary > .c-media_title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary > .c-media_title {
    margin-bottom: min(2.6666666667vw, 20px);
  }
}
.page-articleDetail .glossary > .c-media {
  border-color: #8c8f90;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary > .c-media {
    align-items: center;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary > .c-media {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary > .c-media.c-media-border {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary > .c-media.c-media-border {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary > .c-media .c-media_header {
    max-width: 250px;
    width: 29.0697674419%;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary > .c-media .c-media_body {
    max-width: 610px;
    width: 70.9302325581%;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .glossary > .c-media .c-media_title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary > .c-media .c-media_title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .glossary > .c-media .c-media_description {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    padding-right: 0;
  }
}
.page-articleDetail .glossary > .c-media:last-child {
  margin-bottom: 0;
}
.page-articleDetail .glossary > .c-media:last-child:after {
  display: none;
}
.page-articleDetail .text-only {
  margin: 0 auto;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .text-only {
    font-size: 1.5rem;
    max-width: 960px;
    margin: 0 auto 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .text-only {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(18.6666666667vw, 140px);
    font-size: min(3.7333333333vw, 28px);
  }
}
.page-articleDetail .text-only a {
  color: #d70c19;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 1025px) {
  .page-articleDetail .text-only a:hover {
    opacity: 0.8;
  }
}
.page-articleDetail .annotation {
  color: #8c8f90;
  letter-spacing: 0.06rem;
  line-height: 1.7272727273;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .annotation {
    font-size: 1.1rem;
    max-width: 960px;
    margin: 0 auto 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .annotation {
    font-size: 0.9rem;
    margin-bottom: 60px;
    margin-right: 20px;
    margin-left: 20px;
  }
}
.page-articleDetail .speaker {
  color: #8c8f90;
}
.page-articleDetail .speaker:after {
  background-color: #8c8f90;
  content: "";
  display: inline-block;
  height: 1px;
  margin: 0 10px;
  vertical-align: middle;
  width: 30px;
}
.page-articleDetail .nowrap {
  display: inline-block;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
}
.page-articleDetail .article_footerImg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_footerImg {
    aspect-ratio: 1366/399;
    margin-top: min(10.2489019034vw, 140px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_footerImg {
    aspect-ratio: 750/462;
    margin-top: min(26.6666666667vw, 200px);
  }
}
.page-articleDetail .article_footerImg > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .c-cardController {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .c-cardController {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .c-arrowSquareButton-relatedPosts {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique {
    width: min(70.2781844802vw, 960px);
    margin: 0 auto min(10.2489019034vw, 140px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique {
    margin-top: min(-2.6666666667vw, -20px);
    margin-right: min(5.3333333333vw, 40px);
    margin-bottom: min(8vw, 60px);
    margin-left: min(5.3333333333vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .vision {
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.page-articleDetail .unique .vision_title {
  display: grid;
  place-content: center;
  width: 100%;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .vision_title {
    height: min(2.9282576867vw, 40px);
    font-size: min(1.6105417277vw, 22px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .vision_title {
    height: min(7.7333333333vw, 58px);
    font-size: min(4.2666666667vw, 32px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .vision_inner {
    display: grid;
    grid-template-columns: 1fr min(21.9619326501vw, 300px) 1fr;
    grid-template-rows: repeat(3, min(8.78477306vw, 120px));
    -moz-column-gap: min(2.9282576867vw, 40px);
         column-gap: min(2.9282576867vw, 40px);
    row-gap: min(0.7320644217vw, 10px);
  }
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .vision_img {
    grid-column: 2/3;
    grid-row: 1/4;
    place-content: center;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .vision_img {
    width: min(56vw, 420px);
    margin: min(5.3333333333vw, 40px) auto;
  }
}
.page-articleDetail .unique .vision_img img {
  width: 100%;
}
.page-articleDetail .unique .vision_item {
  display: grid;
  place-content: center;
  border: 1px solid #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .vision_item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .page-articleDetail .unique .vision_item:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .page-articleDetail .unique .vision_item:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .page-articleDetail .unique .vision_item:nth-of-type(5) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .page-articleDetail .unique .vision_item:nth-of-type(6) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .page-articleDetail .unique .vision_item:nth-of-type(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .vision_item {
    width: 100%;
    height: min(18.6666666667vw, 140px);
  }
  .page-articleDetail .unique .vision_item:not(:last-child) {
    margin-bottom: min(1.8666666667vw, 14px);
  }
}
.page-articleDetail .unique .vision_text {
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .vision_text {
    font-size: clamp(10px, 1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .vision_text {
    font-size: min(3.2vw, 24px);
  }
  .page-articleDetail .unique .vision_text .pc-only {
    display: none;
  }
}
.page-articleDetail .unique .ico-arrow {
  background: #D70C19;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .ico-arrow {
    width: min(10.2489019034vw, 140px);
    height: min(2.9282576867vw, 40px);
    margin: 0 auto min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .ico-arrow {
    width: min(18.6666666667vw, 140px);
    height: min(5.3333333333vw, 40px);
    margin: 0 auto min(5.3333333333vw, 40px);
  }
}
.page-articleDetail .unique .c-vmedia_body {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .c-vmedia_body {
    padding: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .c-vmedia_body {
    padding: min(8vw, 60px) min(5.3333333333vw, 40px);
  }
}
.page-articleDetail .unique .c-vmedia_body-strong {
  font-weight: 500;
  line-height: 1.8;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .unique .c-vmedia_body-strong {
    font-size: min(1.756954612vw, 24px);
  }
  .page-articleDetail .unique .c-vmedia_body-strong .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .unique .c-vmedia_body-strong {
    font-size: min(4.8vw, 36px);
    text-align: center;
  }
}
.page-articleDetail .article_html {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .article_html {
    max-width: 960px;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .article_html {
    width: min(89.3333333333vw, 670px);
    margin-bottom: min(18.6666666667vw, 140px);
  }
}

.articleDetail_code.page-vision {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .articleDetail_code.page-vision {
    width: min(68.8140556369vw, 940px);
  }
}
.articleDetail_code .page-vision_title {
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_title {
    font-size: min(1.6105417277vw, 22px);
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_title {
    margin-bottom: min(5.3333333333vw, 40px);
    font-size: min(4.2666666667vw, 32px);
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_detail {
    display: grid;
    grid-template-columns: min(20.4978038067vw, 280px) min(21.9619326501vw, 300px) min(20.4978038067vw, 280px);
    grid-template-rows: repeat(3, min(8.78477306vw, 120px));
    gap: min(0.7320644217vw, 10px) min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_detail {
    width: min(78.6666666667vw, 590px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_detail_img {
    grid-column: 2/3;
    grid-row: 1/4;
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_detail_img {
    width: min(56vw, 420px);
    margin: 0 auto min(5.3333333333vw, 40px);
  }
}
.articleDetail_code .page-vision_detail_item {
  display: grid;
  place-content: center;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_detail_item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .articleDetail_code .page-vision_detail_item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .articleDetail_code .page-vision_detail_item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .articleDetail_code .page-vision_detail_item:nth-child(5) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .articleDetail_code .page-vision_detail_item:nth-child(6) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .articleDetail_code .page-vision_detail_item:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_detail_item {
    aspect-ratio: 590/140;
  }
  .articleDetail_code .page-vision_detail_item + .page-vision_detail_item {
    margin-top: min(1.8666666667vw, 14px);
  }
}
.articleDetail_code .page-vision_detail_item_text {
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_detail_item_text {
    font-size: min(1.0980966325vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_detail_item_text {
    font-size: min(3.2vw, 24px);
  }
}
.articleDetail_code .page-vision_arrow {
  aspect-ratio: 140/40;
  margin: 0 auto;
  background: #D70C19;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_arrow {
    width: min(10.2489019034vw, 140px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_arrow {
    width: min(18.6666666667vw, 140px);
    margin-top: min(5.3333333333vw, 40px);
    margin-bottom: min(5.3333333333vw, 40px);
  }
}
.articleDetail_code .page-vision_theme {
  border: 1px solid #D70C19;
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_theme {
    width: min(78.6666666667vw, 590px);
    margin: 0 auto;
  }
}
.articleDetail_code .page-vision_theme_head {
  display: grid;
  place-content: center;
  width: 100%;
  background: #D70C19;
  color: #FFF;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_theme_head {
    aspect-ratio: 940/90;
    font-size: min(1.3909224012vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_theme_head {
    aspect-ratio: 590/143;
    font-size: min(3.7333333333vw, 28px);
  }
}
.articleDetail_code .page-vision_theme_text {
  color: #D70C19;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .articleDetail_code .page-vision_theme_text {
    padding: min(2.9282576867vw, 40px);
    font-size: min(1.756954612vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .articleDetail_code .page-vision_theme_text {
    padding: min(8vw, 60px) min(5.3333333333vw, 40px);
    font-size: min(4.8vw, 36px);
  }
}

/**
 * Article List
 */
@keyframes fadeInArticle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-articleDetail .c-article {
  min-height: 100vh;
  opacity: 0;
}
.page-articleDetail .c-article.is-show {
  animation: fadeInArticle 0.4s ease-out 0.2s forwards;
}
.page-articleDetail .c-article_error {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-articleDetail .c-article_error {
    width: min(70.2781844802vw, 960px);
    padding-top: min(14.6412884334vw, 200px);
    padding-bottom: min(7.3206442167vw, 100px);
    font-size: min(1.4641288433vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-articleDetail .c-article_error {
    width: min(89.3333333333vw, 670px);
    padding-top: min(26.6666666667vw, 200px);
    padding-bottom: min(13.3333333333vw, 100px);
    font-size: min(2.6666666667vw, 20px);
  }
}