@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  box-sizing: border-box;
}

li {
  list-style: none;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

button {
  border: none;
  background: none;
  outline: none;
  padding: 0;
}

[data-inview=fade-top] {
  transform: translateY(5rem);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
[data-inview=fade-top].is-inview {
  transform: translateY(0);
  opacity: 1;
}

[data-inview=fade-bottom] {
  transform: translateY(-5rem);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
[data-inview=fade-bottom].is-inview {
  transform: translateY(0);
  opacity: 1;
}

[data-inview=fade] {
  opacity: 0;
  transition: top 1s, transform 1s, opacity 1s;
}
[data-inview=fade].is-inview {
  opacity: 1;
}

:root {
  font-size: 0.7142857143vw;
  --main-color: #E8382F;
  --font-color: #222222;
  --noto: "Noto Sans JP", sans-serif;
  --robot: "Roboto Condensed", sans-serif;
}
@media screen and (min-width: 1400px) {
  :root {
    font-size: 11.4285714286px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    font-size: 2.5vw;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

body {
  font-family: var(--noto);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  font-weight: 500;
}

picture {
  display: block;
}

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

[x-cloak] {
  display: none !important;
}

a {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--font-color);
}

p {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
[x-cloak] {
  display: none !important;
}

label, button {
  cursor: pointer;
}

.c-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem 0;
  height: 7rem;
  position: sticky;
  top: -20rem;
  z-index: 11;
  transition: top 0.3s;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .c-header {
    padding-inline: 1.3rem 0;
    height: 5rem;
  }
}
.c-header.is-active {
  top: 0;
}
.c-header.is-ready {
  background-color: transparent;
}
.c-header.is-ready::before {
  display: none;
}
.c-header.is-ready .c-header__logo {
  visibility: hidden;
  pointer-events: none;
}
.c-header.is-ready .c-header__nav-toggle {
  background-color: var(--main-color);
}
.c-header.is-ready .c-header__nav-toggle > .in-bar {
  background-color: white;
}
.c-header::before {
  content: "";
  display: block;
  width: 55rem;
  height: 13.4rem;
  background-image: url(../images/header/logo-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-header::before {
    width: 34.5rem;
    height: 8.4rem;
  }
}
.c-header__logo {
  position: relative;
  z-index: 1;
}
.c-header__logo img {
  width: 31.8rem;
}
@media screen and (max-width: 768px) {
  .c-header__logo img {
    width: 19rem;
  }
}
.c-header__logo > .in-text {
  font-size: 1.1rem;
  position: absolute;
  top: 4.9rem;
  left: 0;
  color: white;
}
@media screen and (max-width: 768px) {
  .c-header__logo > .in-text {
    top: 2.9rem;
  }
}
.c-header__nav-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__nav-toggle {
    display: block;
    position: relative;
    width: 6.2rem;
    height: 5rem;
    z-index: 2;
  }
  .c-header__nav-toggle > .in-bar {
    width: 3rem;
    height: 0.1rem;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, top 0.3s, bottom 0.3s;
  }
  .c-header__nav-toggle > .in-bar--top {
    top: 2.1rem;
  }
  .c-header__nav-toggle > .in-bar--bottom {
    bottom: 2.1rem;
  }
}
.c-header__nav-toggle.is-active > .in-bar--top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
}
.c-header__nav-toggle.is-active > .in-bar--bottom {
  bottom: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
}
@media screen and (max-width: 768px) {
  .c-header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--font-color);
    max-height: 100vh;
    overflow-x: scroll;
    color: white;
    z-index: 1;
  }
}
.c-header__nav-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: white;
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .c-header__nav-inner {
    flex-direction: column;
    gap: 3rem;
    padding: 6rem 2rem 9rem;
    background-color: var(--font-color);
  }
}
.c-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-header__nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}
.c-header__nav-item {
  font-size: 1.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-header__nav-item {
    width: 100%;
    border-bottom: solid 1px white;
  }
}
.c-header__nav-item.is-current {
  color: var(--main-color);
}
.c-header__nav-item a, .c-header__nav-item button {
  transition: color 0.3s;
  font-family: var(--noto);
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-header__nav-item a, .c-header__nav-item button {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    height: 5.5rem;
  }
  .c-header__nav-item a::before, .c-header__nav-item button::before {
    content: "";
    display: block;
    width: 1.2rem;
    aspect-ratio: 1/1;
    background-image: url(../images/common/ic-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
@media (hover: hover) {
  .c-header__nav-item a:hover, .c-header__nav-item button:hover {
    color: var(--main-color);
  }
}
.c-header__nav-item--has-child a, .c-header__nav-item--has-child button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-header__nav-item--has-child a::before, .c-header__nav-item--has-child button::before {
    display: none;
  }
}
.c-header__nav-item--has-child a > .in-angle, .c-header__nav-item--has-child button > .in-angle {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-header__nav-item--has-child a > .in-angle, .c-header__nav-item--has-child button > .in-angle {
    display: none;
  }
}
.c-header__nav-item--has-child a > .in-angle path, .c-header__nav-item--has-child button > .in-angle path {
  transition: stroke 0.3s;
}
.c-header__nav-item--has-child a > .in-cross, .c-header__nav-item--has-child button > .in-cross {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__nav-item--has-child a > .in-cross, .c-header__nav-item--has-child button > .in-cross {
    display: block;
    width: 1.2rem;
    aspect-ratio: 1/1;
    position: relative;
    margin-right: 0.3rem;
  }
  .c-header__nav-item--has-child a > .in-cross::before, .c-header__nav-item--has-child a > .in-cross::after, .c-header__nav-item--has-child button > .in-cross::before, .c-header__nav-item--has-child button > .in-cross::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .c-header__nav-item--has-child a > .in-cross::after, .c-header__nav-item--has-child button > .in-cross::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (hover: hover) {
  .c-header__nav-item--has-child a:hover > .in-angle path, .c-header__nav-item--has-child button:hover > .in-angle path {
    stroke: var(--main-color);
  }
}
.c-header__entry {
  display: flex;
  width: 16rem;
  height: 7rem;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-header__entry {
    width: 100%;
    height: 8rem;
    gap: 1.3rem;
  }
}
.c-header__entry::before {
  content: "";
  display: block;
  border-bottom: solid 1.5rem var(--main-color);
  border-top: solid 1.5rem transparent;
  border-right: solid 3.2rem var(--main-color);
  border-left: solid 3.2rem transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.c-header__entry > .in-text {
  position: relative;
  z-index: 1;
  color: white;
  font-family: var(--robot);
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .c-header__entry > .in-text {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-header__entry > .in-text-jp {
    color: white;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-header__entry > .in-arrow {
    position: absolute;
    top: 50%;
    right: 3.2rem;
    transform: translate(0, -50%);
  }
  .c-header__entry > .in-arrow img {
    width: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-header__corpolate {
    color: white;
    font-size: 1.4rem;
    width: 100%;
  }
  .c-header__corpolate > .in-blank {
    margin-left: 0.5rem;
  }
}
.c-header--second::before {
  display: none;
}
.c-header--second .c-header__logo {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.c-header--second .c-header__logo > .in-text {
  color: var(--main-color);
  position: relative;
  top: auto;
  left: auto;
  font-size: 1.6rem;
}

.c-mega-menu {
  position: absolute;
  top: calc(100% + 2rem);
  left: -1.8rem;
  background-color: white;
  width: auto;
}
@media screen and (max-width: 768px) {
  .c-mega-menu {
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    width: 100%;
  }
}
.c-mega-menu__inner {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-mega-menu__inner {
    gap: 0;
    padding-block: 0 1rem;
    margin-top: -1rem;
  }
}
.c-mega-menu__item a, .c-mega-menu__item button {
  white-space: nowrap;
  position: relative;
  padding-left: 1.3rem;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-mega-menu__item a, .c-mega-menu__item button {
    height: 3.5rem;
    border-bottom: none;
  }
}
.c-mega-menu__item a::before, .c-mega-menu__item button::before {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.2rem;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (hover: hover) {
  .c-mega-menu__item a:hover, .c-mega-menu__item button:hover {
    color: var(--main-color);
  }
}
.c-mega-menu__item.is-current a {
  color: var(--main-color);
}

.c-footer--second {
  margin-top: 8.8rem;
}
@media screen and (max-width: 768px) {
  .c-footer--second {
    margin-top: 5rem;
  }
}

.c-footer-recruit {
  position: relative;
  padding-top: 13rem;
  overflow: hidden;
  background: linear-gradient(to top, var(--font-color) 0, var(--font-color) 9rem, var(--main-color) 9rem, var(--main-color) 100%);
}
@media screen and (max-width: 768px) {
  .c-footer-recruit {
    padding-top: 10rem;
    background: var(--main-color);
  }
}
.c-footer-recruit__bg-recruit {
  font-size: 22rem;
  color: white;
  font-family: var(--robot);
  position: absolute;
  line-height: 1;
  right: -1rem;
  top: -3rem;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__bg-recruit {
    font-size: 10rem;
    top: -1.3rem;
    right: 0;
  }
}
.c-footer-recruit__bg-info {
  font-size: 22rem;
  color: white;
  font-family: var(--robot);
  position: absolute;
  line-height: 1;
  left: calc(100% + 3rem);
  top: 16rem;
  opacity: 0.3;
  transform-origin: top left;
  transform: rotate(90deg);
  letter-spacing: -0.2rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__bg-info {
    font-size: 10rem;
    top: 8rem;
    left: calc(100% + 1.3rem);
  }
}
.c-footer-recruit__inner {
  position: relative;
  width: 96rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__inner {
    padding-bottom: 3rem;
  }
}
.c-footer-recruit__head {
  display: flex;
  align-items: flex-end;
  gap: 3.2rem;
  padding-inline: 4.8rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__head {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    padding-inline: 0;
  }
}
.c-footer-recruit__head-set {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__head-set {
    align-items: center;
    gap: 0.7rem;
  }
}
.c-footer-recruit__head-set > .in-sub {
  font-family: var(--robot);
  font-size: 2.6rem;
  color: white;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__head-set > .in-sub {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.c-footer-recruit__head-set > .in-main {
  font-size: 4.6rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__head-set > .in-main {
    font-size: 3rem;
  }
}
.c-footer-recruit__desc {
  color: white;
  font-size: 1.5rem;
}
.c-footer-recruit__btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn-wrap {
    margin-top: 2.4rem;
    gap: 1rem;
  }
}
.c-footer-recruit__btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 18rem;
  background-color: white;
  gap: 3rem;
  border: solid 0.2rem var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn {
    height: 10rem;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}
.c-footer-recruit__btn > .in-text {
  font-size: 3.2rem;
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn > .in-text {
    font-size: 1.5rem;
  }
}
.c-footer-recruit__btn > .in-arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn > .in-arrow {
    right: 1.3rem;
    top: 6.7rem;
    transform: none;
  }
}
.c-footer-recruit__btn > .in-arrow svg {
  width: 3.5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn > .in-arrow svg {
    width: 1.4rem;
  }
}
.c-footer-recruit__btn > .in-arrow svg path {
  stroke-width: 0.1rem;
}
.c-footer-recruit__btn--qa {
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--qa {
    padding-right: 0;
    gap: 1rem;
  }
}
.c-footer-recruit__btn--qa > .in-icon svg {
  width: 8rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--qa > .in-icon svg {
    width: 5.4rem;
  }
}
.c-footer-recruit__btn--overview {
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--overview {
    padding-right: 0;
  }
}
.c-footer-recruit__btn--overview > .in-icon svg {
  width: 4.9rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--overview > .in-icon svg {
    width: 2.6rem;
  }
}
.c-footer-recruit__btn--entry {
  grid-column: span 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--entry {
    flex-direction: row;
  }
}
.c-footer-recruit__btn--entry::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: solid 8.2rem transparent;
  border-bottom: solid 8.2rem var(--main-color);
  border-left: solid 20rem transparent;
  border-right: solid 20rem var(--main-color);
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--entry::before {
    border-top-width: 4.9rem;
    border-bottom-width: 4.9rem;
    border-right-width: 11.5rem;
    border-left-width: 11.5rem;
  }
}
.c-footer-recruit__btn--entry > .in-text {
  font-size: 7rem;
  font-family: var(--robot);
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--entry > .in-text {
    font-size: 4rem;
  }
}
.c-footer-recruit__btn--entry > .in-text-jp {
  font-size: 2.6rem;
  color: var(--main-color);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--entry > .in-text-jp {
    font-size: 1.4rem;
    text-shadow: -0.2rem -0.2rem 0 white, 0.2rem -0.2rem 0 white, -0.2rem 0.2rem 0 white, 0.2rem 0.2rem 0 white;
  }
}
.c-footer-recruit__btn--entry > .in-arrow {
  transform: rotate(-45deg) translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--entry > .in-arrow {
    top: 50%;
    right: 1.5rem;
  }
}
.c-footer-recruit__btn--entry > .in-arrow svg {
  width: 6rem;
}
@media screen and (max-width: 768px) {
  .c-footer-recruit__btn--entry > .in-arrow svg {
    width: 3rem;
  }
}
.c-footer-recruit__btn--entry > .in-arrow svg path {
  stroke: white;
}

.c-footer-nav {
  background-color: var(--font-color);
  padding-top: 6rem;
  color: white;
}
.c-footer-nav__inner {
  width: 124rem;
  max-width: calc(100% - 7rem);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-nav__logo-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-nav__logo {
    width: 30rem;
    margin-inline: auto;
    text-align: left;
  }
}
.c-footer-nav__logo img {
  width: 32rem;
  margin-bottom: 1rem;
}
.c-footer-nav__logo > .in-text {
  font-size: 1.6rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__logo > .in-text {
    font-size: 1.5rem;
  }
}
.c-footer-nav__address {
  font-size: 1.4rem;
  font-style: normal;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__address {
    margin-top: 2rem;
  }
}
.c-footer-nav__tel {
  font-size: 1.4rem;
}
.c-footer-nav__map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.7rem;
  border: solid 1px white;
  font-size: 1.5rem;
  width: 20.4rem;
  height: 4.2rem;
  color: white;
  margin-top: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__map-link {
    height: 4rem;
  }
}
.c-footer-nav__map-link > .in-blank svg {
  width: 1.2rem;
}
.c-footer-nav__nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__nav-wrap {
    width: 100%;
    flex-direction: column;
    gap: 3rem;
  }
}
.c-footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-nav__item {
    width: 50%;
  }
}
.c-footer-nav__item > a {
  color: white;
  padding-left: 2.3rem;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__item > a {
    font-size: 1.5rem;
  }
}
.c-footer-nav__item > a::before {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/ic-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.c-footer-nav__item > .in-title {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__item > .in-title {
    font-size: 1.5rem;
  }
}
.c-footer-nav__item--full {
  width: 100%;
}
.c-footer-nav__sub-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__sub-list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-nav__sub-item {
    width: 100%;
  }
}
.c-footer-nav__sub-item a {
  padding-left: 1.3rem;
  font-size: 1.5rem;
  color: white;
  position: relative;
}
.c-footer-nav__sub-item a::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.2rem;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.c-footer-nav__banner-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3.7rem;
  width: 124rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__banner-list {
    margin-top: 4rem;
    justify-content: center;
  }
}
.c-footer-nav__banner-item img {
  height: 4rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-footer-nav__banner-item img:hover {
    opacity: 0.7;
  }
}
.c-footer-nav__meta-copyright {
  width: 100%;
  margin-top: 2rem;
  border-top: solid 1px #9C9C9C;
  padding-block: 2.1rem 4.8rem;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__meta-copyright {
    padding-block: 2rem 2.6rem;
  }
}
.c-footer-nav__meta-copyright-inner {
  width: 124rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-footer-nav__meta-copyright-inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.c-footer-nav__meta-list {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
.c-footer-nav__meta-item a {
  color: white;
  font-size: 1.4rem;
}
.c-footer-nav__meta-item a > .in-blank {
  margin-left: 0.5rem;
}
.c-footer-nav__meta-item a > .in-blank svg {
  width: 1.2rem;
}
.c-footer-nav__copyright {
  font-size: 1.2rem;
}

.c-heading-set {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-heading-set {
    gap: 0.5rem;
  }
}
.c-heading-set__sub {
  font-size: 2.6rem;
  font-family: var(--robot);
  color: var(--main-color);
  font-variant: small-caps;
}
@media screen and (max-width: 768px) {
  .c-heading-set__sub {
    font-size: 2rem;
  }
}
.c-heading-set__main {
  font-size: 4.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-heading-set__main {
    font-size: 3rem;
  }
}
.c-heading-set--white {
  color: white;
}
.c-heading-set--white .c-heading-set__sub {
  color: white;
}
.c-heading-set--white .c-heading-set__main {
  color: white;
}
.c-heading-set--center {
  justify-content: center;
  text-align: center;
}

.c-button-skew {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 22.4rem;
  height: 6rem;
  background: linear-gradient(105deg, transparent 0, transparent 1.5rem, var(--main-color) 1.5rem, var(--main-color) calc(100% - 1.5rem), transparent calc(100% - 1.5rem), transparent);
  padding-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .c-button-skew {
    width: 19.3rem;
    height: 4.5rem;
  }
}
.c-button-skew__text {
  color: white;
  font-size: 1.5rem;
}
.c-button-skew__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button-skew__arrow svg {
  width: 1.7rem;
}
.c-button-skew__arrow svg path {
  stroke: white;
}

.c-people-card {
  position: relative;
}
.c-people-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 36/25;
  margin-bottom: 1.3rem;
}
.c-people-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.c-people-card__development {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 0.4rem 0.8rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-people-card__development {
    font-size: 1.8rem;
  }
}
.c-people-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-people-card__title {
    font-size: 2rem;
  }
}
.c-people-card__name {
  font-size: 1.5rem;
  color: var(--main-color);
}
@media (hover: hover) {
  .c-people-card:hover .c-people-card__image img {
    transform: scale(1.05);
  }
}

.c-over-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-post-header {
  display: flex;
  height: 27.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-post-header {
    flex-direction: column;
  }
}
.c-post-header__title-wrap {
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding-left: 12rem;
  width: 78rem;
  flex-shrink: 0;
  color: white;
}
@media screen and (max-width: 768px) {
  .c-post-header__title-wrap {
    width: 100%;
    height: 8.7rem;
    padding-left: 2.2rem;
    gap: 1rem;
  }
}
.c-post-header__interview-title {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  color: white;
}
.c-post-header__interview-title > .in-text {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--robot);
}
@media screen and (max-width: 768px) {
  .c-post-header__interview-title > .in-text {
    font-size: 1.3rem;
  }
}
.c-post-header__interview-title > .in-num {
  font-size: 4rem;
  font-weight: bold;
  font-family: var(--robot);
  transform: translate(0, 0.3rem);
}
@media screen and (max-width: 768px) {
  .c-post-header__interview-title > .in-num {
    font-size: 2rem;
  }
}
.c-post-header__sub-title {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-post-header__sub-title {
    font-size: 1.3rem;
  }
}
.c-post-header__main-title {
  font-size: 4rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-post-header__main-title {
    font-size: 2.3rem;
  }
}
.c-post-header__mv {
  width: calc(100% - 78rem);
  flex: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-post-header__mv {
    width: 100%;
    height: 15.4rem;
  }
}
.c-post-header__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-header__interviewee {
  background-color: #EFEFEF;
  padding: 2.9rem 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  min-width: 37rem;
}
@media screen and (max-width: 768px) {
  .c-post-header__interviewee {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    background-color: white;
    padding: 1.6rem 2rem;
  }
}
.c-post-header__interviewee-initial {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-post-header__interviewee-initial {
    font-size: 1.3rem;
  }
}
.c-post-header__interviewee-position {
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-post-header__interviewee-position {
    font-size: 1.5rem;
  }
}
.c-post-header__interviewee-entry-date {
  font-size: 1.5rem;
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-post-header__interviewee-entry-date {
    font-size: 1.3rem;
  }
}
.c-post-header--interview .c-post-header__title-wrap {
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-post-header--interview .c-post-header__title-wrap {
    height: 12rem;
    gap: 0.5rem;
  }
}

.c-breadcrumb {
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-block: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding-block: 1.2rem;
  }
}
.c-breadcrumb__item {
  font-size: 1.2rem;
}
.c-breadcrumb__item a {
  color: #A0A0A0;
}
.c-breadcrumb__item::after {
  content: "/";
  color: #A0A0A0;
  margin-left: 0.6rem;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}

.c-faq-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .c-faq-list {
    gap: 1rem;
  }
}
.c-faq-list__item {
  background-color: white;
}
.c-faq-list__item.is-open .c-faq-list__button::after {
  transform: translate(-50%, -50%);
}
.c-faq-list__title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 3rem 8rem;
  padding-block: 1.1rem;
  position: relative;
  cursor: pointer;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-faq-list__title {
    padding-inline: 1.8rem 5.8rem;
  }
}
.c-faq-list__title::before {
  content: "Q.";
  font-family: var(--robot);
  color: var(--main-color);
  font-size: 3.3rem;
  flex-shrink: 0;
}
.c-faq-list__button {
  position: absolute;
  right: 3.8rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.3rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-faq-list__button {
    right: 1.5rem;
  }
}
.c-faq-list__button::before, .c-faq-list__button::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.2rem;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-faq-list__button::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: transform 0.3s;
}
.c-faq-list__data {
  border-top: solid 1px #929292;
}
.c-faq-list__data-inner {
  padding-block: 3rem 1.1rem;
  padding-inline: 7rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-faq-list__data-inner {
    padding-inline: 3.2rem 1.5rem;
    padding-block: 1.5rem;
  }
}
.c-faq-list__data-inner::before {
  content: "A.";
  font-size: 2.3rem;
  font-family: var(--robot);
  flex-shrink: 0;
  margin-top: -0.8rem;
}

