@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2403100775vw;
  }
}
@media (min-width: 1290px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE */
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Edge, Safari */
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1290px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-page-hero {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-page-hero {
    margin-top: 6.25rem;
  }
}

.c-page-hero {
  width: 100%;
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  max-height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .c-page-hero {
    aspect-ratio: 16/5;
    max-height: 18.75rem;
  }
}

.c-page-hero__image {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

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

@media screen and (min-width: 768px) {
  .c-page-hero__image img {
    height: 100%;
  }
}

.c-page-hero__title {
  position: absolute;
  top: -6rem;                
  right: 30%;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .c-page-hero__title {
    top: -57%;
      -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.c-page-hero__title::after {
  position: absolute;
  left: 0;
  top: 100%;
}

.c-page-hero__title--l {
  right: 20%;
}
@media screen and (min-width: 768px) {
  .c-page-hero__title--l {
    right: 30%;
  }
}

.c-page-hero__title--m {
  right: 25%;
}
@media screen and (min-width: 768px) {
  .c-page-hero__title--m {
    right: 30%;
  }
}

.l-section-bg {
  background: #F0F0F0;
  margin: 0 calc(50% - 50vw);
  padding: calc(50vw - 50%);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .l-section-bg {
    padding-top: 1.25rem;
    padding-bottom: 6.25rem;
  }
}

.l-section-inner {
  background: #fff;
  padding: 1.875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-section-inner {
    padding: 5rem 7.5rem;
    margin-top: 3.75rem;
  }
}

.c-btn__link {
  position: relative;
  display: block;
  width: 11.25rem;
  padding: 0.625rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  border: solid 1px #000;
  text-decoration: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn__link {
    width: 18.75rem;
    padding: 0.9375rem 0;
  }
}

.c-btn__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-radius: 20px;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .c-btn__link::before {
    width: 18px;
    height: 18px;
  }
}

.c-btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.25rem;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 3px solid transparent;
  border-right: 0 solid transparent;
  border-left: 6px solid #fff;
  border-bottom: 3px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-card01__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.c-card01__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .c-card01__item {
    font-size: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-card01__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.c-card01__label {
  display: inline-block;
  min-width: 5rem;
  padding: 0.3125rem 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-color: #B10000;
}

.c-card01__label--b {
  background-color: #000;
  padding: 0.40625rem 0.625rem;
}

.c-card01__label--w {
  color: #000;
  background-color: #fff;
  border: solid 1px #B10000;
}

.c-card01__time {
  margin-left: 1.25rem;
  -webkit-font-feature-settings: "tnum";
          font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.c-card01__text {
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .c-card01__text {
    margin-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card01__text--l {
    max-width: 18.75rem;
  }
}

.c-card01__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-card01__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.card02 {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 19.8125rem;
}

.card02__image {
  width: 100%;
}

.card02__image img {
  aspect-ratio: 317/195;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card02__title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2222222222;
  letter-spacing: 3%;
  padding: 0.625rem 0;
  border-bottom: solid 1px #000;
}
@media screen and (min-width: 768px) {
  .card02__title {
    font-size: 1.375rem;
    line-height: 1.1818181818;
    letter-spacing: 3%;
    padding: 0.9375rem 0;
  }
}

.card02__text {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 3%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .card02__text {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 3%;
    margin-top: 0.625rem;
  }
}

.card02__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}

.card02__btn {
  display: inline-block;
  width: 5.625rem;
  padding: 0.5rem 0;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 3%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .card02__btn {
    padding: 0.75rem 0;
  }
}

.card02__btn--w {
  color: #000;
  background-color: #fff;
  border: solid 1px #B10000;
}

.c-recruit {
  width: 100%;
  padding: 0 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-recruit {
    width: 100%;
    max-width: 62.5rem;
    height: 14.5625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
}

.c-recruit__title-box {
  background-color: #B10000;
  padding: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-recruit__title-box {
    -webkit-box-flex: 0.9;
        -ms-flex: 0.9;
            flex: 0.9;
    height: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-recruit__btn-box {
  padding: 0.625rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-recruit__btn-box {
    padding: 0;
    -webkit-box-flex: 1.1;
        -ms-flex: 1.1;
            flex: 1.1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

.c-recruit__label {
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-recruit__label {
    font-size: 1.625rem;
  }
}

.c-recruit__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.625rem;
}

.card04 {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 19.8125rem;
}

.card04__image {
  width: 100%;
}

.card04__image img {
  aspect-ratio: 317/195;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card04__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin-top: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card04__btn {
  display: inline-block;
  width: 5.625rem;
  padding: 0.5rem 0;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .card04__btn {
    padding: 0.75rem 0;
  }
}

.card04__time {
  font-weight: bold;
  font-size: 1rem;
  line-height: 100%;
  vertical-align: middle;
}

.card04__text {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 3%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .card04__text {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 3%;
    margin-top: 0.625rem;
  }
}

.c-card05 {
  color: #fff;
  background-color: #B10000;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .c-card05 {
    padding: 4.375rem 0 6.25rem 0;
  }
}

.c-card05__title.c-title--w::after {
  content: attr(data-ja);
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card05__title.c-title--w::after {
    font-size: 1rem;
    text-align: center;
    margin-top: 0.625rem;
  }
}

.c-card05__subtitle {
  font-weight: bold;
  font-style: Bold;
  font-size: 1.25rem;
  line-height: 1.3;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-card05__subtitle {
    font-size: 2.5rem;
    margin-top: 1.25rem;
  }
}

.c-card05__text {
  font-weight: 700;
  font-style: Bold;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 3%;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-card05__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.c-card05__btn__link {
  border-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-card05__btn__link {
    margin-top: 1.25rem;
  }
}

.c-card05__btn__link::before {
  background-color: #fff;
}

.c-card05__btn__link::after {
  border-left-color: #000;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: 0.875rem;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__list {
    font-size: 1.125rem;
  }
}

.c-breadcrumb__item {
  white-space: nowrap;
}

.c-breadcrumb__item:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin: 0 0.6em;
}

.c-breadcrumb__item:last-of-type {
  max-width: 12.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.c-card07 {
  width: 100%;
}

.c-card07__nav {
  width: 100%;
  max-width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .c-card07__nav {
    min-width: 27.875rem;
  }
}

.c-card07__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-card07__nav-list {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-card07__nav-item {
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-card07__nav-button {
  display: block;
  width: 100%;
  padding: 0.3125rem 0.25rem;
  font-size: 0.625rem;
  font-weight: bold;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card07__nav-button {
    padding: 0.3125rem 0.5rem;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card07__nav-button:hover {
    opacity: 0.7;
    background-color: #FFF1F1;
  }
}

.c-card07__nav-button.is-active {
  background-color: #FFF1F1;
  color: #000;
}

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  list-style-type: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-pagination__list {
    gap: 0 0.9375rem;
  }
}

.c-pagination__list a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.125rem;
  height: 1.625rem;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
  color: #6A6A6A;
  border-bottom: 2px solid transparent;
}

.c-pagination__list .c-pagination__current a {
  border-bottom: 2px solid #B10000;
  color: #B10000;
  pointer-events: none;
}

.c-pagination__prev {
  margin-right: 1.25rem;
}

.c-pagination__prev a::before {
  content: "<";
}

.c-pagination__next {
  margin-left: 1.25rem;
}

.c-pagination__next a::after {
  content: ">";
}

.c-pagination__prev a,
.c-pagination__next a {
  width: 1.875rem;
  height: 1.875rem;
  background-color: #B10000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-card09 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}

.c-card09__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 1.2rem;
  line-height: 1.5;
  border-bottom: solid 1px #000;
}
@media screen and (min-width: 768px) {
  .c-card09__title {
    font-size: 2rem;
  }
}

.l-fv {
  margin-top: 3.75rem;
  background-color: #000;
  padding: 1.875rem 1.875rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-fv {
    margin-top: 6.25rem;
    padding: 5rem 5rem 14.375rem;
  }
}

.fv-swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fv-swiper {
    max-width: 56.5rem;
    width: 100%;
  }
}

.fv-swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv-swiper-slide img {
  width: 100%;
  height: auto;
  max-width: 56.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* フェード用のスタイル（Swiper 初期 CSS */
.swiper-fade .swiper-slide {
  opacity: 0 !important;
  -webkit-transition: opacity 0.8s linear;
  transition: opacity 0.8s linear;
}

.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.slider-thumbnail .swiper-slide {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 25%;
}

.slider {
  max-width: 62.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .slider {
    height: 35rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.slider-thumbnail {
  max-width: 62.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .slider-thumbnail {
    margin-top: 1.25rem;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
  color: #fff;
  width: 1.875rem;
  height: 1.875rem;
  background: #000;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .slider .swiper-button-next,
  .slider .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.slider .swiper-button-prev {
  left: 0;
  right: auto;
}

.slider .swiper-button-next {
  right: 0;
  left: auto;
}

.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .slider .swiper-button-next::after,
  .slider .swiper-button-prev::after {
    font-size: 1.25rem;
  }
}

.slider .swiper-button-next::after {
  content: ">";
}

.slider .swiper-button-prev::after {
  content: "<";
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}

.c-table__cell {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0%;
  padding: 0.75rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-table__cell {
    font-size: 1rem;
    line-height: 1.625;
    padding: 1.25rem 0.9375rem !important;
  }
}

.c-table__cell--head {
  text-align: center;
  font-weight: 700;
  font-style: bold;
  width: 32%;
  white-space: normal;
}

.c-table__row td.c-table__cell {
  text-align: left;
}

.c-table__row:nth-child(odd) {
  background-color: #F0F0F0;
}

.c-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 3.75rem;
  }
}

.c-title::after {
  content: attr(data-ja);
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-title::after {
    font-size: 1.125rem;
  }
}

.c-title::first-letter {
  color: #B10000;
}

.c-title--w {
  position: relative;
  font-size: 2.625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-title--w {
    font-size: 4.375rem;
    text-align: center;
  }
}

.c-title--w::after {
  content: attr(data-ja);
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 0.3125rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title--w::after {
    font-size: 1rem;
    text-align: left;
    width: 100%;
  }
}

.c-title--w::first-letter {
  color: inherit;
}

.c-title03 {
  font-weight: 700;
  font-style: Bold;
  font-size: 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title03 {
    font-size: 2.375rem;
  }
}

.c-title03::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #000;
  margin-left: 0.75rem;
}

.c-title03 span::first-letter {
  color: #B10000;
}

.p-announce__contents {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-announce__contents {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-announce__list {
    gap: 1.25rem;
  }
}

.p-announce__pagination {
  padding-top: 3.75rem;
}

.p-company__strength {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-company__strength {
    margin-top: 3.75rem;
  }
}

.p-company__table {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__table {
    margin-top: 2rem;
  }
}

.p-contact-form {
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  letter-spacing: 0%;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    max-width: none;
  }
}

.c-contact-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__form {
    margin-top: 1.875rem;
  }
}

.c-contact-form__attention {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__attention {
    font-size: 1rem;
  }
}

.c-contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
  }
}

.c-contact-form__label {
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-contact-form__label {
    font-size: 1.125rem;
    width: 12.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.required {
  position: relative;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 1.125rem;
  line-height: 0;
  margin-left: 1.25rem;
}

.required--p {
  margin-left: 0;
  margin-right: 0.625rem;
}

.required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -25%);
          transform: translate(-50%, -25%);
  background: #B10000;
  color: #fff;
  padding: 0.125rem 0.625rem;
  font-size: 0.625rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .required::after {
    font-size: 0.875rem;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}

.c-contact-form__input,
.c-contact-form__textarea {
  width: 100%;
  padding: 0.3125rem 0.625rem;
  border: none;
  background-color: #F0F0F0;
  border-radius: 0.1875rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__input,
  .c-contact-form__textarea {
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    width: 47.9375rem;
  }
}

.c-contact-form__textarea {
  height: 13.5625rem;
  resize: none;
  overflow: auto;
}

.c-contact-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875rem;
  visibility: visible !important;
  opacity: 1 !important;
}

.c-contact-form__postal-mark {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__postal-mark {
    font-size: 1.125rem;
  }
}

.c-contact-form__postal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-contact-form__postal-wrapper {
    width: auto;
  }
}

.c-contact-form__postal-hyphen {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__postal-hyphen {
    font-size: 1rem;
  }
}

.c-contact-form__input--postal-short {
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__input--postal-short {
    width: 6.875rem;
  }
}

.c-contact-form__input--postal-long {
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .c-contact-form__input--postal-long {
    width: 9.875rem;
  }
}

.c-contact-form__agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .c-contact-form__agree {
    margin-top: 2rem;
  }
}

.c-contact-form__agree-label {
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-contact-form__agree-label {
    font-size: 1.125rem;
  }
}

.c-contact-form__agree-text--bold {
  border-bottom: solid 1px #000;
}

.c-contact-form__checkbox {
  width: 0.875rem;
  height: 0.875rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
  background-color: #fff;
  position: relative;
}

.c-contact-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0.125rem;
  width: 0.375rem;
  height: 0.75rem;
  border: solid #B10000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-cta__recruit {
  background-color: #000;
  padding: 2.5rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-cta__recruit {
    padding: 5rem 0;
  }
}

.p-cta__contact {
  background-color: #F0F0F0;
  padding: 2.5rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-cta__contact {
    padding: 5rem 0;
  }
}

.p-cta__contact--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-cta__contact--item {
    gap: 2.5rem;
  }
}

.p-cta__contact--title {
  text-align: center;
}

.c-article__image {
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-article__image {
    margin-top: 2.5rem;
  }
}

.c-article__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.c-article__text {
  font-family: Inter;
  font-size: 0.75rem;
  line-height: 2;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-article__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1.875rem;
  }
}

.c-article__btn {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-archive {
  margin-top: 3rem;
}

.c-archive__wrapper {
  margin-top: 1.875rem;
}

.c-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-archive__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-footer {
  background-color: #000;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 6.25rem;
  }
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 0.9375rem 0;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-item:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 1rem;
    background-color: #fff;
    left: 0;
  }
}

.p-footer-nav-item__link {
  display: block;
  text-align: center;
  padding: 0.3125rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer-nav-item__link {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 5%;
    display: inline-block;
    padding: 0.9375rem 1.5625rem;
  }
}

.p-footer__copyright-item {
  font-weight: 700;
  font-style: Bold;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.p-header {
  width: 100%;
  height: 3.75rem;
  padding-left: 1.25rem;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 44;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 6.25rem;
    padding: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

.p-header__wrapper {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    padding: 0 6.25rem;
  }
}

.p-header__logo {
  display: block;
  position: relative;
  width: 11.875rem;
  z-index: 44;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 18.75rem;
    height: inherit;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media screen and (min-width: 768px) {
  .p-header__logo-image {
    height: inherit;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

.p-header__logo-image img {
  aspect-ratio: 190/24;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-header__logo-image img {
    aspect-ratio: 333/40;
  }
}

.p-header__hamburger {
  height: inherit;
  width: 3.75rem;
  padding: 1.25rem 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  z-index: 44;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  display: inline-block;
  border-radius: 0.5625rem;
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
  -webkit-transition: -webkit-transform ease-in-out 0.3s;
  transition: -webkit-transform ease-in-out 0.3s;
  transition: transform ease-in-out 0.3s;
  transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
}

.p-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(0.4rem) rotate(45deg);
          transform: translateY(0.4rem) rotate(45deg);
}

.p-header__hamburger.is-active span:nth-child(2) {
  background-color: transparent;
}

.p-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-0.4rem) rotate(-45deg);
          transform: translateY(-0.4rem) rotate(-45deg);
}

.p-header__nav {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 3.125rem 1.25rem 1.25rem;
  z-index: 43;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    height: inherit;
    width: 100%;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-header__nav-inner {
  height: 100%;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .p-header__nav-inner {
    height: inherit;
    overflow: visible;
    overflow: initial;
  }
}

.p-header__nav-inner2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  min-height: 23.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header__nav-inner2 {
    min-height: 0;
    min-height: initial;
    height: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.9375rem;
  }
}

.p-header__nav-list {
  width: 17.5rem;
  margin-inline: auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__nav-list {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    width: initial;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: inherit;
    margin-inline: initial;
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-item {
    height: inherit;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-item:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 1rem;
    background: #000;
  }
}

.p-header-nav-item__link {
  border-bottom: 1px solid #707070;
  display: block;
  text-align: center;
  padding: 0.625rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header-nav-item__link {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 5%;
    display: inline-block;
    padding: 0.9375rem 1.5625rem;
    border-bottom: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav-item__link:hover {
    color: #B10000;
    font-weight: bold;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav-item__link:hover::after {
    content: "";
    position: absolute;
    bottom: 0.625rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background-color: #B10000;
  }
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

.p-fv-news {
  background-color: #fff;
  padding: 1.875rem;
  max-width: 28.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.125rem;
  margin-top: -5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-fv-news {
    max-width: 62.5rem;
    margin-top: -7.1875rem;
  }
}

.c-fv-news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-fv-news__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
  }
}

.c-fv-news__btn {
  margin-top: 1.875rem;
}

.p-fv-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-fv-products__btn {
  margin-top: 3.75rem;
}

.c-fv-products__title {
  text-align: center;
}

.p-detail__wrapper {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-detail__wrapper {
    margin-top: 3.75rem;
  }
}

.c-detail__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .c-detail__list {
    grid-template-columns: repeat(2, minmax(0, 19.8125rem));
  }
}
@media screen and (min-width: 768px) {
  .c-detail__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-job {
    margin-top: 2.5rem;
  }
}

.p-recruit-job__section {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__section {
    margin-bottom: 2.5rem;
  }
}

.p-recruit-job__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0%;
  color: #fff;
  background-color: #000;
  padding: 0.3125rem 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__title {
    font-size: 1.375rem;
    line-height: 1;
    padding: 0.75rem 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.p-recruit-job__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-recruit-job__item {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__item {
    margin-bottom: 1.875rem;
  }
}
.p-recruit-job__item:last-child {
  margin-bottom: 0;
}

.p-recruit-job__bullet {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0%;
  margin-bottom: 0.625rem;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__bullet {
    font-size: 1.125rem;
    line-height: 1.2777777778;
    margin-bottom: 0.9375rem;
    padding-left: 1.5rem;
  }
}

.p-recruit-job__bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #B10000;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__bullet::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-recruit-job__text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0%;
  margin: 0;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__text {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 0.625rem;
  }
}

.p-recruit-job__wrap {
  margin-left: 0.625rem;
}

.p-recruit-job__wrap--2 {
  margin-top: 1.5625rem;
}

.p-recruit-job__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__images {
    gap: 1.6875rem;
  }
}

.p-recruit-job__image {
  width: 100%;
  display: block;
}

.p-recruit-job__image:nth-child(1) {
  margin-top: 0;
}

.p-recruit-job__image:nth-child(2) {
  margin-top: 2.5rem;
}

.p-recruit-job__image:nth-child(3) {
  margin-top: 5rem;
}

.p-recruit-job__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 317/380;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-series__wrapper {
  margin-top: 2.5rem;
}

.p-series__contents {
  margin-top: 2.375rem;
}

.c-table02 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.c-table02__cell {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0%;
  padding: 0.75rem 0.625rem 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .c-table02__cell {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    padding: 1.25rem 0.9375rem 1.25rem 0;
  }
}

.c-table02__cell--head {
  text-align: left;
  font-weight: 700;
  font-style: bold;
  width: 24%;
  white-space: normal;
}

.c-table02__row td.c-table02__cell {
  text-align: left;
}

.c-table02__row {
  border-bottom: solid 1px rgba(0, 0, 0, .3019607843);
}

.c-series__text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0%;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-series__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1.875rem;
  }
}

