@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-base: "Montserrat", "Noto Sans JP", sans-serif;
  --base-font-size: 16px;
  --color-black:#000;
  --color-white:#FFF;
  --color-gray: #DDD;
  --color-gray-light: #F5F5F5;
  --color-red:#BC2121;
  --color-blue: #0082FF;
}

html {
  position: relative;
  font-size: 62.5%;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw !important;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 13.333333px !important;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 2.6666666667vw !important;
  }
}

body {
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.5;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

* {
  min-inline-size: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  a:hover {
    opacity: 1;
  }
}
img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

em {
  font-weight: 700;
  font-style: normal;
}

figure {
  margin: 0;
}

.mt-30 {
  margin-top: 3rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

.l-footer {
  position: relative;
  padding: 5rem 0 8rem;
  color: var(--color-white);
  background-color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 11.5rem 0 4rem;
  }
}
.p-recruit .l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background-color: var(--color-white);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-recruit .l-footer::before {
    height: 10rem;
  }
}
.l-footer-scroll-to-top {
  position: fixed;
  bottom: 0;
  right: 2rem;
  width: 5rem;
  border: none;
  padding: 0;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 10;
  transition: transform 0.5s ease, opacity 0.5s ease;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-footer-scroll-to-top {
    right: 5rem;
  }
}
@media (any-hover: hover) {
  .l-footer-scroll-to-top:hover {
    opacity: 0.8 !important;
    transform: translateY(-60%);
  }
}
.l-footer-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 5rem 0;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-info {
    grid-column: 1/-1;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-info {
    margin-right: 7rem;
  }
}
.l-footer-logo {
  display: block;
  width: 17.6rem;
}
.l-footer-address {
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .l-footer-address {
    font-size: 1.4rem;
  }
}
.l-footer-sns {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.l-footer-sns img {
  width: auto;
}
.l-footer-nav {
  display: grid;
  gap: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer-nav {
    min-width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav:last-child {
    margin-left: 4rem;
  }
}
.l-footer-nav a {
  position: relative;
  z-index: 1;
}
.l-footer-nav a::before {
  content: "ー";
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-nav a::before {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav a::before {
    margin-right: 0.8rem;
  }
}
.l-footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 2.2rem;
  display: block;
  width: calc(100% - 2.2rem);
  height: 1px;
  background-color: var(--color-white);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
@media (any-hover: hover) {
  .l-footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-footer-bottom {
  display: grid;
  gap: 3rem;
  margin: 7rem 0 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 11.3rem 0 0;
  }
}
.l-footer-bottom-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom-nav {
    flex-wrap: nowrap;
  }
}
.l-footer-bottom-nav a {
  position: relative;
  z-index: 1;
}
.l-footer-bottom-nav a::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
@media (any-hover: hover) {
  .l-footer-bottom-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-footer-bottom-nav li:not(:last-child) a::before {
  content: "｜";
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translateY(-50%);
}
.l-footer-copyright small {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright small {
    font-size: 1rem;
    text-align: center;
  }
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 7.6rem;
  background-color: var(--color-white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}
.p-home .l-header {
  background-color: transparent;
  box-shadow: none;
}
.p-home .l-header::before {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.p-recruit .l-header {
  background-color: var(--color-white) !important;
}
.l-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: top;
  transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1);
}
.l-header.--scrolled::before {
  transform: scale(1, 1);
  opacity: 1;
}
.l-header img {
  width: 100%;
}
.l-header a {
  display: block;
}
.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.3rem;
  width: 100%;
  height: 7.6rem;
  margin-inline: auto;
  padding: 2.4rem;
  position: relative;
  z-index: 1003;
}
@media screen and (min-width: 768px) {
  .l-header-inner {
    justify-content: flex-start;
    padding: 2.4rem 5rem;
  }
}
.l-header-logo {
  max-width: 13rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    max-width: 16.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header-logo.--naviSpOpen img {
    content: url("../images/logo_white.png");
  }
}
@media screen and (max-width: 767px) {
  .l-header-hamburger {
    position: relative;
    display: block;
    width: 3rem;
    height: 2rem;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .l-header-hamburger.--active span:nth-child(1) {
    animation: menuBarTopActive 0.75s forwards;
  }
  .l-header-hamburger.--active span:nth-child(2) {
    opacity: 0;
  }
  .l-header-hamburger.--active span:nth-child(3) {
    animation: menuBarBottomActive 0.75s forwards;
  }
  .l-header-hamburger.--inactive span:nth-child(1) {
    animation: menuBarTopInactive 0.75s forwards;
  }
  .l-header-hamburger.--inactive span:nth-child(3) {
    animation: menuBarBottomInactive 0.75s forwards;
  }
  .l-header-hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-black);
    transition: 0.5s;
    border-radius: 1rem;
  }
  .l-header-hamburger span:nth-child(1) {
    top: 0;
  }
  .l-header-hamburger span:nth-child(2) {
    top: 50%;
    margin-top: -0.1rem;
  }
  .l-header-hamburger span:nth-child(3) {
    bottom: 0;
  }
  .l-header-hamburger-nav {
    position: fixed;
    background: var(--color-black);
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    overflow-y: scroll;
    z-index: -1;
    padding: 10rem 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1);
  }
  .l-header-hamburger-nav.--active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  .l-header-hamburger-nav-list {
    display: grid;
    gap: 2rem;
    padding: 0 2rem;
  }
  .l-header-hamburger-nav-list li {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
  }
  .l-header-hamburger-nav-list li.js-slideToggle ul {
    display: none;
    margin-left: 1rem;
  }
  .l-header-hamburger-nav-list li.js-slideToggle ul li {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .l-header-hamburger-nav-list li.js-slideToggle.--active .l-header-hamburger-nav-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }
  .l-header-hamburger-nav-icon {
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    right: 0;
    top: 0.6rem;
    transition: 0.3s ease;
  }
  .l-header-hamburger-nav-icon::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.3s ease;
  }
  .l-header-hamburger-nav-icon::after {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
  }
  .l-header-hamburger-sub-nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin: 3rem 0 0;
    padding: 0 2rem;
  }
  .l-header-hamburger-sub-nav li:nth-child(1) img {
    width: 2.8rem;
  }
  .l-header-hamburger-sub-nav li:nth-child(2) img {
    width: 2.8rem;
  }
  .l-header-hamburger-sub-nav li:nth-child(3) img {
    width: 2.7rem;
  }
  .l-header-hamburger-sub-nav li:nth-child(4) img {
    width: 3rem;
  }
}
.l-header-nav-list {
  display: flex;
  align-items: center;
  gap: 2.7rem;
  margin-top: 0.4rem;
}
.l-header-nav-list > li {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-header-nav-list > li:not(.l-header-nav-ac)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
@media (any-hover: hover) {
  .l-header-nav-list > li:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header-nav-list > li a {
  position: relative;
  z-index: 1;
}
.l-header-nav-ac-list {
  position: fixed;
  top: 7.6rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1);
}
.l-header-nav-ac-list.--active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.l-header-nav-ac-list:not(.--active) {
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.l-header-nav-ac-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: -1;
  pointer-events: auto;
}
.l-header-nav-ac-list ul {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 2rem 5rem;
  margin-inline: auto;
}
.l-header-nav-ac-list ul li {
  width: 33.3333333333%;
  color: var(--color-white);
  font-weight: 700;
}
.l-header-nav-ac-list ul li span {
  position: relative;
  z-index: 1;
}
.l-header-nav-ac-list ul li span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
@media (any-hover: hover) {
  .l-header-nav-ac-list ul li:hover span:not(.description)::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header-nav-ac-list ul a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.l-header-nav-ac-list ul a img {
  flex-shrink: 0;
  width: 18rem;
}
.l-header-nav-ac-list ul a .description {
  display: block;
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}
.l-header-sub-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-left: auto;
}
.l-header-contact {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 5.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 100vmax;
  overflow: hidden;
  z-index: 1;
}
.l-header-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: var(--color-blue);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.l-header-contact .c-icon {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-55%);
  transition: right 0.5s ease;
}
@media (any-hover: hover) {
  .l-header-contact:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .l-header-contact:hover .c-icon {
    right: 0.7rem;
  }
}