.c-recruit-card {
  background-color: white;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .c-recruit-card {
    padding: 2rem 2.4rem;
  }
}
.c-recruit-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 50/26;
  margin-bottom: 2rem;
}
.c-recruit-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-recruit-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .c-recruit-card__title {
    font-size: 2rem;
  }
}
.c-recruit-card__desc {
  font-size: 1.5rem;
  line-height: 1.7;
}
.c-recruit-card__button-list {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: solid 1px var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-recruit-card__button-list {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-card__button-list .c-button-skew {
    width: calc(50% + 1rem);
    margin-inline: -0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-card__button-list .c-button-skew__text {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.c-dot-list {
  display: flex;
  flex-direction: column;
}
.c-dot-list__item {
  list-style: none;
}
.c-dot-list__item::before {
  content: "・";
  margin-right: 0.5rem;
}

.c-flow {
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  background-color: white;
  padding-block: 13rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-flow {
    padding: 2rem 3rem 4rem;
  }
}
.c-flow__head {
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-flow__head {
    padding-bottom: 3.5rem;
  }
}
.c-flow__head > .in-bg {
  font-size: 14rem;
  font-variant: small-caps;
  color: var(--main-color);
  opacity: 0.3;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-flow__head > .in-bg {
    font-size: 9rem;
  }
}
.c-flow__head > .in-title {
  font-size: 3.2rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-flow__head > .in-title {
    font-size: 2rem;
  }
}
.c-flow__list {
  width: 58.3rem;
  height: 23rem;
  background-image: url(../images/top/flow-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11rem;
}
@media screen and (max-width: 768px) {
  .c-flow__list {
    background-image: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 3.2rem;
    margin-top: -3rem;
  }
}
.c-flow__item {
  writing-mode: vertical-rl;
  color: white;
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
}
.c-flow__item:nth-of-type(2) {
  margin-left: 1rem;
}
.c-flow__item:nth-of-type(3) {
  margin-left: -2rem;
}
.c-flow__item:nth-of-type(4) {
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .c-flow__item {
    position: relative;
    writing-mode: horizontal-tb;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5.6rem;
    background-color: #FF6E66;
    width: 100%;
    counter-increment: flowCount;
  }
  .c-flow__item::before {
    content: counter(flowCount, decimal-leading-zero);
    font-size: 4.5rem;
    color: white;
    opacity: 0.3;
    position: absolute;
    top: -0.7rem;
    left: -0.3rem;
    font-weight: bold;
  }
  .c-flow__item::after {
    content: "";
    display: block;
    border: solid 1.9rem transparent;
    border-top: solid 1.8rem #FF6E66;
    border-bottom: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translate(-50%, 0);
  }
  .c-flow__item:nth-of-type(2) {
    background-color: #F96158;
    margin: 0;
  }
  .c-flow__item:nth-of-type(2)::after {
    border-top-color: #F96158;
  }
  .c-flow__item:nth-of-type(3) {
    background-color: #F4534B;
    margin: 0;
  }
  .c-flow__item:nth-of-type(3)::after {
    border-top-color: #F4534B;
  }
  .c-flow__item:nth-of-type(4) {
    background-color: #EE463D;
    margin: 0;
  }
  .c-flow__item:nth-of-type(4)::after {
    display: none;
  }
}
.c-flow__item > .in-small {
  writing-mode: horizontal-tb;
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-flow__item > .in-small {
    margin-top: 0;
  }
}

.c-job-card {
  background-color: white;
  padding: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.6rem;
}
@media screen and (max-width: 768px) {
  .c-job-card {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
}
.c-job-card:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .c-job-card:nth-of-type(2n) {
    flex-direction: column;
  }
}
.c-job-card__thumb {
  width: 48rem;
  aspect-ratio: 48/29;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-job-card__thumb {
    width: 100%;
  }
}
.c-job-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-job-card__desc-wrap {
  flex: auto;
}
@media screen and (max-width: 768px) {
  .c-job-card__desc-wrap {
    width: 100%;
  }
}
.c-job-card__title {
  display: flex;
  align-items: center;
  padding-inline: 2rem;
  padding-block: 1rem;
  background-color: var(--main-color);
  height: 6.4rem;
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-job-card__title {
    height: 4.3rem;
    width: 100%;
    margin-bottom: 0;
  }
}
.c-job-card__title::after {
  content: "";
  border-left: solid 9rem transparent;
  border-right: solid 9rem #E8382F;
  border-top: solid 3.2rem transparent;
  border-bottom: solid 3.2rem #E8382F;
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .c-job-card__title::after {
    border-top-width: 2.2rem;
    border-bottom-width: 2.2rem;
    border-left-width: 4.8rem;
    border-right-width: 4.8rem;
  }
}
.c-job-card__title > .in-text {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-job-card__title > .in-text {
    font-size: 2rem;
  }
}
.c-job-card__copy {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-job-card__copy {
    font-size: 1.8rem;
  }
}
.c-job-card__desc {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-job-card__desc {
    margin-bottom: 1.5rem;
  }
  .c-job-card__desc:last-of-type {
    margin-bottom: 0;
  }
}

.c-heading-bg-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .c-heading-bg-sub {
    gap: 1rem;
  }
}
.c-heading-bg-sub__sub-title {
  font-size: 2.2rem;
  color: var(--main-color);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-heading-bg-sub__sub-title {
    font-size: 1.6rem;
  }
}
.c-heading-bg-sub__main-title {
  font-size: 4.6rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-heading-bg-sub__main-title {
    font-size: 3rem;
  }
}
.c-heading-bg-sub__bg-text {
  font-size: 10rem;
  font-weight: 600;
  font-family: var(--robot);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  color: #FBE8E7;
  line-height: 0.8;
}
@media screen and (max-width: 768px) {
  .c-heading-bg-sub__bg-text {
    font-size: 5.5rem;
  }
}
.c-heading-bg-sub--bg-white .c-heading-bg-sub__bg-text {
  color: white;
}
.c-heading-bg-sub--bg-large .c-heading-bg-sub__bg-text {
  font-size: 13.4rem;
}
@media screen and (max-width: 768px) {
  .c-heading-bg-sub--bg-large .c-heading-bg-sub__bg-text {
    font-size: 5.5rem;
  }
}

.c-data-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-data-list {
    grid-template-columns: 1fr;
    gap: 1rem 0;
    max-width: 100%;
  }
}
.c-data-list__item {
  grid-column: span 2;
  border: solid 0.3rem var(--main-color);
  background-color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-data-list__item {
    grid-column: span 1;
    padding: 1rem 2rem;
    width: 100%;
    box-sizing: border-box;
    max-width: calc(100% - 1rem);
  }
}
.c-data-list__item > .in-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-data-list__item > .in-title {
    font-size: 2rem;
  }
}
.c-data-list__item > .in-data-wrap {
  display: flex;
  align-items: flex-end;
}
.c-data-list__item > .in-data-wrap > .in-data {
  font-size: 9rem;
  font-variant: small-caps;
  color: var(--main-color);
  font-family: var(--robot);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-data-list__item > .in-data-wrap > .in-data {
    font-size: 8rem;
  }
}
.c-data-list__item > .in-data-wrap > .in-unit {
  font-size: 2.4rem;
  font-weight: bold;
  transform: translate(0, -1.2rem);
}
@media screen and (max-width: 768px) {
  .c-data-list__item > .in-data-wrap > .in-unit {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-data-list__item > .in-data-wrap--width-bottom-remarks {
    position: relative;
    transform: translate(0, -1rem);
  }
}
.c-data-list__item > .in-data-wrap--width-bottom-remarks > .in-remarks {
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  transform: translate(0, -1.2rem);
}
@media screen and (max-width: 768px) {
  .c-data-list__item > .in-data-wrap--width-bottom-remarks > .in-remarks {
    position: absolute;
    right: 0;
    top: calc(100% + 1rem);
  }
}
.c-data-list__item > .in-data-wrap--width-top-remarks {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.c-data-list__item > .in-data-wrap--width-top-remarks > .in-remarks {
  font-size: 2.2rem;
  font-weight: bold;
}
.c-data-list__item > .in-data-wrap--width-top-remarks > .in-data {
  font-size: 5.2rem;
  font-family: var(--noto);
}
.c-data-list__item--gendar {
  grid-column: span 3;
  justify-content: center;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--gendar {
    grid-column: span 1;
    padding: 2rem;
    padding-right: 4rem;
  }
}
.c-data-list__item--gendar > .in-data-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.c-data-list__item--gendar > .in-data-wrap > .in-gendar {
  font-size: 2.4rem;
  font-weight: bold;
}
.c-data-list__item--gendar > .in-data-wrap > .in-data {
  position: relative;
}
.c-data-list__item--gendar > .in-data-wrap > .in-data > .in-unit {
  font-size: 2.4rem;
  position: absolute;
  bottom: 1.5rem;
  left: 100%;
  font-family: var(--noto);
  color: var(--font-color);
}
.c-data-list__item--gendar > .in-icon {
  width: 13.8rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--gendar > .in-icon {
    width: 7rem;
    transform: translate(1rem, 0);
  }
}
.c-data-list__item--year {
  grid-column: span 3;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--year {
    padding: 2rem;
    grid-column: span 1;
  }
}
.c-data-list__item--holiday, .c-data-list__item--event {
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--holiday, .c-data-list__item--event {
    grid-column: span 1;
    padding: 2rem;
  }
}
.c-data-list__item--holiday > .in-title, .c-data-list__item--event > .in-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--holiday > .in-title, .c-data-list__item--event > .in-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.c-data-list__item--holiday {
  grid-column: span 3;
  grid-row: span 2;
  padding-block: 4rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--holiday {
    padding-block: 2rem;
    grid-column: span 1;
    grid-row: span 1;
  }
}
.c-data-list__item--holiday > .in-data-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--holiday > .in-data-list {
    gap: 2rem 3rem;
  }
}
.c-data-list__item--holiday > .in-data-list > .in-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-data-list__item--holiday > .in-data-list > .in-item > .in-icon {
  width: 10rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--holiday > .in-data-list > .in-item > .in-icon {
    width: 8.5rem;
  }
}
.c-data-list__item--holiday > .in-data-list > .in-item > .in-label {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--holiday > .in-data-list > .in-item > .in-label {
    font-size: 1.5rem;
  }
}
.c-data-list__item--event {
  grid-column: span 4;
  justify-content: center;
  padding-block: 4rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--event {
    grid-column: span 1;
    grid-row: span 1;
    padding-block: 2rem;
  }
}
.c-data-list__item--event > .in-data-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--event > .in-data-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}
.c-data-list__item--event > .in-data-list > .in-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-data-list__item--event > .in-data-list > .in-item > .in-icon {
  height: 8.9rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--event > .in-data-list > .in-item > .in-icon {
    height: 7rem;
    width: auto;
    margin-bottom: 0.5rem;
  }
}
.c-data-list__item--event > .in-data-list > .in-item > .in-label {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--event > .in-data-list > .in-item > .in-label {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-data-list__item--event > .in-data-list > .in-item:last-of-type > .in-icon {
    height: 5rem;
    margin-block: 1rem;
  }
}
.c-data-list__item--clothing {
  background-image: url(../images/environment/data-clothing.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .c-data-list__item--clothing {
    height: 25rem;
    background-size: 100% auto;
  }
}
.c-data-list__item--clothing > .in-data-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-block: auto;
  gap: 1rem;
}
.c-data-list__item--clothing > .in-data-wrap > .in-remarks {
  font-size: 2.6rem;
  font-weight: bold;
}
.c-data-list__item--clothing > .in-data-wrap > .in-data {
  font-size: 6rem;
}

.c-work-style-card {
  background-color: white;
  padding: 1.5rem 2rem;
}
.c-work-style-card__head {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding-inline: 1.3rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px var(--main-color);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-work-style-card__head {
    gap: 1.2rem;
  }
}
.c-work-style-card__icon {
  width: 6.7rem;
  flex-shrink: 0;
}
.c-work-style-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  flex: auto;
}
@media screen and (max-width: 768px) {
  .c-work-style-card__title {
    font-size: 2rem;
  }
}
.c-work-style-card__desc {
  padding-inline: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-work-style-card__desc {
    padding-inline: 0;
  }
}
.c-work-style-card__desc p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.c-work-style-card__desc p:last-of-type {
  margin-bottom: 0;
}

.c-square-dot-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-block: 0.5rem 1rem;
}
.c-square-dot-list__item {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.7;
  font-size: 1.3rem;
}
.c-square-dot-list__item::before {
  content: "";
  display: block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  background-color: var(--main-color);
  flex-shrink: 0;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-square-dot-list__item::before {
    margin-top: 0.9rem;
  }
}

.c-environment-beneft-card {
  border: solid 1px var(--main-color);
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .c-environment-beneft-card {
    padding: 2rem;
    border-width: 0.3rem;
  }
}
.c-environment-beneft-card__icon {
  width: 13rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-environment-beneft-card__icon {
    width: 11rem;
  }
}
.c-environment-beneft-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
.c-environment-beneft-card p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.c-environment-beneft-card p:last-of-type {
  margin-bottom: 0;
}

.c-dl {
  display: flex;
  flex-direction: column;
}
.c-dl__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 2rem;
  border-bottom: solid 1px var(--main-color);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-dl__item {
    flex-direction: column;
  }
}
.c-dl__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.c-dl__title {
  font-size: 1.5rem;
  font-weight: bold;
  width: 18rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-dl__title {
    width: 100%;
  }
}
.c-dl__data {
  flex: auto;
  font-size: 1.5rem;
}