.c-series__btn {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-series__btn {
    margin-top: 3.75rem;
  }
}

.p-series__archive {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-series__archive {
    margin-top: 6.25rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */

.c-breadcrumb span {
  margin: 0 0.2em;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    font-size: 12px;
    white-space: nowrap;     
    overflow: hidden;         
    text-overflow: ellipsis;
    padding-bottom: 0.5em;
  }
}

.slider-thumbnail .swiper-slide-thumb-active {
  border: 2px solid #B10000;
  box-sizing: border-box;
}

.c-contact-form__button {
  display: flex !important;
  justify-content: center;
  align-items: center;      
  color: #000 !important;    
  font-size: 1.25rem !important;  
  line-height: normal !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ACF画像なし・通常表示用 */
.p-series__image {
  width: 100%;
  max-width: 62.5rem; 
  margin: 0 auto;
}

.p-series__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.c-article__body p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.c-article__text h2 {
  font-size: 2rem;
  margin: 1rem 0;
}

.c-article__text h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
}
.c-article__text ul,ol {
  margin: 1rem 0 1rem 1.4rem;
  padding-left: 1.5rem;
}

.c-article__text ul {
  list-style: disc;
}

.c-article__text ol {
  list-style: decimal;
}

.c-article__text a {
  text-decoration: underline;
  transition: opacity 0.3s;
}

.c-article__text a:hover {
  opacity: 0.7;
}

.c-article__text img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}