@keyframes menuBarTopActive {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0.9rem) rotate(0);
  }
  100% {
    transform: translateY(0.9rem) rotate(45deg);
    background: #fff;
  }
}
@keyframes menuBarBottomActive {
  0% {
    transform: translateY(0) rotate(0);
    width: 100%;
  }
  50% {
    transform: translateY(-0.9rem) rotate(0);
    width: 100%;
  }
  100% {
    transform: translateY(-0.9rem) rotate(-45deg);
    width: 100%;
    background: #fff;
  }
}
@keyframes menuBarTopInactive {
  0% {
    transform: translateY(0.9rem) rotate(45deg);
  }
  50% {
    transform: translateY(0.9rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menuBarBottomInactive {
  0% {
    transform: translateY(-0.9rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-0.9rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.l-inner {
  width: 100%;
  max-width: 50rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 128rem;
    padding-inline: 5rem;
  }
}

.l-section {
  padding: 7rem 0 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 10rem 0 0;
  }
}

.c-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/img_bg.png) no-repeat top center/cover;
  z-index: -1;
}

.c-btn {
  position: relative;
  max-width: 440px;
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 100vmax;
  overflow: hidden;
  z-index: 1;
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: var(--color-blue);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.c-btn .c-icon {
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-55%);
  width: 2rem !important;
  height: 2rem !important;
  transition: right 0.5s ease;
}
@media (any-hover: hover) {
  .c-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .c-btn:hover .c-icon {
    right: 1.5rem;
  }
}
.c-btn-border {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 32.8rem;
  height: 6rem;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 1.1rem;
  overflow: hidden;
  z-index: 1;
}
.c-btn-border::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: var(--color-black);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.c-btn-border::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' fill='none'%3E%3Cpath stroke='%23000' d='M.539.461 10.077 10 .54 19.539'/%3E%3C/svg%3E");
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .c-btn-border:hover {
    color: var(--color-white);
  }
  .c-btn-border:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .c-btn-border:hover::after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' fill='none'%3E%3Cpath stroke='%23fff' d='M.539.461 10.077 10 .54 19.539'/%3E%3C/svg%3E");
  }
}

.c-icon {
  display: inline-block;
  transition: background 0.3s ease;
}
.c-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%/contain;
  transition: background 0.3s ease;
}
.c-icon.btn-arrow {
  width: 1.2rem;
  height: 1.2rem;
}
.c-icon.btn-arrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Ccircle cx='6' cy='6' r='6' fill='%23fff'/%3E%3Cpath stroke='%23000' d='M5.025 2.925 8.05 5.95 5.025 8.975'/%3E%3C/svg%3E");
}

.c-title p {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title p {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-title p.is-small {
    font-size: 3rem;
  }
}
.c-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title h2 {
    font-size: 2rem;
  }
}
.c-title-col {
  display: grid;
  gap: 0 2rem;
}
@media screen and (min-width: 768px) {
  .c-title-col {
    display: flex;
    align-items: center;
  }
}
.c-title-lead {
  margin: 2rem 0 0;
  line-height: 1.75;
}

.c-title-en {
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 3.6rem;
  }
}

.p-blog {
  margin-bottom: 10rem;
}
.p-blog-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4.4rem;
}
@media screen and (min-width: 768px) {
  .p-blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-blog-list > li {
  border-radius: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.p-blog-list a {
  position: relative;
  display: block;
  height: 100%;
  padding: 0.5rem 0.8rem 1.8rem;
  border-radius: 2rem;
  background-color: var(--color-white);
}
.p-blog-list a figure {
  max-height: 21.8rem;
  border-radius: 1.8rem 1.8rem 0 0;
  overflow: hidden;
}
.p-blog-list a figure img {
  width: 100%;
  border-radius: 1.8rem 1.8rem 0 0;
}
.p-blog-list-details {
  padding: 1.5rem 1rem 0;
}
.p-blog-list-details time {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-blog-list-details time {
    font-size: 1.4rem;
  }
}
.p-blog-list-details h2 {
  margin: 0.6rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-blog-list-details h2 {
    font-size: 1.6rem;
  }
}
.p-blog-list-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
}
.p-blog-list-name img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
}
.p-blog .pagination {
  margin: 4rem 0 0;
}
.p-blog .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.p-blog .pagination .nav-links .page-numbers {
  transition: color 0.3s ease;
}
.p-blog .pagination .nav-links .page-numbers.current {
  color: var(--color-blue);
}
@media (any-hover: hover) {
  .p-blog .pagination .nav-links .page-numbers:hover {
    color: var(--color-blue);
  }
}
.p-blog .screen-reader-text {
  display: none;
}
.p-blog-no-posts {
  text-align: center;
  padding: 6rem 0 10rem;
}
.p-blog-single-header {
  margin: 0 0 3rem;
}
.p-blog-single time {
  display: block;
  margin: 0 0 1rem;
  color: #666;
}
.p-blog-single h1 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-blog-single h1 {
    font-size: 3.2rem;
  }
}
.p-blog-single-footer .c-btn-border {
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-blog-single-footer .c-btn-border {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-single-footer .c-btn-border {
    margin: 10rem auto 0;
  }
}
.p-blog-single-footer .c-btn-border::after {
  right: auto;
  left: 1.8rem;
  transform: scaleX(-1) translateY(-50%);
}

.p-breadcrumb-wrap {
  padding-top: 3rem;
  padding-bottom: 1.2rem;
}
.p-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1.2rem;
}
.p-breadcrumb-list li:not(:first-child)::before {
  content: ">";
  margin-right: 1rem;
}
.p-breadcrumb-list a {
  text-decoration: underline;
}