.c-marquee-swiper {
  margin-bottom: 2rem;
}
.c-marquee-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.c-business-card {
  background-color: white;
  display: flex;
  align-items: flex-start;
  padding: 4rem;
  position: relative;
  gap: 4.6rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-business-card {
    flex-direction: column;
    padding: 2rem;
    gap: 0;
  }
}
.c-business-card:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .c-business-card:nth-of-type(2n) {
    flex-direction: column;
  }
}
.c-business-card:nth-of-type(2n) .c-business-card__desc-wrap {
  padding-right: 0;
  padding-left: 8rem;
}
@media screen and (max-width: 768px) {
  .c-business-card:nth-of-type(2n) .c-business-card__desc-wrap {
    padding: 0;
  }
}
.c-business-card:nth-of-type(2n) .c-business-card__decoration-text {
  right: auto;
  left: -0.5rem;
  transform: translate(-50%, -100%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .c-business-card:nth-of-type(2n) .c-business-card__decoration-text {
    display: none;
  }
}
.c-business-card__thumb {
  width: 36.4rem;
  aspect-ratio: 364/290;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-business-card__thumb {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.c-business-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-business-card__desc-wrap {
  flex: auto;
  padding-right: 8rem;
}
@media screen and (max-width: 768px) {
  .c-business-card__desc-wrap {
    padding: 0;
  }
}
.c-business-card__desc-wrap p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.c-business-card__desc-wrap p:last-of-type {
  margin-bottom: 0;
}
.c-business-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: solid 1px var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-business-card__head {
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
.c-business-card__number-wrap {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  gap: 0.5rem;
}
.c-business-card__number-title {
  font-family: var(--robot);
  font-size: 2rem;
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-business-card__number-title {
    font-size: 1.2rem;
  }
}
.c-business-card__number {
  font-family: var(--robot);
  font-size: 3rem;
  color: var(--main-color);
  font-weight: bold;
  transform: translate(0, 0.2rem);
}
@media screen and (max-width: 768px) {
  .c-business-card__number {
    font-size: 2rem;
  }
}
.c-business-card__title {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-business-card__title {
    font-size: 2.4rem;
  }
}
.c-business-card__decoration-text {
  font-size: 7.8rem;
  font-weight: bold;
  color: var(--main-color);
  opacity: 0.3;
  position: absolute;
  transform-origin: center bottom;
  top: 50%;
  right: -0.5rem;
  line-height: 1;
  transform: translate(50%, -100%) rotate(-90deg);
  letter-spacing: -0.4rem;
}
@media screen and (max-width: 768px) {
  .c-business-card__decoration-text {
    display: none;
  }
}

.c-heading-simple {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-heading-simple {
    font-size: 2.6rem;
    margin-bottom: 2.8rem;
  }
}

.c-attention {
  display: inline-block;
  padding-top: 1rem;
  color: var(--main-color);
  font-size: 1.2rem;
}
.c-attention--center {
  width: 100%;
  text-align: center;
}

.c-interview-section {
  display: flex;
  gap: 4.5rem;
  width: 128rem;
  max-width: calc(100% - 4rem);
  margin-inline: 0 auto;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-interview-section {
    flex-direction: column;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
  }
}
.c-interview-section:nth-of-type(2n) {
  flex-direction: row-reverse;
  margin-inline: auto 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-interview-section:nth-of-type(2n) {
    margin-inline: auto;
    flex-direction: column;
  }
}
.c-interview-section:nth-of-type(2n)::before {
  content: "";
  display: block;
  width: 100vw;
  height: 210%;
  position: absolute;
  right: 0;
  top: 32%;
  transform: translate(0, -50%);
  background: linear-gradient(-14deg, transparent 0%, transparent 45rem, white 45rem, white calc(100% - 45rem), transparent calc(100% - 45rem), transparent 100%);
}
@media screen and (max-width: 768px) {
  .c-interview-section:nth-of-type(2n)::before {
    background: linear-gradient(-10deg, transparent 0%, transparent 10rem, white 10rem, white calc(100% - 10rem), transparent calc(100% - 10rem), transparent 100%);
    width: calc(100% + 4rem);
    left: -2rem;
    top: 47%;
    height: 120%;
  }
}
.c-interview-section__img {
  width: 69rem;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-interview-section__img {
    width: 100%;
    margin-bottom: 2rem;
    display: none;
  }
}
.c-interview-section__desc-wrap {
  flex: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-interview-section__desc-wrap {
    width: 100%;
  }
  .c-interview-section__desc-wrap img {
    margin-bottom: 2rem;
  }
}
.c-interview-section__title {
  font-size: 3.2rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-interview-section__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.c-interview-section__question {
  font-size: 1.5rem;
  color: var(--main-color);
  margin-bottom: 1.5rem;
}
.c-interview-section__answer p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.c-interview-section__answer p:last-of-type {
  margin-bottom: 0;
}

.c-interview-card__thumb {
  position: relative;
  margin-bottom: 1.2rem;
}
.c-interview-card__type {
  background-color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-interview-card__type {
    font-size: 1.8rem;
  }
}
.c-interview-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-interview-card__title {
    font-size: 1.8rem;
  }
}
.c-interview-card__entry-date {
  font-size: 1.5rem;
  color: var(--main-color);
}

.p-top__mv {
  padding-left: 7rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, #ED6059 0, #ED6059 24rem, transparent 24rem, transparent 100%);
}
@media screen and (max-width: 768px) {
  .p-top__mv {
    padding-left: 3rem;
    background: linear-gradient(to top, #ED6059 0, #ED6059 6rem, transparent 6rem, transparent 100%);
  }
}
.p-top__mv .swiper-slide img {
  filter: grayscale(1);
  transition: filter 3s;
  transition-delay: 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__mv .swiper-initialized .swiper-slide img {
  filter: grayscale(0);
}
.p-top__text-image-keep {
  position: absolute;
  bottom: 10rem;
  left: 13rem;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  .p-top__text-image-keep {
    left: 4rem;
    bottom: 14rem;
  }
}
.p-top__text-image-keep img {
  width: 60rem;
}
@media screen and (max-width: 768px) {
  .p-top__text-image-keep img {
    width: 35rem;
  }
}
.p-top__mv-copy {
  font-size: 2.8rem;
  font-weight: 600;
  position: absolute;
  left: 14rem;
  bottom: 8.4rem;
  z-index: 11;
  text-shadow: 0 0 1rem white;
}
@media screen and (max-width: 768px) {
  .p-top__mv-copy {
    color: white;
    text-shadow: none;
    font-size: 2rem;
    line-height: 2;
    left: 5.8rem;
    bottom: 7.8rem;
  }
}
.p-top__scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  transform-origin: left center;
  transform: rotate(-90deg);
  bottom: 0;
  left: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-top__scroll {
    left: 1.5rem;
    bottom: 5rem;
  }
}
.p-top__scroll > .in-text {
  color: var(--main-color);
  font-size: 1.5rem;
  font-family: var(--robot);
}
.p-top__scroll-bar {
  width: 30rem;
  height: 0.8rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__scroll-bar {
    width: 15rem;
  }
}
.p-top__scroll-bar > .in-bar {
  width: 100%;
  height: 0.15rem;
  background-color: var(--main-color);
}
.p-top__scroll-bar > .in-dot {
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--main-color);
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 100%;
  animation: dotSlide 4s infinite linear;
}
@keyframes dotSlide {
  0% {
    right: -1rem;
  }
  100% {
    right: 100%;
  }
}
.p-top__message {
  position: relative;
  z-index: 2;
  padding-top: 12rem;
  background: linear-gradient(170deg, #ED6059 0, #ED6059 calc(100% - 18vw), transparent calc(100% - 18vw), transparent 100%);
  padding-bottom: 26rem;
}
@media screen and (max-width: 768px) {
  .p-top__message {
    padding-block: 6rem 10rem;
  }
}
.p-top__message-bg-text {
  position: absolute;
  font-size: 22rem;
  font-family: var(--robot);
  left: 18rem;
  top: 12rem;
  transform: rotate(90deg);
  color: white;
  opacity: 0.3;
  transform-origin: left top;
  font-variant: small-caps;
}
@media screen and (max-width: 768px) {
  .p-top__message-bg-text {
    top: calc(100% - 58rem);
    font-size: 13rem;
    left: 11rem;
  }
}
.p-top__message-inner {
  position: relative;
  width: 95rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
@media screen and (max-width: 768px) {
  .p-top__message-inner {
    flex-direction: column;
    gap: 5rem;
  }
}
.p-top__message-desc-wrap {
  width: 52.4rem;
}
@media screen and (max-width: 768px) {
  .p-top__message-desc-wrap {
    width: 100%;
  }
}
.p-top__message-image {
  width: 31.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__message-image {
    width: 28rem;
    margin-left: auto;
  }
}
.p-top__message-title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__message-title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}
.p-top__message-desc {
  font-size: 1.5rem;
}
.p-top__message-desc p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.p-top__message-desc p:last-of-type {
  margin-bottom: 0;
}
.p-top__message-name {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__message-name {
    margin-top: 1.5rem;
    text-align: right;
  }
}
.p-top__message-name > .in-position {
  font-size: 1.5rem;
}
.p-top__message-name > .in-name {
  font-size: 2.2rem;
  margin-left: 0.5rem;
}
.p-top__about {
  margin-top: -18vw;
  background-color: #EFEFEF;
  position: relative;
}
.p-top__about-bg {
  width: 95rem;
  position: absolute;
  top: -1rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top__about-bg {
    width: 36rem;
  }
}
.p-top__about-inner {
  display: flex;
  align-items: center;
  gap: 6.4rem;
  padding-right: 12rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__about-inner {
    flex-direction: column-reverse;
    padding-right: 0;
    align-items: flex-start;
    gap: 5rem;
  }
}
.p-top__about-image {
  margin-top: 12vw;
  width: 72rem;
}
@media screen and (max-width: 768px) {
  .p-top__about-image {
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about-image img {
    width: 38rem;
  }
}
.p-top__about-desc-wrap {
  width: 48rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top__about-desc-wrap {
    padding-inline: 2rem;
    padding-top: 10rem;
    width: 100%;
  }
}
.p-top__about-desc-wrap .c-heading-set {
  margin-bottom: 2.6rem;
}
.p-top__about-desc-wrap :where(p) {
  font-size: 1.5rem;
  line-height: 1.8;
}
.p-top__about-desc-wrap .c-button-skew {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__about-desc-wrap .c-button-skew {
    margin-top: 3rem;
  }
}
.p-top__about-copy {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-top__job {
  background: linear-gradient(170deg, transparent 0, transparent 18vw, #ED6059 18vw, #ED6059 calc(100% - 18vw), transparent calc(100% - 18vw), transparent 100%);
  padding-top: 19vw;
  padding-bottom: 14vw;
  margin-top: -19vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__job {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}
.p-top__job::before {
  content: "";
  display: block;
  width: 17.8rem;
  height: 73.7rem;
  position: absolute;
  right: 0;
  top: -13vw;
  background-image: url(../images/top/about-a2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
@media screen and (max-width: 768px) {
  .p-top__job::before {
    display: none;
  }
}
.p-top__job-inner {
  width: 95rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  color: white;
}
.p-top__job-head {
  position: relative;
  margin-bottom: 2rem;
}
.p-top__job-head .c-heading-set {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top__job-bg-text {
  text-align: center;
  font-variant: small-caps;
  font-size: 24rem;
  font-family: var(--robot);
  opacity: 0.3;
  line-height: 19rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__job-bg-text {
    font-size: 11rem;
    line-height: 9rem;
    padding-bottom: 0;
  }
}
.p-top__job-desc {
  width: 68rem;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top__job-desc {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.p-top__job-copy {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}
.p-top__job-link-list {
  padding-left: 12rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .p-top__job-link-list {
    padding-inline: 2rem;
    grid-template-columns: 1fr;
  }
}
.p-top__job-link {
  position: relative;
  overflow: hidden;
}
.p-top__job-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--font-color);
  opacity: 0.4;
  position: absolute;
  transition: opacity 0.3s;
}
.p-top__job-link img {
  transition: transform 0.3s;
}
.p-top__job-link > .in-text {
  position: absolute;
  z-index: 1;
  top: 3rem;
  left: 3rem;
  color: white;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-top__job-link > .in-text {
    font-size: 2rem;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.p-top__job-link > .in-arrow {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 1;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top__job-link > .in-arrow {
    right: 2.4rem;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
  }
}
.p-top__job-link > .in-arrow svg {
  width: 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__job-link > .in-arrow svg {
    width: 2.4rem;
  }
}
.p-top__job-link > .in-arrow svg path {
  stroke: white;
  stroke-width: 0.1rem;
}
@media (hover: hover) {
  .p-top__job-link:hover::after {
    opacity: 0.7;
  }
  .p-top__job-link:hover > .in-arrow {
    transform: translate(1rem, 0);
  }
  .p-top__job-link:hover img {
    transform: scale(1.05);
  }
}
.p-top__data {
  background-color: #EFEFEF;
  margin-top: -14.2vw;
  padding-top: 14.2vw;
  padding-bottom: 23.2vw;
}
@media screen and (max-width: 768px) {
  .p-top__data {
    margin-top: -8rem;
    padding-top: 8rem;
  }
}
.p-top__data-inner {
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
.p-top__data-copy {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  margin-top: 2.6rem;
}
.p-top__data-desc {
  margin-bottom: 4rem;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top__data-desc {
    width: 100%;
    text-align: left;
  }
}
.p-top__people {
  margin-top: -18.5vw;
  padding-top: 18.5vw;
  background: linear-gradient(190deg, transparent 0, transparent 18vw, white 18vw, white calc(100% - 18vw), white 100%);
  padding-bottom: 15vw;
}
.p-top__people-inner {
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
.p-top__people-head {
  display: flex;
  align-items: flex-end;
  gap: 6.8rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top__people-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
}
.p-top__people-head .c-heading-set {
  flex-shrink: 0;
}
.p-top__people-head p {
  flex: auto;
  font-size: 1.5rem;
}
.p-top__people-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__people-list {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}
.p-top__people-list .c-people-card:nth-of-type(3n - 2) {
  transform: translateY(12rem);
}
@media screen and (max-width: 768px) {
  .p-top__people-list .c-people-card:nth-of-type(3n - 2) {
    transform: none;
  }
}
.p-top__people-list .c-people-card:nth-of-type(3n - 1) {
  transform: translateY(6rem);
}
@media screen and (max-width: 768px) {
  .p-top__people-list .c-people-card:nth-of-type(3n - 1) {
    transform: none;
  }
}
.p-top__environment {
  background-image: url(../images/top/environment.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -10vw;
  padding-top: 25vw;
  padding-bottom: 10.7vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__environment {
    background-image: url(../images/top/sp-environment.png);
    padding-bottom: 11rem;
    padding-top: 12rem;
  }
}
.p-top__environment-inner {
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__environment-inner {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
  }
}
.p-top__environment-desc-wrap .c-heading-set {
  margin-bottom: 2.6rem;
}
.p-top__environment-desc-wrap .c-heading-set__main {
  color: white;
}
.p-top__environment-desc-wrap p {
  color: white;
  font-size: 1.5rem;
}
.p-top__flow {
  background-color: #EFEFEF;
  margin-top: -18vw;
  padding-top: 10vw;
  padding-bottom: 4rem;
}

.p-faq {
  background-color: #EFEFEF;
}
.p-faq__content {
  margin-top: 1.5rem;
  width: 80rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-faq__content {
    margin-top: 2.7rem;
  }
}

.p-career {
  background-color: #EFEFEF;
}
.p-career__content {
  margin-top: 7.5rem;
  width: 120rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-career__content {
    margin-top: 1.5rem;
  }
}
.p-career__recruit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-career__recruit-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .p-career-page {
    background-color: #EFEFEF;
  }
}
.p-career-page__content {
  margin-top: 7.5rem;
  width: 82.4rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-career-page__content {
    margin-top: 1.5rem;
  }
}
.p-career-page__head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-career-page__head {
    margin-bottom: 2rem;
  }
}
.p-career-page__career-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.3rem;
  background-color: var(--main-color);
  color: white;
  font-size: 1.5rem;
  padding-inline: 0.9rem;
}
.p-career-page__title {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-career-page__title {
    font-size: 2rem;
  }
}
.p-career-page__recruit-detail {
  border: solid 1px var(--main-color);
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .p-career-page__recruit-detail {
    background-color: white;
    padding: 2rem;
  }
}
.p-career-page__sub-heading {
  padding-left: 3.2rem;
  padding-block: 0.7rem;
  border-left: solid 0.5rem var(--main-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-career-page__sub-heading {
    padding-block: 0.3rem;
    padding-left: 2rem;
  }
}
.p-career-page__flow {
  background-color: #EFEFEF;
  padding-block: 7rem 11rem;
  margin-top: 8.5rem;
}
@media screen and (max-width: 768px) {
  .p-career-page__flow {
    margin-top: 4rem;
    padding-block: 0 4rem;
  }
}

.p-404 {
  background-color: #EFEFEF;
}
.p-404__content {
  margin-top: 4rem;
  text-align: center;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-404__content {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.p-404__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-404__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.p-404__home-link {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-404__home-link {
    margin-top: 3rem;
  }
}
.p-404__home-link .c-button-skew {
  margin-inline: auto;
}

.p-job {
  background-color: #EFEFEF;
}
.p-job__content {
  width: 121rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-job__content {
    margin-top: 1.5rem;
  }
}
.p-job__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-job__list {
    gap: 2rem;
  }
}

.p-environment__content {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-environment__content {
    margin-top: 1.5rem;
  }
}
.p-environment__content-inner {
  width: 123rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
.p-environment__data-text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-environment__data-text {
    text-align: left;
  }
}
.p-environment__works-wrap {
  padding-block: 8rem;
  background-color: #EFEFEF;
  margin-block: 8rem;
}
@media screen and (max-width: 768px) {
  .p-environment__works-wrap {
    margin-bottom: 5rem;
    padding-block: 5rem;
  }
}
.p-environment__works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .p-environment__works-list {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    gap: 2rem;
  }
}
.p-environment__benefit-list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 102.4rem;
  max-width: 100%;
  margin-inline: auto;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-environment__benefit-list {
    grid-template-columns: 1fr;
    margin-top: 5rem;
    gap: 2rem;
  }
}
.p-environment__treatment-wrap {
  background-color: #EFEFEF;
  margin-top: 8rem;
  padding-block: 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .p-environment__treatment-wrap {
    margin-top: 5rem;
    padding-block: 5rem;
  }
}
.p-environment__treatment-list {
  width: 82.4rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 5rem;
  padding: 4rem;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .p-environment__treatment-list {
    margin-top: 4rem;
    padding: 2rem;
  }
}

.p-company {
  background-color: #EFEFEF;
}
.p-company__content {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-company__content {
    margin-top: 1.5rem;
  }
}
.p-company__message {
  width: 117rem;
  margin-bottom: 14.5rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 4.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company__message {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.p-company__message::before {
  content: "";
  display: block;
  width: 50rem;
  height: 55rem;
  background-image: url(/assets/images/company/message-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: calc(50% - 50vw);
  top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-company__message::before {
    display: none;
  }
}
.p-company__message-desc {
  flex: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company__message-desc {
    width: 100%;
  }
}
.p-company__message-desc p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1rem;
}
.p-company__message-desc p:last-of-type {
  margin-bottom: 0;
}
.p-company__message-img {
  width: 59.2rem;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company__message-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.p-company__value {
  margin-top: 8rem;
  padding-block: 8rem;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .p-company__value {
    padding-block: 4rem;
  }
}
.p-company__value-list {
  width: 80.2rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-company__value-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.p-company__value-item {
  border: solid 0.3rem var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-company__value-item {
    width: 100%;
    height: 10rem;
    row-gap: 0;
  }
}
.p-company__value-item--large {
  grid-column: span 3;
}
@media screen and (max-width: 768px) {
  .p-company__value-item--large {
    height: 16rem;
    flex-wrap: wrap;
  }
}
.p-company__value-item > .in-icon {
  width: 7rem;
}
@media screen and (max-width: 768px) {
  .p-company__value-item > .in-icon {
    width: 6rem;
  }
}
.p-company__value-item > .in-title {
  font-size: 2.4rem;
  font-weight: bold;
}
.p-company__value-item > .in-desc {
  margin-left: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-company__value-item > .in-desc {
    width: 100%;
    margin-left: 0;
    text-align: center;
    margin-top: -3rem;
  }
}
.p-company__business {
  padding-block: 8rem;
  width: 120rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-company__business {
    padding-block: 5rem;
  }
}
.p-company__business-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-company__business-list {
    gap: 2rem;
  }
}
.p-company__strength {
  background-color: white;
  padding-block: 8rem 11rem;
}
@media screen and (max-width: 768px) {
  .p-company__strength {
    padding-block: 5rem;
  }
}
.p-company__strength-list {
  width: 121.5rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-company__strength-list {
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
  }
}
.p-company__strength-item {
  border: solid 0.3rem var(--main-color);
  padding: 3rem 4rem;
}
@media screen and (max-width: 768px) {
  .p-company__strength-item {
    width: 100%;
  }
}
.p-company__strength-item > .in-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  white-space: nowrap;
  line-height: 1.7;
}
.p-company__strength-item > .in-icon {
  width: 18.2rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.p-company__strength-item p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.p-company__strength-item p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-entry {
    background-color: #EFEFEF;
  }
}
.p-entry__content {
  margin-top: 7.5rem;
  width: 84rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-entry__content {
    margin-top: 1.5rem;
  }
}
.p-entry__content :where(p) {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.p-entry__content :where(p):last-of-type {
  margin-bottom: 0;
}
.p-entry__step {
  margin-top: 6rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-inline: 1.7rem;
}
@media screen and (max-width: 768px) {
  .p-entry__step {
    margin-top: 4rem;
    padding-inline: 0;
    margin-bottom: 1rem;
  }
}
.p-entry__step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(105deg, transparent 0, transparent 1.5rem, #F3B2AE 1.5rem, #F3B2AE calc(100% - 1.5rem), transparent calc(100% - 1.5rem), transparent);
}
@media screen and (max-width: 768px) {
  .p-entry__step-item {
    height: 2.4rem;
    font-size: 1.3rem;
    background: linear-gradient(105deg, transparent 0, transparent 0.7rem, #F3B2AE 0.7rem, #F3B2AE calc(100% - 0.7rem), transparent calc(100% - 0.7rem), transparent);
  }
}
.p-entry__step-item--current {
  background: linear-gradient(105deg, transparent 0, transparent 1.5rem, var(--main-color) 1.5rem, var(--main-color) calc(100% - 1.5rem), transparent calc(100% - 1.5rem), transparent);
}
@media screen and (max-width: 768px) {
  .p-entry__step-item--current {
    background: linear-gradient(105deg, transparent 0, transparent 0.7rem, var(--main-color) 0.7rem, var(--main-color) calc(100% - 0.7rem), transparent calc(100% - 0.7rem), transparent);
  }
}
.p-entry__contact-form {
  border: solid 1px var(--main-color);
  padding: 4rem;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .p-entry__contact-form {
    padding: 4rem 2rem;
  }
}
.p-entry__contact-form--confirm .p-entry__form-list {
  gap: 4rem;
}
.p-entry__contact-form--confirm .p-entry__form-label {
  margin-top: 0;
}
.p-entry__contact-form--confirm .p-entry__accept-wrap {
  margin-top: 8rem;
}
.p-entry__form-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-entry__form-list {
    gap: 4rem;
  }
}
.p-entry__form-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-entry__form-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-entry__form-item--required .p-entry__form-label {
    padding-left: 5.5rem;
  }
}
.p-entry__form-item--required .p-entry__form-label::before {
  opacity: 1;
  visibility: visible;
}
.p-entry__form-label {
  flex: auto;
  position: relative;
  padding-left: 5.5rem;
  margin-top: 1rem;
}

.p-entry__form-label-job {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .p-entry__form-label {
    width: 100%;
    padding-left: 0;
  }
}
.p-entry__form-label::before {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 1.5rem;
  font-size: 0.9rem;
  color: white;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  opacity: 0;
  visibility: hidden;
}
.p-entry__form-data {
  width: 52.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-entry__form-data {
    width: 100%;
  }
}
.p-entry__form-data input[type=text], .p-entry__form-data input[type=tel], .p-entry__form-data input[type=date], .p-entry__form-data input[type=email], .p-entry__form-data textarea {
  width: 100%;
  padding: 0.8rem 1.4rem;
  background-color: #FFECEA;
  border: solid 1px #929292;
}
.p-entry__form-data input[type=text]::-moz-placeholder, .p-entry__form-data input[type=tel]::-moz-placeholder, .p-entry__form-data input[type=date]::-moz-placeholder, .p-entry__form-data input[type=email]::-moz-placeholder, .p-entry__form-data textarea::-moz-placeholder {
  color: #A7A7A7;
}
.p-entry__form-data input[type=text]::placeholder, .p-entry__form-data input[type=tel]::placeholder, .p-entry__form-data input[type=date]::placeholder, .p-entry__form-data input[type=email]::placeholder, .p-entry__form-data textarea::placeholder {
  color: #A7A7A7;
}
.p-entry__form-data input[type=text]:not(:-moz-placeholder), .p-entry__form-data input[type=tel]:not(:-moz-placeholder), .p-entry__form-data input[type=date]:not(:-moz-placeholder), .p-entry__form-data input[type=email]:not(:-moz-placeholder), .p-entry__form-data textarea:not(:-moz-placeholder) {
  background-color: white;
}
.p-entry__form-data input[type=text]:not(:placeholder-shown), .p-entry__form-data input[type=tel]:not(:placeholder-shown), .p-entry__form-data input[type=date]:not(:placeholder-shown), .p-entry__form-data input[type=email]:not(:placeholder-shown), .p-entry__form-data textarea:not(:placeholder-shown) {
  background-color: white;
}
.p-entry__radio-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  min-height: 3rem;
}
.p-entry__radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.p-entry__radio-item input {
  margin: 0;
}
.p-entry__select-box {
  position: relative;
  border: solid 1px #929292;
  width: auto;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.p-entry__select-box::after {
  content: "";
  border: solid 0.5rem transparent;
  border-top: solid 0.6rem var(--main-color);
  border-bottom-width: 0;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
}
.p-entry__select-box select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding-inline: 2.8rem 3.8rem;
  height: 3rem;
}
.p-entry__select-box select:focus, .p-entry__select-box select:active {
  outline: none;
}
.p-entry__file-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-entry__file-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.p-entry__file-box.is-focus label {
  background-color: #FFECEA;
}
.p-entry__file-box > .is-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25rem;
  height: 3rem;
  border: solid 1px #929292;
  cursor: pointer;
  font-size: 1.4rem;
}
.p-entry__file-box input[type=file] {
  display: none;
}

.p-entry__history-attention {
  font-size: 1.2rem;
}

.p-entry__attention {
  margin-top: 3rem;
  font-size: 1.3rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-entry__attention {
    padding-left: 0;
  }
}
.p-entry__accept-wrap {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-entry__accept-wrap {
    margin-top: 1rem;
  }
}
.p-entry__accept-wrap > label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-entry__accept-wrap > label > .in-required {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 1.5rem;
  font-size: 0.9rem;
  color: white;
  background-color: var(--main-color);
}
.p-entry__accept-wrap > label > .in-text {
  font-size: 1.3rem;
}
.p-entry__button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5.4rem;
}
@media screen and (max-width: 768px) {
  .p-entry__button-wrap {
    margin-top: 4rem;
  }
}
.p-entry__button-wrap .c-button-skew__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-entry__button-wrap .c-button-skew__text {
    font-size: 1.5rem;
  }
}
.p-entry__button-back {
  --main-color: #666666;
}

.p-interview {
  background-color: #EFEFEF;
}
.p-interview__content {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .p-interview__content {
    margin-top: 1.5rem;
  }
}
.p-interview__list {
  display: flex;
  flex-direction: column;
  gap: 12.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__list {
    gap: 5.6rem;
  }
}
.p-interview__list::before {
  content: "";
  display: block;
  width: 95rem;
  height: 109rem;
  background-image: url(/assets/images/interview01/list-bg.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-interview__list::before {
    display: none;
  }
}
.p-interview__other-wrap {
  background-color: white;
  padding-block: 11rem 7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__other-wrap {
    margin-top: 2.5rem;
    padding-block: 3rem 5rem;
  }
}
.p-interview__other-wrap > .in-bg-text {
  font-size: 12rem;
  color: var(--main-color);
  position: absolute;
  top: 0;
  left: -1rem;
  transform: translate(0, -100%) rotate(90deg);
  opacity: 0.3;
  transform-origin: left bottom;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-interview__other-wrap > .in-bg-text {
    display: none;
  }
}
.p-interview__other-list {
  width: 82rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .p-interview__other-list {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    margin-top: 4rem;
  }
}/*# sourceMappingURL=style.css.map */