.p-business-row {
  line-height: 1.75;
}
.p-business-row + .p-business-row {
  margin: 5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-business-row + .p-business-row {
    margin: 8rem auto 0;
  }
}
.p-business-row-title {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: var(--color-gray-light);
  border-radius: 1rem;
}
.p-business-row-list {
  margin: 3rem 0 0;
}
.p-business-row-list h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-blue);
}
.p-business-row-list-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 1rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
}
.p-business-row-list-label::after {
  content: "";
  width: 85%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .p-business-row-list-label::after {
    width: 95%;
  }
}
.p-business-row-list ul {
  padding-left: 1.6rem;
  list-style: initial;
}
.p-business-row-col {
  display: grid;
  gap: 3rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-business-row-col {
    display: flex;
    align-items: flex-start;
  }
}
.p-business-row-col a {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 2rem 1rem;
  margin: 2rem 0 0;
  font-size: 1.2rem;
  border: 1px solid var(--color-black);
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-business-row-col a {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-business-row-col a {
    gap: 3rem;
    font-size: 1.6rem;
    padding: 2rem;
    margin: 3rem 0 0;
  }
}
.p-business-row-col a::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: var(--color-blue);
  transition: transform 0.8s ease;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0.1;
  z-index: -1;
}
.p-business-row-col a img {
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-business-row-col a img {
    width: 15rem;
  }
}
@media (any-hover: hover) {
  .p-business-row-col a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.p-business-row-col-img {
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-business-row-col-img {
    flex-shrink: 0;
    width: 25rem;
  }
}
.p-business-row-col p + p {
  margin: 2rem 0 0;
}

.p-company-list > div {
  display: grid;
  gap: 0.5rem;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-company-list > div {
    display: grid;
    grid-template-columns: 15rem 1fr;
    align-items: center;
    padding: 3rem;
  }
}

.p-company-map {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-company-map {
    margin: 2rem 0;
  }
}
.p-company-map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contact {
  max-width: 71rem !important;
}
.p-contact-lead {
  margin: 0 0 4rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-contact-lead {
    text-align: center;
  }
}
.p-contact span {
  display: block;
}
.p-contact-wrap + .p-contact-wrap {
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-contact-wrap + .p-contact-wrap {
    margin: 4rem 0 0;
  }
}
.p-contact-wrap > p {
  display: grid;
  gap: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact-wrap > p {
    grid-template-columns: 25rem 1fr;
    align-items: center;
  }
}
.p-contact input, .p-contact textarea, .p-contact select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-gray);
}
.p-contact-select {
  position: relative;
  cursor: pointer;
}
.p-contact-select::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  width: 1rem;
  height: 1rem;
  border-top: 0.2rem solid var(--color-gray);
  border-left: 0.2rem solid var(--color-gray);
  transform: translateY(-50%) rotate(-135deg);
  font-size: 2rem;
  pointer-events: none;
}
.p-contact-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.p-contact-label.required::after {
  content: "必須";
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 1rem;
  padding: 0.2rem 0.5rem;
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 0.5rem;
  transform: translateY(-0.2rem);
}
.p-contact-radio {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-contact-radio .wpcf7-list-item {
  margin: 0;
}
.p-contact-radio label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.p-contact-radio input {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border: solid 1px var(--color-gray);
  border-radius: 50%;
  cursor: pointer;
}
.p-contact-radio input:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.p-contact-note {
  margin: 1rem 0 0 !important;
  font-size: 1.1rem;
}
.p-contact-note-item + .p-contact-note-item {
  margin-top: 1rem;
}
.p-contact .wpcf7-form-control {
  width: 100%;
}
.p-contact .wpcf7-acceptance {
  margin: 4rem 0 0;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item input {
  position: relative;
  flex-shrink: 0;
  width: auto;
  margin: 0;
  width: 2.4rem;
  height: 2.4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border: solid 1px var(--color-gray);
  border-radius: 0.4rem;
  cursor: pointer;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item input:checked::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.6rem;
  transform: rotate(50deg);
  width: 1rem;
  height: 1.4rem;
  border-right: 0.3rem solid var(--color-blue);
  border-bottom: 0.3rem solid var(--color-blue);
}
.p-contact .wpcf7-acceptance .wpcf7-list-item label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  cursor: pointer;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item label a {
  color: var(--color-blue);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-contact .wpcf7-acceptance .wpcf7-list-item label a:hover {
    text-decoration: none;
  }
}
.p-contact .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  width: -moz-max-content;
  width: max-content;
}
.p-contact .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 32.8rem;
  padding: 2rem 3rem;
  margin: 4rem auto 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 100vmax;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-contact .wpcf7-submit:hover {
    background-color: var(--color-blue);
  }
}

.p-home img {
  width: 100%;
}
.p-home-mv {
  position: relative;
  height: 60rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-home-mv {
    height: 82.3rem;
  }
}
.p-home-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/sp/img_mv_bg.jpg") no-repeat center/cover;
  mask: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
  -webkit-mask: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-home-mv::after {
    background: url("../images/img_mv_bg.jpg") no-repeat center/cover;
    mask: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
  }
}
.p-home-mv-inner {
  position: relative;
  max-width: 150rem;
  height: 60rem;
  margin-inline: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-home-mv-inner {
    height: 82.3rem;
  }
}
.p-home-mv-right {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-home-mv-right {
    bottom: auto;
    top: 0;
    width: 50%;
    height: 82.3rem;
  }
}
.p-home-mv-right::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 8rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.4;
  z-index: 5;
  filter: blur(30px);
}
@media screen and (min-width: 768px) {
  .p-home-mv-right::before {
    top: 20rem;
    left: 13rem;
    width: 25rem;
    height: 23rem;
  }
}
.p-home-mv-img {
  width: 28rem !important;
  transform-origin: center;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-home-mv-img {
    width: 57.2rem !important;
  }
}
.p-home-mv-earth {
  position: relative;
  width: 28rem !important;
  height: 28rem !important;
  transform: translateX(-2rem);
}
@media screen and (min-width: 768px) {
  .p-home-mv-earth {
    width: 57.2rem !important;
    height: 57.2rem !important;
    transform: translateX(-3rem);
  }
}
.p-home-mv-earth .earth-canvas {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: auto;
}
.p-home-mv-earth .earth-back, .p-home-mv-earth .earth-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-home-mv-earth .earth-back {
  z-index: 1;
  opacity: 1;
  transform: translate(1.2rem, 0.8rem);
}
@media screen and (min-width: 768px) {
  .p-home-mv-earth .earth-back {
    transform: translate(3rem, 2rem);
  }
}
.p-home-mv-earth .earth-front {
  z-index: 2;
  opacity: 0.25;
}
.p-home-mv-earth .earth-part {
  transform-origin: center;
  will-change: transform, opacity;
  opacity: 0;
}
.p-home-mv-title {
  position: absolute;
  top: 11rem;
  left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-mv-title {
    top: 30rem;
    left: 14rem;
  }
}
.p-home-mv-title img {
  display: block;
  width: 31rem;
  transition: 0.8s ease;
}
@media screen and (min-width: 768px) {
  .p-home-mv-title img {
    width: 46rem;
  }
}
.p-home-mv-copy-01 {
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
.p-home-mv-copy-02 {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  margin-top: 1rem;
}
.p-home-mv-copy-03 {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  margin-top: 1rem;
}
.p-home-mv-scroll {
  position: absolute;
  top: 30rem;
  right: 1.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-home-mv-scroll {
    top: 47rem;
  }
}
.p-home-mv-scroll::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0.7rem;
  display: block;
  width: 0.6rem;
  height: 3rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='22' fill='none'%3E%3Cpath stroke='%23000' stroke-miterlimit='10' d='M.299 0v21.216l3.492-3.813'/%3E%3C/svg%3E");
  animation: arrowGrow 2s infinite;
}
.p-home-links {
  margin-top: -5rem;
}
@media screen and (min-width: 768px) {
  .p-home-links {
    margin-top: -15rem;
  }
}
.p-home-links ul {
  display: grid;
  gap: 2rem 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-links ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-home-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.p-home-links ul li a figure {
  flex-shrink: 0;
  width: 10.1rem;
  border-radius: 0.8rem;
}
.p-home-links ul li a figure img {
  border-radius: 0.8rem;
}
.p-home-links-text span {
  font-size: 2rem;
  font-weight: 700;
}
.p-home-links-text p {
  margin: 0.7rem 0 0;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.p-home-news .c-title {
  max-width: 104rem;
  margin-inline: auto;
}
.p-home-news-list {
  max-width: 104rem;
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-home-news-list {
    margin: 6rem auto 0;
  }
}
.p-home-news-list li {
  border-bottom: 1px solid var(--color-black);
}
.p-home-news-list li:first-child {
  border-top: 1px solid var(--color-black);
}
.p-home-news-list a {
  display: grid;
  gap: 1rem 7.2rem;
  padding: 3rem 5rem 3rem 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-home-news-list a {
    display: flex;
    align-items: center;
    padding: 3rem 6rem 3rem 1.7rem;
  }
}
.p-home-news-list a time {
  display: block;
  min-width: 9.6rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-home-news-list a time {
    font-size: 1.6rem;
  }
}
.p-home-news-list a h3 {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-home-news-list a h3 {
    font-size: 1.5rem;
  }
}
.p-home-news .c-btn-border {
  margin: 5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-home-news .c-btn-border {
    margin: 7.8rem auto 0;
  }
}
.p-home-company {
  position: relative;
}
.p-home-company-box {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 112rem;
  margin-inline: auto;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-home-company-box {
    flex-direction: row;
    border-radius: 3rem;
  }
}
.p-home-company-box-images {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-home-company-box-images {
    order: 1;
    max-width: 67.6rem;
  }
}
.p-home-company-box-images img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .p-home-company-box-images img {
    width: 33.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-company-box-images img:nth-child(3) {
    border-bottom-left-radius: 1.5rem;
  }
  .p-home-company-box-images img:nth-child(4) {
    border-bottom-right-radius: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-home-company-box-images img:nth-child(1) {
    border-top-left-radius: 3rem;
  }
  .p-home-company-box-images img:nth-child(3) {
    border-bottom-left-radius: 3rem;
  }
}
.p-home-company-box-details {
  padding: 3rem;
}
@media screen and (min-width: 768px) {
  .p-home-company-box-details {
    order: 2;
    padding: 4.9rem 6.4rem 6rem 5.6rem;
  }
}
.p-home-company-box-details p:not(.u-text-en) {
  margin: 2.5rem 0 0;
  line-height: 1.75;
}
.p-home-company-box-links {
  margin: 2.5rem 0 0;
}
.p-home-company-box-links li {
  border-top: 1px solid var(--color-gray);
}
.p-home-company-box-links a {
  display: block;
  padding: 2.6rem 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-home-company-box-links a {
    font-size: 1.8rem;
  }
}
.p-home-company-box-links a::after {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-company-box-links a::after {
    right: 2rem;
  }
}
.p-home-service-list {
  max-width: 112rem;
  display: grid;
  gap: 3rem 5.5rem;
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-home-service-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 6rem auto 0;
  }
}
.p-home-service-list a {
  position: relative;
  display: block;
  padding: 2.5rem 2.2rem 4.5rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-home-service-list a {
    border-radius: 2rem;
  }
}
.p-home-service-list a figure {
  border-radius: 1rem;
  overflow: hidden;
}
.p-home-service-list a figure img {
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-home-service-list a > div {
    padding-inline: 2rem;
  }
}
.p-home-service-list a h3 {
  margin: 3rem 0 2rem;
  font-size: 2rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-home-service-list a h3 {
    font-size: 2rem;
    margin: 4.3rem 0 2.6rem;
  }
}
.p-home-service-list a p {
  line-height: 1.75;
}
.p-home-service-list a span {
  position: relative;
  display: block;
  margin: 3rem 0 0;
  padding-right: 2.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-home-service-list a span {
    margin: 3.7rem 0 0;
    font-size: 1.8rem;
  }
}
.p-home-service-list a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' fill='none'%3E%3Cpath stroke='%23000' d='M.539.461 10.077 10 .54 19.539'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-home-service-list a:hover img {
    transform: scale(1.05);
  }
  .p-home-service-list a:hover span::after {
    transform: translate(1rem, -50%);
  }
}
.p-home-recruit {
  overflow-x: clip;
}
.p-home-recruit-wrap {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 4rem 7rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-home-recruit-wrap {
    max-width: 128rem;
    align-items: flex-end;
    flex-direction: row;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home-recruit-details {
    padding-left: 9rem;
  }
}
.p-home-recruit-links {
  margin: 2.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-home-recruit-links {
    margin: 3.7rem 0 0;
  }
}
.p-home-recruit-links li {
  border-top: 1px solid var(--color-gray);
}
.p-home-recruit-links a {
  display: block;
  padding: 2.6rem 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-home-recruit-links a {
    font-size: 1.8rem;
  }
}
.p-home-recruit-links a::after {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-recruit-links a::after {
    right: 2rem;
  }
}
.p-home-recruit-image {
  position: relative;
  flex-shrink: 0;
  width: 42rem;
}
@media (min-width: 600px) {
  .p-home-recruit-image {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-home-recruit-image {
    width: 91.3rem;
    margin-right: -12rem;
  }
}
.p-home-recruit-image figure {
  border-radius: 2.3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .p-home-recruit-image figure {
    border-radius: 4.6rem;
  }
}
.p-home-recruit-image figure img {
  border-radius: 2.3rem;
}
@media screen and (min-width: 768px) {
  .p-home-recruit-image figure img {
    border-radius: 4.6rem;
  }
}
.p-home-recruit-image-text {
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  width: 32rem !important;
}
@media screen and (min-width: 768px) {
  .p-home-recruit-image-text {
    bottom: -3.9rem;
    left: 10.8rem;
    width: 68.7rem !important;
  }
}
.p-home-recruit .c-btn {
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-home-recruit .c-btn {
    margin: 7rem auto 0;
  }
}
.p-home-blog {
  padding: 15rem 0 0;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-home-blog {
    padding: 30rem 0 0;
  }
}
.p-home-blog-wrap {
  position: relative;
  max-width: 128rem;
  margin-inline: auto;
}
.p-home-blog-wrap::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: -7rem;
  width: 72.3rem;
  height: 77.1rem;
  background-color: #E2F8FD;
  border-radius: 5.4rem;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .p-home-blog-inner {
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    width: 100vw;
  }
}
.p-home-blog-head {
  display: grid;
  gap: 2rem;
  max-width: 128rem;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .p-home-blog-head {
    display: flex;
    justify-content: space-between;
    padding: 0 5rem 0 16rem;
  }
}
.p-home-blog-head .c-title {
  flex-shrink: 0;
}
.p-home-blog-head .c-title-lead {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-home-blog-head .c-title-lead {
    max-width: 55rem;
  }
}
.p-home-blog-list {
  margin: 3rem 0 0;
  padding: 0 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-home-blog-list {
    margin: 5rem 0 0;
    padding: 0 0 10rem 15rem;
  }
}
.p-home-blog-list .splide__track {
  padding: 1rem !important;
}
.p-home-blog-list .splide__pagination {
  justify-content: center;
  gap: 0 1.8rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-home-blog-list .splide__pagination {
    justify-content: flex-start;
    gap: 0 2.2rem;
    padding: 0 1rem 0 17rem;
  }
}
.p-home-blog-list .splide__pagination .splide__pagination__page {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  opacity: 1;
  background: #D9D9D9;
}
@media screen and (min-width: 768px) {
  .p-home-blog-list .splide__pagination .splide__pagination__page {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.p-home-blog-list .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1);
  background: var(--color-black);
}
.p-home-blog-list > li {
  border-radius: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.p-home-blog-list a {
  position: relative;
  display: block;
  height: 100%;
  padding: 0.5rem 0.8rem 1.8rem;
  border-radius: 2rem;
  background-color: var(--color-white);
}
.p-home-blog-list a figure {
  max-height: 16.8rem;
  border-radius: 1.8rem 1.8rem 0 0;
  overflow: hidden;
}
.p-home-blog-list a figure img {
  border-radius: 1.8rem 1.8rem 0 0;
}
.p-home-blog-list-details {
  padding: 1.5rem 1rem 0;
}
.p-home-blog-list-details time {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-home-blog-list-details time {
    font-size: 1.4rem;
  }
}
.p-home-blog-list-details h3 {
  margin: 0.6rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-home-blog-list-details h3 {
    font-size: 1.6rem;
  }
}
.p-home-blog-list-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
}
.p-home-blog-list-name img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-home-blog .c-btn-border {
    margin: 3rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home-blog .c-btn-border {
    margin-top: -6rem;
    margin-left: auto;
  }
}
.p-home-group {
  margin-top: 7rem;
  padding: 5rem 0 8rem;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-home-group {
    padding: 8rem 0 10rem;
    margin-top: 10rem;
  }
}
.p-home-group .c-title {
  text-align: center;
}
.p-home-group .c-title-lead {
  margin: 3rem 0 0;
}
.p-home-group-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 97.3rem;
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-home-group-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem 5.4rem;
    margin: 6.4rem auto 0;
  }
}
.p-home-group-list a {
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-group-list a {
    width: 20.3rem;
    height: 7.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-home-group-list a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-home-group-list a:hover img {
    border: 1px solid var(--color-blue);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.p-lower-bg {
  max-width: 112rem;
  margin: 0 auto 7rem;
  padding: 5rem 2rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-lower-bg {
    margin: 0 auto 10rem;
    padding: 10rem 5rem;
    border-radius: 3rem;
  }
}
.p-lower-bg-inner {
  max-width: 90rem;
  margin-inline: auto;
}

.p-lower-header hgroup {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-lower-header hgroup {
    padding: 5rem 0 10rem;
  }
}
.p-lower-header p {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-lower-header p {
    font-size: 6rem;
  }
}
.p-lower-header h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-lower-header h1 {
    font-size: 2rem;
  }
}

.p-message {
  display: grid;
  gap: 4rem 6rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-message-image {
    order: 2;
  }
}
.p-message-image img {
  border-radius: 1rem;
  width: 100%;
}
.p-message-image p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-message-image p {
    font-size: 1.4rem;
  }
}
.p-message-text * + * {
  margin: 2rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-message-text * + * {
    margin: 3rem 0 0;
  }
}
.p-message-text-name {
  margin: 4rem 0 0;
  text-align: right;
}

.p-news-list li {
  border-bottom: 1px solid var(--color-gray);
}
.p-news-list a {
  display: grid;
  gap: 1rem 7.2rem;
  padding: 3rem 5rem 3rem 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-news-list a {
    display: flex;
    align-items: center;
    padding: 3rem 6rem 3rem 1.7rem;
  }
}
.p-news-list a time {
  display: block;
  min-width: 9.6rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-news-list a time {
    font-size: 1.6rem;
  }
}
.p-news-list a h2 {
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-news-list a h2 {
    font-size: 1.5rem;
  }
}
.p-news .pagination {
  margin: 4rem 0 0;
}
.p-news .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.p-news .pagination .nav-links .page-numbers {
  transition: color 0.3s ease;
}
.p-news .pagination .nav-links .page-numbers.current {
  color: var(--color-blue);
}
@media (any-hover: hover) {
  .p-news .pagination .nav-links .page-numbers:hover {
    color: var(--color-blue);
  }
}
.p-news .screen-reader-text {
  display: none;
}
.p-news-no-posts {
  text-align: center;
  padding: 6rem 0;
}
.p-news-single-header {
  margin: 0 0 3rem;
}
.p-news-single time {
  display: block;
  margin: 0 0 1rem;
  color: #666;
}
.p-news-single h1 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news-single h1 {
    font-size: 3.2rem;
  }
}
.p-news-single-footer .c-btn-border {
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single-footer .c-btn-border {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-news-single-footer .c-btn-border {
    margin: 10rem auto 0;
  }
}
.p-news-single-footer .c-btn-border::after {
  right: auto;
  left: 1.8rem;
  transform: scaleX(-1) translateY(-50%);
}

.p-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: var(--color-blue);
  pointer-events: none;
}
.p-overlay:before, .p-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
}
.p-overlay:before {
  right: 100vw;
  background: linear-gradient(to top left, var(--color-blue) 50%, transparent 50%);
}
.p-overlay:after {
  left: 100vw;
  background: linear-gradient(to bottom right, var(--color-blue) 50%, transparent 50%);
}

.js-loaded .p-overlay {
  left: -200vw;
}
.js-loaded.js-transitioning .p-overlay {
  left: 0;
}

.p-philosophy {
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-philosophy {
    max-width: 70rem;
    margin-inline: auto;
  }
}
.p-philosophy:not(:first-of-type) {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy:not(:first-of-type) {
    margin-top: 8rem;
  }
}
.p-philosophy h2 {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy h2 {
    margin-bottom: 3rem;
  }
}
.p-philosophy h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}
.p-philosophy h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-philosophy h3 {
    font-size: 2.3rem;
  }
}
.p-philosophy ul {
  list-style: initial;
  padding-left: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy ul {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-philosophy-contents {
    text-align: center;
  }
}
.p-philosophy-row:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy-row:not(:first-of-type) {
    margin-top: 4rem;
  }
}

.p-post-thumbnail {
  width: 100%;
  margin: 3rem auto 0;
}
.p-post * + * {
  margin-top: 2rem;
}
.p-post h2, .p-post h3, .p-post h4, .p-post h5, .p-post h6 {
  margin-top: 4rem !important;
}
.p-post h2 {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray-light);
}
.p-post h3 {
  padding-left: 1.5rem;
  border-left: 0.4rem solid var(--color-blue);
}
.p-post h4 {
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--color-blue);
}

.p-privacy {
  line-height: 1.4444444444;
}
.p-privacy + .p-privacy {
  margin: 8rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-privacy + .p-privacy {
    margin: 10rem 0 0;
  }
}
.p-privacy h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-privacy h2 {
    font-size: 2rem;
  }
}
.p-privacy-row {
  margin: 5rem 0 0;
}
.p-privacy-row h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-row h3 {
    font-size: 1.6rem;
  }
}
.p-privacy-row *:not(h3) + * {
  margin: 2rem 0 0;
}
.p-privacy-row table {
  width: 100%;
  margin: 2rem 0 0;
  border-collapse: collapse;
}
.p-privacy-row table th, .p-privacy-row table td {
  padding: 1rem;
  font-size: 1.3rem;
  border: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .p-privacy-row table th, .p-privacy-row table td {
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
}
.p-privacy-row table th {
  width: 40%;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-privacy-row table th {
    width: 30%;
  }
}
.p-privacy-row table td {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .p-privacy-row table td {
    width: 70%;
  }
}

.p-recruit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 5.5rem;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(to right, #03001E 0, #7303C0 33%, #EC38BC 67%, #FDEFF9 100%);
  background-size: 100% 100%;
  background-position: 0% 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.5rem;
  transition: background-position 0.3s ease-in-out, background-size 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-recruit-btn {
    width: 42rem;
    height: 8.1rem;
    font-size: 3.2rem;
    border-radius: 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-recruit-btn:hover {
    background-size: 200% 100%;
    background-position: 100% 50%;
  }
}

.p-recruit-white-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 58.7rem;
  height: 8rem;
  padding: 1.5rem 2rem;
  border: 1px solid #B0B0B0;
  background-color: var(--color-white);
  font-size: 2rem;
  font-weight: 500;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-white-btn {
    width: 58.7rem;
    height: 10.7rem;
    padding: 2.8rem;
    font-size: 2.8rem;
  }
}
.p-recruit-white-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.4rem;
  display: block;
  width: 4.6rem;
  height: 0.6rem;
  transform: translateY(-50%);
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='6' fill='none'%3E%3Cpath stroke='%23000' d='M0 5h44l-4.46-4'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-recruit-white-btn:hover {
    box-shadow: unset;
    transform: translate(4px, 4px);
    background-color: var(--color-gray-light);
  }
  .p-recruit-white-btn:hover::after {
    transform: translateY(-50%) translateX(0.5rem);
  }
}

.p-recruit-candidate {
  position: relative;
}
.p-recruit-candidate-wrap {
  position: relative;
  padding: 8rem 0 5rem;
  margin: 4rem 0 0;
  background: url(../images/recruit/img_bg.png) no-repeat top center/cover;
  overflow-x: clip;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-recruit-candidate-wrap {
    min-height: 186.9rem;
    padding: 6.8rem 0 0;
    margin: 11.1rem 0 0;
  }
}
.p-recruit-candidate .p-recruit-cm-title {
  text-align: center;
  z-index: initial;
}
.p-recruit-candidate .p-recruit-cm-title p {
  bottom: 50%;
  transform: translateY(50%);
  line-height: 0.765625;
  mix-blend-mode: multiply;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-candidate .p-recruit-cm-title p {
    font-size: 4.5rem;
  }
}
.p-recruit-candidate-list {
  display: grid;
  gap: 3.7rem;
  max-width: 91rem;
  margin: 8rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-candidate-list {
    margin: 13.4rem auto 0;
  }
}
.p-recruit-candidate-list li {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-candidate-list li {
    gap: 4.5rem;
  }
}
.p-recruit-candidate-list li img {
  flex-shrink: 0;
  width: 8rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 768px) {
  .p-recruit-candidate-list li img {
    width: 17.8rem;
  }
}
.p-recruit-candidate-list li p {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-recruit-candidate-list li p {
    font-size: 3.2rem;
  }
}

.p-recruit-cm-title {
  position: relative;
  z-index: 1;
}
.p-recruit-cm-title h2 {
  font-size: 2.8rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-recruit-cm-title h2 {
    font-size: 4.8rem;
  }
}
.p-recruit-cm-title p {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  color: #F6F6F6;
  font-size: 6rem;
  font-weight: 900;
  text-transform: uppercase;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit-cm-title p {
    left: -0.8rem;
    bottom: 0;
    font-size: 12.8rem;
  }
}

.p-recruit-entry {
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-entry {
    padding: 12.8rem 0;
  }
}
.p-recruit-entry p {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-entry p {
    font-size: 3.6rem;
  }
}
.p-recruit-entry .p-recruit-btn {
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-entry .p-recruit-btn {
    margin: 5.6rem auto 0;
  }
}

.p-recruit-faq {
  padding: 10rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq {
    padding: 20rem 0 0;
  }
}
.p-recruit-faq .p-recruit-cm-title {
  text-align: center;
}
.p-recruit-faq-list {
  max-width: 94rem;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-list {
    margin: 4rem auto 0;
  }
}
.p-recruit-faq-item {
  border-bottom: 1px solid var(--color-gray);
}
.p-recruit-faq-item:last-child {
  border-bottom: none;
}
.p-recruit-faq-question {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.p-recruit-faq-question.active .p-recruit-faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-recruit-faq-question.active .p-recruit-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-recruit-faq-question h3 {
  flex: 1;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-question h3 {
    font-size: 1.8rem;
  }
}
.p-recruit-faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-q {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    margin-right: 3rem;
  }
}
.p-recruit-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  transition: transform 0.6s ease;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
  }
}
.p-recruit-faq-icon::before, .p-recruit-faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-black);
  transition: transform 0.6s ease;
}
.p-recruit-faq-icon::before {
  width: 2px;
  height: 1.6rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-icon::before {
    height: 2rem;
  }
}
.p-recruit-faq-icon::after {
  width: 1.6rem;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-icon::after {
    width: 2rem;
  }
}
.p-recruit-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f8f8f8;
}
.p-recruit-faq-answer p {
  padding: 3rem;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq-answer p {
    padding: 4rem 8rem;
  }
}

.p-recruit-job {
  padding: 10rem 0 0;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-recruit-job {
    padding: 18rem 0 0;
  }
}
.p-recruit-job-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit-job-wrap {
    display: flex;
    justify-content: flex-end;
  }
}
.p-recruit-job-img {
  width: 100%;
  margin: 4rem 0 0;
  border-radius: 4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-recruit-job-img {
    position: absolute;
    top: 0;
    left: -11rem;
    width: 62.7rem;
    margin: 0;
    border-radius: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-job-inner {
    max-width: 59rem;
  }
}
.p-recruit-job-inner * + * {
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-job-inner * + * {
    margin: 4rem 0 0;
  }
}
.p-recruit-job-inner > p {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job-inner > p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-job .p-recruit-cm-title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-job .p-recruit-cm-title {
    padding-top: 10rem;
  }
}
.p-recruit-job .p-recruit-cm-title p {
  bottom: -1rem;
  color: #89CBFF;
}
@media screen and (min-width: 768px) {
  .p-recruit-job .p-recruit-cm-title p {
    bottom: -2rem;
  }
}

.p-recruit-message {
  padding: 40rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-message {
    padding: 31.2rem 0 0;
  }
}
.p-recruit-message-wrap {
  display: grid;
  gap: 5rem 8.6rem;
  margin: 4rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-message-wrap {
    display: flex;
    align-items: flex-start;
  }
}
.p-recruit-message-img {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-recruit-message-img {
    order: 2;
    margin: -10rem 0 0;
  }
}
.p-recruit-message-img::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  background-color: var(--color-gray-light);
  border-radius: 1.5rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit-message-img::after {
    top: 2.6rem;
    left: 2.9rem;
    width: 45.5rem;
    border-radius: 3.2rem;
  }
}
.p-recruit-message-img img {
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-message-img img {
    width: 45.5rem;
    border-radius: 3.2rem;
  }
}
.p-recruit-message-text {
  font-size: 1.7rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-recruit-message-text {
    font-size: 2rem;
  }
}
.p-recruit-message-text p + p {
  margin: 2rem 0 0;
}
.p-recruit-message-ceo {
  margin: 3rem 0 0;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-recruit-message-ceo {
    margin: 4rem 0 0;
  }
}

.p-recruit-mv {
  position: relative;
  min-height: 93.4rem;
  background: url(../images/recruit/img_mv_bg.png) no-repeat bottom center/cover;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv {
    min-height: 104.4rem;
  }
}
.p-recruit-mv-scroll {
  position: absolute;
  top: 40rem;
  right: 1.8rem;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-scroll {
    top: 11rem;
  }
}
.p-recruit-mv-scroll::after {
  content: "";
  position: absolute;
  bottom: -8.4rem;
  left: 1.1rem;
  display: block;
  width: 0.6rem;
  height: 7.6rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='75' fill='none'%3E%3Cpath stroke='%23000' d='M1 0v74l4-7.5'/%3E%3C/svg%3E");
  animation: arrowGrow 2s infinite;
}
.p-recruit-mv-wrap {
  position: relative;
  max-width: 128rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv-wrap {
    text-align: center;
  }
}
.p-recruit-mv-inner {
  padding: 3rem 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-inner {
    padding: 7rem 0 0 5rem;
  }
}
.p-recruit-mv-title {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv-title {
    width: 33.5rem;
    margin-inline: auto;
  }
}
.p-recruit-mv-title img {
  width: 33.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-title img {
    width: 88.2rem;
  }
}
.p-recruit-mv-copy {
  position: absolute;
  top: 6.2rem;
  left: 0.5rem;
  width: 24.3rem !important;
  transform: rotate(-6.66deg);
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-copy {
    top: 20rem;
    left: 1.4rem;
    width: 64.1rem !important;
  }
}
.p-recruit-mv-text {
  width: 33.5rem;
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-text {
    width: 60.3rem;
    margin: 4.2rem 0 0 0.3rem;
  }
}
.p-recruit-mv-human {
  width: 32.1rem;
  margin-inline: auto;
  opacity: 0;
  animation: fadeInDelay 0.5s ease-out 2s forwards;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-human {
    position: absolute;
    top: -4.5rem;
    right: -2.5rem;
    width: 58.1rem;
    margin: 0;
  }
}
.p-recruit-mv .p-recruit-btn {
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv .p-recruit-btn {
    margin: 4.3rem 0 0 9.9rem;
  }
}
.p-recruit-mv-bottom {
  position: absolute;
  bottom: -28rem;
  left: 50%;
  transform: translateX(-50%);
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-bottom {
    bottom: -8.4rem;
    margin: 19.3rem 0 0;
  }
}
.p-recruit-mv-bottom h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-bottom h1 {
    font-size: 4.8rem;
  }
}
.p-recruit-mv-bottom p {
  margin: 2rem 0 0;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-recruit-mv-bottom p {
    margin: 4.3rem 0 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv-bottom p {
    text-align: left;
  }
}

@keyframes fadeInDelay {
  from {
    opacity: 0;
    transform: translateX(-1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-recruit-outline {
  padding: 10rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline {
    padding: 20rem 0 0;
  }
}
.p-recruit-outline .p-recruit-cm-title {
  text-align: center;
}
.p-recruit-outline-wrap {
  max-width: 94rem;
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-wrap {
    margin: 7rem auto 0;
  }
}
.p-recruit-outline-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}
.p-recruit-outline-tab .tab {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background-color: #F4F4F4;
  border: 1px solid #C0C0C0;
  border-radius: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-tab .tab {
    padding: 1.6rem;
    font-size: 2.2rem;
  }
}
.p-recruit-outline-tab .tab.active {
  color: var(--color-white);
  background-color: var(--color-blue);
}
@media (any-hover: hover) {
  .p-recruit-outline-tab .tab:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
  }
}
.p-recruit-outline-panel {
  margin: 5.5rem 0 0;
}
.p-recruit-outline-panel .panel {
  display: none;
}
.p-recruit-outline-panel .panel.show {
  display: block;
}
.p-recruit-outline-panel .panel dl > div {
  display: grid;
  border-bottom: 1px solid #B0B0B0;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-panel .panel dl > div {
    grid-template-columns: 18rem 1fr;
  }
}
.p-recruit-outline-panel .panel dl > div:first-child {
  border-top: 1px solid #B0B0B0;
}
.p-recruit-outline-panel .panel dl dt, .p-recruit-outline-panel .panel dl dd {
  padding: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-panel .panel dl dt, .p-recruit-outline-panel .panel dl dd {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-outline-panel .panel dl dt {
    padding-bottom: 1rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-outline-panel .panel dl dd {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-panel .panel dl dd {
    padding-inline: 4rem;
    border-left: 1px solid #B0B0B0;
  }
}
.p-recruit-outline-panel .panel dl ul {
  padding-left: 1.6rem;
  list-style: initial;
}
.p-recruit-outline-item-row {
  padding: 3rem 0;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-item-row {
    padding: 5rem 0;
  }
}
.p-recruit-outline-item-row:not(:first-child) {
  border-top: 1px solid var(--color-gray);
}
.p-recruit-outline-item-row:first-child {
  position: relative;
  padding-top: 0;
  z-index: 1;
}
.p-recruit-outline-item-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-item-title {
    font-size: 3.2rem;
  }
}
.p-recruit-outline-item-sub-title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit-outline-item-sub-title {
    font-size: 2.4rem;
  }
}

.js-title-animetion {
  transition: 1.2s ease;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.js-scroll-animetion {
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(2rem);
}

.u-link-animation {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.u-link-animation::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: var(--color-blue);
  transition: transform 0.8s ease;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0.1;
  z-index: -1;
}
.u-link-animation::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.7rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat 50% 50%/contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' fill='none'%3E%3Cpath stroke='%23000' d='M.539.461 10.077 10 .54 19.539'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .u-link-animation::after {
    right: 3rem;
  }
}
@media (any-hover: hover) {
  .u-link-animation:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .u-link-animation:hover::after {
    transform: translate(1rem, -50%);
  }
}

.u-skew-animation {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.u-skew-animation::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: var(--color-white);
  background-image: linear-gradient(135deg, var(--color-blue) 50%, transparent 50%);
  background-position: 100%;
  background-size: 350%;
  opacity: 0.1;
  transition: background 0.6s ease-in-out;
  z-index: -1;
}
@media (any-hover: hover) {
  .u-skew-animation:hover::before {
    background-position: 0;
  }
}

@keyframes arrowGrow {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-color-gray {
  color: var(--color-gray);
}

.u-color-red {
  color: var(--color-red);
}

.u-color-blue {
  color: var(--color-blue);
}

.u-color-green {
  color: var(--color-green);
}

.u-color-yellow {
  color: var(--color-yellow);
}

.u-color-orange {
  color: var(--color-orange);
}

.u-color-purple {
  color: var(--color-purple);
}

.u-color-pink {
  color: var(--color-pink);
}

@media screen and (min-width: 768px) {
  .u-hide-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hide-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-show-pc {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-show-sp {
    display: block !important;
  }
}

.u-show-br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-show-br-sp {
    display: inline-block !important;
  }
}

.u-show-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-show-br-pc {
    display: inline-block !important;
  }
}

/* font-family
---------------------------------------- */
/* text-align
---------------------------------------- */
.u-al-left {
  text-align: left !important;
}
.u-al-left.sp-center {
  text-align: center !important;
}
@media screen and (min-width: 768px) {
  .u-al-left.sp-center {
    text-align: left !important;
  }
}

.u-al-center {
  text-align: center !important;
}
.u-al-center.sp-left {
  text-align: left !important;
}
@media screen and (min-width: 768px) {
  .u-al-center.sp-left {
    text-align: center !important;
  }
}

.u-al-right {
  text-align: right !important;
}
.u-al-right.sp-left {
  text-align: left !important;
}
@media screen and (min-width: 768px) {
  .u-al-right.sp-left {
    text-align: right !important;
  }
}

/* letter spacing
---------------------------------------- */
@media screen and (max-width: 767px) {
  .u-ls-narrow-sp {
    letter-spacing: -0.05em;
  }
}

/* writing-mode
---------------------------------------- */
.u-wm-rl {
  writing-mode: vertical-rl !important;
}

/* font-weight
---------------------------------------- */
.u-fw-regular {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-semib {
  font-weight: 600 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

/* text margin
---------------------------------------- */
.u-no-margin {
  margin: 0;
}

.u-link {
  color: var(--color-blue);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-link:hover {
    text-decoration: none;
  }
}

.u-text-en {
  text-transform: uppercase;
}
/*# sourceMappingURL=style.css.map */
