.c-accordion {
  margin-top: 1.25rem;
}

.c-accordion__list {
  border-top: 1px solid #cccccc;
  padding: 1.25rem 0;
}

.c-accordion__list:last-of-type {
  border-bottom: 1px solid #cccccc;
}

.c-accordion__head {
  position: relative;
  padding: 0.125rem 3.25rem 0.25rem 0.375rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-accordion__head:hover,
.c-accordion__head.active {
  background: #e6001e;
}

.c-accordion__head::before,
.c-accordion__head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-accordion__head:hover::before,
.c-accordion__head:hover::after,
.c-accordion__head.active::before,
.c-accordion__head.active::after {
  background: #fff;
}

.c-accordion__head::before {
  width: 1.5rem;
  height: 2px;
  right: 0.6875rem;
}

.c-accordion__head::after {
  width: 2px;
  height: 1.5rem;
  right: 1.375rem;
}

.c-accordion__list.active .c-accordion__head::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.c-accordion__row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem;
}

.c-accordion__title {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__title {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__title {
    font-size: 1.875rem;
  }
}

.c-accordion__title .note {
  display: inline-block;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0em;
  padding-left: 1.875rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__title .note {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__title .note {
    font-size: 1rem;
  }
}

.c-accordion__title .small {
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__title .small {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__title .small {
    font-size: 1.5rem;
  }
}

.c-accordion__head:hover .c-accordion__title,
.c-accordion__head.active .c-accordion__title {
  color: #fff;
}

.c-accordion__lists--qa .c-accordion__title {
  position: relative;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__lists--qa .c-accordion__title {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__lists--qa .c-accordion__title {
    font-size: 1.25rem;
  }
}

.c-accordion__tag {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  background: #eeeeee;
  border-radius: 0.375rem;
  padding: 0.21875rem 0.375rem 0.28125rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__tag {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__tag {
    font-size: 0.75rem;
  }
}

.c-accordion__head:hover .c-accordion__tag,
.c-accordion__head.active .c-accordion__tag {
  color: #e6001e;
  background: #fff;
}

.c-accordion__sub-title {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  margin-top: 0.125rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__sub-title {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__sub-title {
    font-size: 1rem;
  }
}

.c-accordion__head:hover .c-accordion__sub-title,
.c-accordion__head.active .c-accordion__sub-title {
  color: #fff;
}

.c-accordion__contents {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-accordion__head.active + .c-accordion__contents {
  padding-top: 1.25rem;
}

.c-accordion__text a {
  text-decoration: underline;
}

.c-accordion__text a:hover {
  opacity: 0.8;
}

.c-accordion__item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
}

.c-accordion__item:not(:first-of-type) {
  margin-top: 1.25rem;
}

.c-accordion__item-contents {
  width: calc(28.6% - 1.25rem);
}

.c-accordion__item-image img {
  aspect-ratio: 300/200;
}

.c-accordion__item-name {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__item-name {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__item-name {
    font-size: 0.875rem;
  }
}

.c-accordion__item-box {
  width: calc(71.4% - 1.25rem);
}

.c-accordion__media {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
}

.c-accordion__media--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.c-accordion__media-lists {
  width: calc(66.3% - 1.875rem);
}

.c-accordion__media-list:not(:first-of-type) {
  margin-top: 1rem;
}

.c-accordion__media--column .c-accordion__media-lists {
  width: 100%;
}

.c-accordion__media-title {
  position: relative;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  padding-left: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__media-title {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__media-title {
    font-size: 0.875rem;
  }
}

.c-accordion__media-title::before {
  content: "";
  width: 5px;
  height: 2px;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #000;
}

.c-accordion__media-text {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__media-text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__media-text {
    font-size: 0.875rem;
  }
}

.c-accordion__media-box {
  width: calc(33.7% - 1.875rem);
}

.c-accordion__media-image img {
  aspect-ratio: 240/160;
}

.c-accordion__media-job {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__media-job {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__media-job {
    font-size: 0.875rem;
  }
}

.c-accordion__media-note {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__media-note {
    font-size: max(0.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__media-note {
    font-size: 0.625rem;
  }
}

.c-accordion__layout {
  margin-top: 1.25rem;
}

.c-accordion__layout-item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.625rem;
}

.c-accordion__layout-item:not(:first-of-type) {
  margin-top: 2.5rem;
}

.c-accordion__layout-title {
  width: calc(16% - 0.3125rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__layout-title {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__layout-title {
    font-size: 1rem;
  }
}

.c-accordion__layout-title .small {
  display: block;
  font-weight: 700;
  line-height: 2.2857142857;
  letter-spacing: 0.0457142857em;
  margin-top: -0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__layout-title .small {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__layout-title .small {
    font-size: 0.875rem;
  }
}

.c-accordion__layout-text {
  width: calc(84% - 0.3125rem);
}

.c-accordion__layout-text a {
  text-decoration: underline;
}

.c-accordion__layout-text a:hover {
  opacity: 0.8;
}

.c-accordion__layout-text .note {
  color: #888;
}

.c-accordion__layout-note {
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  color: #888;
  padding-bottom: 2.5rem;
  text-align: right;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__layout-note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__layout-note {
    font-size: 0.75rem;
  }
}

.c-accordion__interview {
  margin-top: 2.5rem;
}

.c-accordion__interview-head {
  gap: 2rem;
}

.c-accordion__interview-head .text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #e6001e;
}

.c-accordion__interview-head .border {
  width: 100%;
  height: 1px;
  background: #e6001e;
}

.c-accordion__interview-items-wrap {
  padding-bottom: 2.5rem;
  margin-top: 1.25rem;
  overflow: hidden;
}

.c-accordion__interview-template .common-interview__swiper-container {
  margin-top: 0;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

.c-accordion__interview-template .swiper-slide {
  width: 16.5625rem;
  height: auto;
}

.c-accordion__interview-template .swiper-button-next {
  display: none;
}

.c-accordion__interview-items {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
  padding-right: 2.5rem;
}

.c-accordion__interview-item {
  width: 16.5625rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0;
}

.c-accordion__interview-item a {
  position: relative;
}

.c-accordion__interview-item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.c-accordion__interview-item a:hover::before {
  opacity: 1;
}

.c-accordion__interview-image {
  overflow: hidden;
}

.c-accordion__interview-image img {
  aspect-ratio: 265/176;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-accordion__interview-item:hover .c-accordion__interview-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-accordion__interview-content {
  padding: 0 0 0.875rem 0.625rem;
  margin-top: -1rem;
}

.c-accordion__interview-title {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  z-index: 1;
}

.c-accordion__interview-title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 0 0.40625rem 0.125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__interview-title span {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__interview-title span {
    font-size: 1rem;
  }
}

.c-accordion__interview-texts {
  padding-left: 0.375rem;
}

.c-accordion__interview-job {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  margin-top: 0.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__interview-job {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__interview-job {
    font-size: 0.875rem;
  }
}

.c-accordion__interview-meta {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #bbbbbb;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__interview-meta {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-accordion__interview-meta {
    font-size: 0.75rem;
  }
}

.u-sales .c-accordion__head:hover,
.u-sales .c-accordion__head.active,
.u-sales .c-accordion__interview-title span,
.u-sales .c-accordion__interview-head .border {
  background: #e77600;
}

.u-sales .c-accordion__layout-title,
.u-sales .c-accordion__interview-head .text {
  color: #e77600;
}

.u-sales .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-sales .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #e77600;
}

.u-scm .c-accordion__head:hover,
.u-scm .c-accordion__head.active,
.u-scm .c-accordion__interview-title span,
.u-scm .c-accordion__interview-head .border {
  background: #f0b200;
}

.u-scm .c-accordion__layout-title,
.u-scm .c-accordion__interview-head .text {
  color: #f0b200;
}

.u-scm .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-scm .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #f0b200;
}

.u-legal .c-accordion__head:hover,
.u-legal .c-accordion__head.active,
.u-legal .c-accordion__interview-title span,
.u-legal .c-accordion__interview-head .border {
  background: #86705a;
}

.u-legal .c-accordion__layout-title,
.u-legal .c-accordion__interview-head .text {
  color: #86705a;
}

.u-legal .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-legal .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #86705a;
}

.u-finance .c-accordion__head:hover,
.u-finance .c-accordion__head.active,
.u-finance .c-accordion__interview-title span,
.u-finance .c-accordion__interview-head .border {
  background: #86705a;
}

.u-finance .c-accordion__layout-title,
.u-finance .c-accordion__interview-head .text {
  color: #86705a;
}

.u-finance .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-finance .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #86705a;
}

.u-human-resources .c-accordion__head:hover,
.u-human-resources .c-accordion__head.active,
.u-human-resources .c-accordion__interview-title span,
.u-human-resources .c-accordion__interview-head .border {
  background: #86705a;
}

.u-human-resources .c-accordion__layout-title,
.u-human-resources .c-accordion__interview-head .text {
  color: #86705a;
}

.u-human-resources .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-human-resources .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #86705a;
}

.u-marketing .c-accordion__head:hover,
.u-marketing .c-accordion__head.active,
.u-marketing .c-accordion__interview-title span,
.u-marketing .c-accordion__interview-head .border {
  background: #da5283;
}

.u-marketing .c-accordion__layout-title,
.u-marketing .c-accordion__interview-head .text {
  color: #da5283;
}

.u-marketing .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-marketing .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #da5283;
}

.u-investigation .c-accordion__head:hover,
.u-investigation .c-accordion__head.active,
.u-investigation .c-accordion__interview-title span,
.u-investigation .c-accordion__interview-head .border {
  background: #3c59b0;
}

.u-investigation .c-accordion__layout-title,
.u-investigation .c-accordion__interview-head .text {
  color: #3c59b0;
}

.u-investigation .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-investigation .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #3c59b0;
}

.u-operations .c-accordion__head:hover,
.u-operations .c-accordion__head.active,
.u-operations .c-accordion__interview-title span,
.u-operations .c-accordion__interview-head .border {
  background: #0081b9;
}

.u-operations .c-accordion__layout-title,
.u-operations .c-accordion__interview-head .text {
  color: #0081b9;
}

.u-operations .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-operations .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #0081b9;
}

.u-engineering .c-accordion__head:hover,
.u-engineering .c-accordion__head.active,
.u-engineering .c-accordion__interview-title span,
.u-engineering .c-accordion__interview-head .border {
  background: #8bb628;
}

.u-engineering .c-accordion__layout-title,
.u-engineering .c-accordion__interview-head .text {
  color: #8bb628;
}

.u-engineering .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-engineering .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #8bb628;
}

.u-digital-ict .c-accordion__head:hover,
.u-digital-ict .c-accordion__head.active,
.u-digital-ict .c-accordion__interview-title span,
.u-digital-ict .c-accordion__interview-head .border {
  background: #86705a;
}

.u-digital-ict .c-accordion__layout-title,
.u-digital-ict .c-accordion__interview-head .text {
  color: #86705a;
}

.u-digital-ict .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-digital-ict .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #86705a;
}

.u-intellectual-property .c-accordion__head:hover,
.u-intellectual-property .c-accordion__head.active,
.u-intellectual-property .c-accordion__interview-title span,
.u-intellectual-property .c-accordion__interview-head .border {
  background: #7f4fba;
}

.u-intellectual-property .c-accordion__layout-title,
.u-intellectual-property .c-accordion__interview-head .text {
  color: #7f4fba;
}

.u-intellectual-property .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #7f4fba;
}

.u-procurement .c-accordion__head:hover,
.u-procurement .c-accordion__head.active,
.u-procurement .c-accordion__interview-title span,
.u-procurement .c-accordion__interview-head .border {
  background: #297f48;
}

.u-procurement .c-accordion__layout-title,
.u-procurement .c-accordion__interview-head .text {
  color: #297f48;
}

.u-procurement .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-procurement .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #297f48;
}

.u-planning .c-accordion__head:hover,
.u-planning .c-accordion__head.active,
.u-planning .c-accordion__interview-title span,
.u-planning .c-accordion__interview-head .border {
  background: #86705a;
}

.u-planning .c-accordion__layout-title,
.u-planning .c-accordion__interview-head .text {
  color: #86705a;
}

.u-planning .c-accordion__interview-item a:hover .c-accordion__interview-job,
.u-planning .c-accordion__interview-item a:hover .c-accordion__interview-meta {
  color: #86705a;
}

@media screen and (max-width: 768px) {
  .c-accordion {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__list {
    padding: 0.78vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__list {
    padding: 2.67vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head {
    padding: 0.78vw 1.88vw 0.78vw 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head {
    padding: 2.67vw 6.4vw 2.67vw 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head::before {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head::before {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head::before {
    height: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head::before {
    height: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head::before {
    right: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head::before {
    right: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head::after {
    width: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head::after {
    width: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head::after {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head::after {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head::after {
    right: 0.84vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head::after {
    right: 2.88vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__row {
    gap: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__row {
    gap: 4.27vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__row--02 {
    position: relative;
  }
  .c-accordion__title {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__title {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__title {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__title .note {
    line-height: 1.25;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__title .note {
    font-size: max(1.17vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__title .note {
    font-size: max(4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__title .small {
    font-size: max(1.48vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__title .small {
    font-size: max(5.07vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__head:hover .c-accordion__title,
  .c-accordion__head.active .c-accordion__title {
    color: #fff;
  }
  .c-accordion__row--02 .c-accordion__title {
    white-space: nowrap;
  }
  .c-accordion__lists--qa .c-accordion__title {
    line-height: 1.22;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__lists--qa .c-accordion__title {
    font-size: max(1.41vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__lists--qa .c-accordion__title {
    font-size: max(4.8vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__tag {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__tag {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__tag {
    border-radius: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__tag {
    border-radius: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__tag {
    padding: 0.27vw 0.47vw 0.35vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__tag {
    padding: 0.93vw 1.6vw 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__head:hover .c-accordion__tag,
  .c-accordion__head.active .c-accordion__tag {
    color: #e6001e;
    background: #fff;
  }
  .c-accordion__row--02 .c-accordion__tag {
    position: absolute;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__row--02 .c-accordion__tag {
    bottom: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__row--02 .c-accordion__tag {
    bottom: 1.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__row--02 .c-accordion__tag {
    right: 11.33vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__row--02 .c-accordion__tag {
    right: 38.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__sub-title {
    line-height: 1.43;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__sub-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__sub-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__sub-title {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__sub-title {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__head:hover .c-accordion__sub-title,
  .c-accordion__head.active .c-accordion__sub-title {
    color: #fff;
  }
  .c-accordion__head.active + .c-accordion__contents {
    overflow: visible;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head.active + .c-accordion__contents {
    padding-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head.active + .c-accordion__contents {
    padding-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__head.active + .c-accordion__contents {
    padding-bottom: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__head.active + .c-accordion__contents {
    padding-bottom: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__text a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__item {
    gap: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__item {
    gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__item:not(:first-of-type) {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__item:not(:first-of-type) {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__item-contents {
    width: calc(27.3% - 1.07vw);
  }
  .c-accordion__item-image img {
    aspect-ratio: 90/60;
  }
  .c-accordion__item-name {
    line-height: 2;
    letter-spacing: 0.04em;
    color: #888888;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__item-name {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__item-name {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__item-name {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__item-name {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__item-box {
    width: calc(72.7% - 1.07vw);
  }
  .c-accordion__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media {
    gap: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media {
    gap: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__media--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .c-accordion__media-lists {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-list:not(:first-of-type) {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-list:not(:first-of-type) {
    margin-top: 4.27vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__media--column .c-accordion__media-lists {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-title {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-title {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__media-title::before {
    top: calc(50% + 0.53vw);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-title::before {
    width: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-title::before {
    width: 1.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-title::before {
    height: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-title::before {
    height: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-text {
    margin-top: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-text {
    margin-top: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__media-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-box {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-box {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__media-image {
    width: calc(36.2% - 1.33vw);
  }
  .c-accordion__media-image img {
    aspect-ratio: 120/80;
  }
  .c-accordion__media-job {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(62.8% - 1.33vw);
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-job {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-job {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-note {
    font-size: max(0.78vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-note {
    font-size: max(2.67vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__media-note {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__media-note {
    margin-top: 4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__layout-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout-item {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout-item {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout-item:not(:first-of-type) {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout-item:not(:first-of-type) {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__layout-title {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__layout-title .small {
    display: inline-block;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout-title .small {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout-title .small {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__layout-text {
    width: 100%;
  }
  .c-accordion__layout-note {
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout-note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout-note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__layout-note {
    padding-bottom: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__layout-note {
    padding-bottom: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__layout-list {
    text-indent: -1em;
    padding-left: 1em;
  }
  .c-accordion__layout-list a {
    text-decoration: underline;
  }
  .c-accordion__interview {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__interview {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__interview {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__interview-head {
    gap: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__interview-head {
    gap: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__interview-items-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__interview-items-wrap {
    padding: 0 0.78vw 2.34vw 1.95vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__interview-items-wrap {
    padding: 0 2.67vw 8vw 6.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__interview-items-wrap {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__interview-items-wrap {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-accordion__interview-template .swiper-slide {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-accordion__interview-template .swiper-slide {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__interview-items {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.25rem;
    padding-right: 2.5rem;
  }
  .c-accordion__interview-item {
    width: 16.5625rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 0;
  }
  .c-accordion__interview-item a {
    position: relative;
  }
  .c-accordion__interview-item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 0.25rem solid #e6001e;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1;
  }
  .c-accordion__interview-item a:hover::before {
    opacity: 1;
  }
  .c-accordion__interview-image {
    overflow: hidden;
  }
  .c-accordion__interview-image img {
    aspect-ratio: 265/176;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-accordion__interview-item:hover .c-accordion__interview-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .c-accordion__interview-content {
    padding: 0 0 0.875rem 0.625rem;
    margin-top: -1rem;
  }
  .c-accordion__interview-title {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.25rem;
    z-index: 1;
  }
  .c-accordion__interview-title span {
    display: inline-block;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0em;
    color: #fff;
    background: #e6001e;
    padding: 0 0.40625rem 0.125rem;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__interview-title span {
    font-size: max(0.8rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-accordion__interview-title span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__interview-texts {
    padding-left: 0.375rem;
  }
  .c-accordion__interview-job {
    font-weight: 500;
    line-height: 1.5714285714;
    letter-spacing: 0em;
    margin-top: 0.25rem;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__interview-job {
    font-size: max(0.7rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-accordion__interview-job {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion__interview-meta {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #bbbbbb;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-accordion__interview-meta {
    font-size: max(0.6rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-accordion__interview-meta {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .u-sales .c-accordion__head:hover,
  .u-sales .c-accordion__head.active,
  .u-sales .c-accordion__interview-title span,
  .u-sales .c-accordion__interview-head .border {
    background: #e77600;
  }
  .u-sales .c-accordion__layout-title,
  .u-sales .c-accordion__interview-head .text {
    color: #e77600;
  }
  .u-sales .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-sales .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #e77600;
  }
  .u-scm .c-accordion__head:hover,
  .u-scm .c-accordion__head.active,
  .u-scm .c-accordion__interview-title span,
  .u-scm .c-accordion__interview-head .border {
    background: #f0b200;
  }
  .u-scm .c-accordion__layout-title,
  .u-scm .c-accordion__interview-head .text {
    color: #f0b200;
  }
  .u-scm .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-scm .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #f0b200;
  }
  .u-legal .c-accordion__head:hover,
  .u-legal .c-accordion__head.active,
  .u-legal .c-accordion__interview-title span,
  .u-legal .c-accordion__interview-head .border {
    background: #86705a;
  }
  .u-legal .c-accordion__layout-title,
  .u-legal .c-accordion__interview-head .text {
    color: #86705a;
  }
  .u-legal .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-legal .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #86705a;
  }
  .u-finance .c-accordion__head:hover,
  .u-finance .c-accordion__head.active,
  .u-finance .c-accordion__interview-title span,
  .u-finance .c-accordion__interview-head .border {
    background: #86705a;
  }
  .u-finance .c-accordion__layout-title,
  .u-finance .c-accordion__interview-head .text {
    color: #86705a;
  }
  .u-finance .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-finance .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #86705a;
  }
  .u-human-resources .c-accordion__head:hover,
  .u-human-resources .c-accordion__head.active,
  .u-human-resources .c-accordion__interview-title span,
  .u-human-resources .c-accordion__interview-head .border {
    background: #86705a;
  }
  .u-human-resources .c-accordion__layout-title,
  .u-human-resources .c-accordion__interview-head .text {
    color: #86705a;
  }
  .u-human-resources .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-human-resources .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #86705a;
  }
  .u-marketing .c-accordion__head:hover,
  .u-marketing .c-accordion__head.active,
  .u-marketing .c-accordion__interview-title span,
  .u-marketing .c-accordion__interview-head .border {
    background: #da5283;
  }
  .u-marketing .c-accordion__layout-title,
  .u-marketing .c-accordion__interview-head .text {
    color: #da5283;
  }
  .u-marketing .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-marketing .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #da5283;
  }
  .u-investigation .c-accordion__head:hover,
  .u-investigation .c-accordion__head.active,
  .u-investigation .c-accordion__interview-title span,
  .u-investigation .c-accordion__interview-head .border {
    background: #3c59b0;
  }
  .u-investigation .c-accordion__layout-title,
  .u-investigation .c-accordion__interview-head .text {
    color: #3c59b0;
  }
  .u-investigation .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-investigation .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #3c59b0;
  }
  .u-operations .c-accordion__head:hover,
  .u-operations .c-accordion__head.active,
  .u-operations .c-accordion__interview-title span,
  .u-operations .c-accordion__interview-head .border {
    background: #0081b9;
  }
  .u-operations .c-accordion__layout-title,
  .u-operations .c-accordion__interview-head .text {
    color: #0081b9;
  }
  .u-operations .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-operations .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #0081b9;
  }
  .u-engineering .c-accordion__head:hover,
  .u-engineering .c-accordion__head.active,
  .u-engineering .c-accordion__interview-title span,
  .u-engineering .c-accordion__interview-head .border {
    background: #8bb628;
  }
  .u-engineering .c-accordion__layout-title,
  .u-engineering .c-accordion__interview-head .text {
    color: #8bb628;
  }
  .u-engineering .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-engineering .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #8bb628;
  }
  .u-digital-ict .c-accordion__head:hover,
  .u-digital-ict .c-accordion__head.active,
  .u-digital-ict .c-accordion__interview-title span,
  .u-digital-ict .c-accordion__interview-head .border {
    background: #86705a;
  }
  .u-digital-ict .c-accordion__layout-title,
  .u-digital-ict .c-accordion__interview-head .text {
    color: #86705a;
  }
  .u-digital-ict .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-digital-ict .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #86705a;
  }
  .u-intellectual-property .c-accordion__head:hover,
  .u-intellectual-property .c-accordion__head.active,
  .u-intellectual-property .c-accordion__interview-title span,
  .u-intellectual-property .c-accordion__interview-head .border {
    background: #7f4fba;
  }
  .u-intellectual-property .c-accordion__layout-title,
  .u-intellectual-property .c-accordion__interview-head .text {
    color: #7f4fba;
  }
  .u-intellectual-property .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #7f4fba;
  }
  .u-procurement .c-accordion__head:hover,
  .u-procurement .c-accordion__head.active,
  .u-procurement .c-accordion__interview-title span,
  .u-procurement .c-accordion__interview-head .border {
    background: #297f48;
  }
  .u-procurement .c-accordion__layout-title,
  .u-procurement .c-accordion__interview-head .text {
    color: #297f48;
  }
  .u-procurement .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-procurement .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #297f48;
  }
  .u-planning .c-accordion__head:hover,
  .u-planning .c-accordion__head.active,
  .u-planning .c-accordion__interview-title span,
  .u-planning .c-accordion__interview-head .border {
    background: #86705a;
  }
  .u-planning .c-accordion__layout-title,
  .u-planning .c-accordion__interview-head .text {
    color: #86705a;
  }
  .u-planning .c-accordion__interview-item a:hover .c-accordion__interview-job,
  .u-planning .c-accordion__interview-item a:hover .c-accordion__interview-meta {
    color: #86705a;
  }
}
.c-band-title {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.375rem;
}

.c-band-title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-band-title span {
    font-size: max(1.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-band-title span {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 769px) {
  .c-band-title span {
    padding: 0.08vw 0.47vw 0.23vw;
  }
}
@media screen and (max-width: 768px) {
  .c-band-title span {
    padding: 0.27vw 1.6vw 0.8vw;
  }
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-band-title {
    gap: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-band-title {
    gap: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-band-title span {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-band-title span {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-band-title span {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-band-title span {
    padding: 0 0.16vw 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-band-title span {
    padding: 0 0.53vw 0.53vw;
  }
}
.c-crosstalk__catch {
  text-align: center;
}

.c-crosstalk__sub-catch {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-crosstalk__sub-catch {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-crosstalk__sub-catch {
    font-size: 1rem;
  }
}

.c-crosstalk__main-catch {
  margin-top: 0.625rem;
}

.c-crosstalk__main-catch span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.2em;
  border-bottom: 0.25rem solid #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-crosstalk__main-catch span {
    font-size: max(1.75rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-crosstalk__main-catch span {
    font-size: 2.1875rem;
  }
}

.c-crosstalk__body {
  position: relative;
  margin-top: 15rem;
}

.c-crosstalk__image {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .c-crosstalk__image {
    width: 28.13vw;
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__image {
    width: 96vw;
  }
}
@media screen and (min-width: 769px) {
  .c-crosstalk__image {
    height: 35.16vw;
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__image {
    height: 120vw;
  }
}

.c-crosstalk__reverse .c-crosstalk__image {
  left: auto;
  right: 0;
}

.c-crosstalk__image img {
  aspect-ratio: 360/450;
}

.c-crosstalk__items {
  width: 75%;
  padding-left: 5rem;
  margin-left: auto;
}

.c-crosstalk__reverse .c-crosstalk__items {
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 5rem;
}

.c-crosstalk__item {
  padding-right: 5.625rem;
}

.c-crosstalk__item:nth-of-type(even) {
  padding-left: 5.625rem;
  padding-right: 0;
}

.c-crosstalk__item:not(:first-of-type) {
  margin-top: 1.875rem;
}

.c-crosstalk__comment {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.875rem;
}

.c-crosstalk__item:nth-of-type(even) .c-crosstalk__comment {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.c-crosstalk__box {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-crosstalk__eyecatch img {
  width: 3.75rem;
  height: 3.75rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-crosstalk__name {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.375rem;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-crosstalk__name {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-crosstalk__name {
    font-size: 1rem;
  }
}

.c-crosstalk__job {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  color: #bbb;
  margin-top: 0.375rem;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-crosstalk__job {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-crosstalk__job {
    font-size: 0.75rem;
  }
}

.c-crosstalk__text {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  background: #eeeeee;
  padding: 1.5rem 1.875rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-crosstalk__text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-crosstalk__text {
    font-size: 1rem;
  }
}

.c-crosstalk__text::before,
.c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
  content: "";
  width: 1.5rem;
  height: 1.25rem;
  position: absolute;
  top: 1.875rem;
  background: #eeeeee;
}

.c-crosstalk__text::before {
  left: -1.4375rem;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
  left: auto;
  right: -1.4375rem;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__sub-catch {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__sub-catch {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__main-catch {
    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;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__main-catch {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__main-catch {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__main-catch {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__main-catch {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__main-catch span {
    display: inline-block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    line-height: 1.5;
    border-bottom: 1.07vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__main-catch span {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__main-catch span {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__body {
    margin-top: 11.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__body {
    margin-top: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__image {
    position: relative;
    width: calc(100% + 4vw);
    height: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__image {
    left: -1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__image {
    left: -4vw;
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__reverse .c-crosstalk__image {
    left: auto;
    right: 0;
  }
  .c-crosstalk__items {
    width: 100%;
    padding-left: 0;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__items {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__items {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-crosstalk__reverse .c-crosstalk__items {
    margin-inline: auto;
    padding-right: 0;
  }
  .c-crosstalk__item {
    padding-right: 0;
  }
  .c-crosstalk__item:nth-of-type(even) {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__item:not(:first-of-type) {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__item:not(:first-of-type) {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__comment {
    gap: 1.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__comment {
    gap: 5.87vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__eyecatch img {
    width: 3.75vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__eyecatch img {
    width: 12.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__eyecatch img {
    height: 3.75vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__eyecatch img {
    height: 12.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__name {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__name {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__name {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__name {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__job {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__job {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__job {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__job {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__text {
    padding: 1.88vw 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__text {
    padding: 6.4vw 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__text::before,
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    width: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__text::before,
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    width: 4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__text::before,
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__text::before,
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__text::before,
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__text::before,
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__text::before {
    left: -1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__text::before {
    left: -4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    right: -1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-crosstalk__item:nth-of-type(even) .c-crosstalk__text::before {
    right: -4vw;
  }
}
.c-layout01 {
  display: grid;
  grid-template-columns: auto 50rem;
  gap: 2.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-layout01__head-title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-layout01__head-title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 0.0625rem 0.40625rem 0.1875rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__head-title span {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__head-title span {
    font-size: 1rem;
  }
}

.c-layout01__block:not(:first-of-type) {
  margin-top: 7.5rem;
}

.c-layout01__title-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.c-layout01__main-title {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #e6001e;
  border-left: 3px solid #e6001e;
  padding-left: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__main-title {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__main-title {
    font-size: 1.5rem;
  }
}

.c-layout01__main-title--mt30 {
  margin-top: 1.875rem;
}

.c-layout01__title-row .c-layout01__main-title {
  line-height: 1.25;
}

.c-layout01__main-note {
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  color: #888;
  margin-top: 1.875rem;
  text-align: right;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__main-note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__main-note {
    font-size: 0.75rem;
  }
}

.c-layout01__note {
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__note {
    font-size: 0.75rem;
  }
}

.c-layout01__title {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__title {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__title {
    font-size: 1rem;
  }
}

.c-layout01__catch {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: #fff;
  padding: 0.375rem 0.625rem;
  margin-top: 1.25rem;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__catch {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__catch {
    font-size: 1.25rem;
  }
}

.c-layout01__sub-title {
  font-weight: 700;
  line-height: 1.3611111111;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 1.875rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__sub-title {
    font-size: max(1.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__sub-title {
    font-size: 2.25rem;
  }
}

.c-layout01__sub-title--mt15 {
  margin-top: 0.9375rem;
}

.c-layout01__sub-title--mt20 {
  margin-top: 1.25rem;
}

.c-layout01__sub-title--mt25 {
  margin-top: 1.5625rem;
}

.c-layout01__sub-title .small {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__sub-title .small {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__sub-title .small {
    font-size: 1.5rem;
  }
}

.c-layout01__sub-title--big {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__sub-title--big {
    font-size: max(2.4rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__sub-title--big {
    font-size: 3rem;
  }
}

.c-layout01__sub-title--mt {
  margin-top: -0.4375rem;
}

.c-layout01__text {
  margin-top: 1.25rem;
}

.c-layout01__text--mt6 {
  margin-top: 0.375rem;
}

.c-layout01__text--mt25 {
  margin-top: 1.5625rem;
}

.c-layout01__text--mt30 {
  margin-top: 1.875rem;
}

.c-layout01__text--mt35 {
  margin-top: 2.1875rem;
}

.c-layout01__text a {
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

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

.c-layout01__lists--mt25 {
  margin-top: 1.5625rem;
}

.c-layout01__list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #cccccc;
  padding: 1.875rem 0;
}

.c-layout01__list:last-of-type {
  border-bottom: 1px solid #cccccc;
}

.c-layout01__list-title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__list-title {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__list-title {
    font-size: 1.25rem;
  }
}

.c-layout01__list-title span {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__list-title span {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__list-title span {
    font-size: 1rem;
  }
}

.c-layout01__list-texts {
  position: relative;
  width: 100%;
  max-width: 36.25rem;
  margin-right: 0;
}

.c-layout01__list-text,
.c-layout01__list-text02 {
  position: relative;
  width: 100%;
  max-width: 36.25rem;
  margin-right: 0;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__list-text,
  .c-layout01__list-text02 {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__list-text,
  .c-layout01__list-text02 {
    font-size: 0.875rem;
  }
}

.c-layout01__list-text a {
  text-decoration: underline;
}

.c-layout01__list-text-ul--mt10 {
  margin-top: 0.625rem;
}

.c-layout01__list-text-li {
  position: relative;
  line-height: 1;
  padding-left: 0.75rem;
}

.c-layout01__list-text-li:not(:first-of-type) {
  margin-top: 0.5rem;
}

.c-layout01__list-text-li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #000;
}

.c-layout01__icon,
.c-layout01__list-icon {
  position: relative;
  top: -0.3125rem;
  right: 0.4375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-layout01__list-icon {
  right: 0;
}

.c-layout01__icon img,
.c-layout01__list-icon img {
  width: 0.75rem;
  height: 0.75rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-layout01__sub-block {
  margin-top: 1.875rem;
}

.c-layout01__sub-heading {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__sub-heading {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__sub-heading {
    font-size: 1rem;
  }
}

.c-layout01__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.c-layout01__tag {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e6001e;
  padding: 0.5rem 0.9375rem 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__tag {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__tag {
    font-size: 1rem;
  }
}

.c-layout01__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 2.5rem;
  margin-top: 1.25rem;
}

.c-layout01__card-image img {
  aspect-ratio: 380/190;
}

.c-layout01__card-title {
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__card-title {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__card-title {
    font-size: 1.125rem;
  }
}

.c-layout01__card-title .small {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__card-title .small {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__card-title .small {
    font-size: 0.875rem;
  }
}

.c-layout01__card-text {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__card-text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__card-text {
    font-size: 0.875rem;
  }
}

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

.c-layout01__item {
  gap: 2.5rem;
  background: #fafafa;
  padding: 1.875rem 2.5rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.c-layout01__item:not(:first-of-type) {
  margin-top: 1.875rem;
}

.c-layout01__item-head {
  width: calc(27.8% - 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}

.c-layout01__item-number {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__item-number {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__item-number {
    font-size: 0.75rem;
  }
}

.c-layout01__item-title {
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__item-title {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__item-title {
    font-size: 1.125rem;
  }
}

.c-layout01__item-contents {
  width: calc(72.2% - 1.25rem);
}

.c-layout01__item-sub-title {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__item-sub-title {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__item-sub-title {
    font-size: 0.875rem;
  }
}

.c-layout01__item-catch {
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.c-layout01__item-catch-title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__item-catch-title {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__item-catch-title {
    font-size: 0.875rem;
  }
}

.c-layout01__item-border {
  width: 100%;
  height: 1px;
  background: #cccccc;
}

.c-layout01__item-text {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__item-text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__item-text {
    font-size: 0.875rem;
  }
}

.c-layout01__qa {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
  margin-top: 1.875rem;
}

.c-layout01__qa-lists {
  width: calc(66.2% - 1.875rem);
}

.c-layout01__qa-list:not(:first-of-type) {
  margin-top: 1rem;
}

.c-layout01__qa-title {
  position: relative;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__qa-title {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__qa-title {
    font-size: 0.875rem;
  }
}

.c-layout01__qa-text {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__qa-text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__qa-text {
    font-size: 0.875rem;
  }
}

.c-layout01__qa-box {
  width: calc(33.8% - 1.875rem);
}

.c-layout01__qa-image img {
  aspect-ratio: 240/160;
}

.c-layout01__qa-job {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__qa-job {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__qa-job {
    font-size: 0.875rem;
  }
}

.c-layout01__qa-note {
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  color: #888;
  margin-top: 0.125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__qa-note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__qa-note {
    font-size: 0.75rem;
  }
}

.c-layout01__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 2.5rem;
  margin-top: 1.875rem;
}

.c-layout01__unit {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.625rem;
}

.c-layout01__unit-icon img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-layout01__unit-contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-layout01__unit-title {
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__unit-title {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__unit-title {
    font-size: 1.125rem;
  }
}

.c-layout01__unit-text {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__unit-text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout01__unit-text {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .c-layout01 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01 {
    gap: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01 {
    gap: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__head-title span {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__head-title span {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__head-title span {
    padding: 0.08vw 0.51vw 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__head-title span {
    padding: 0.27vw 1.73vw 0.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__block:not(:first-of-type) {
    margin-top: 4.69vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__block:not(:first-of-type) {
    margin-top: 16vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__title-row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .c-layout01__main-title {
    line-height: 1.25;
    border-left: 0.8vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__main-title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__main-title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__main-title {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__main-title {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__main-title--mt30 {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__main-title--mt30 {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__main-note {
    line-height: 1.33;
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__main-note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__main-note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__main-note {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__main-note {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__note {
    font-weight: 500;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-layout01__note {
    font-size: max(0.6rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-layout01__note {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__title {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__catch {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__catch {
    font-size: max(1.56vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__catch {
    font-size: max(5.33vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__catch {
    padding: 0.47vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__catch {
    padding: 1.6vw 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__catch {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__catch {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__sub-title,
  .c-layout01__sub-title--mt15,
  .c-layout01__sub-title--mt20,
  .c-layout01__sub-title--mt25 {
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__sub-title,
  .c-layout01__sub-title--mt15,
  .c-layout01__sub-title--mt20,
  .c-layout01__sub-title--mt25 {
    font-size: max(1.56vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__sub-title,
  .c-layout01__sub-title--mt15,
  .c-layout01__sub-title--mt20,
  .c-layout01__sub-title--mt25 {
    font-size: max(5.33vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__sub-title,
  .c-layout01__sub-title--mt15,
  .c-layout01__sub-title--mt20,
  .c-layout01__sub-title--mt25 {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__sub-title,
  .c-layout01__sub-title--mt15,
  .c-layout01__sub-title--mt20,
  .c-layout01__sub-title--mt25 {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__sub-title .small {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__sub-title .small {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__sub-title--big {
    font-size: max(2.03vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__sub-title--big {
    font-size: max(6.93vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__sub-title--mt {
    margin-top: -0.4375rem;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__text,
  .c-layout01__text--mt25,
  .c-layout01__text--mt30,
  .c-layout01__text--mt35 {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__text,
  .c-layout01__text--mt25,
  .c-layout01__text--mt30,
  .c-layout01__text--mt35 {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__text--mt6 {
    margin-top: 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__text--mt6 {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__image {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__image {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__lists,
  .c-layout01__lists--mt25 {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__lists,
  .c-layout01__lists--mt25 {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list {
    padding: 1.56vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list {
    padding: 5.33vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-title {
    font-size: max(1.56vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-title {
    font-size: max(5.33vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-title span {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-title span {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__list-texts {
    max-width: 100%;
  }
  .c-layout01__list-text,
  .c-layout01__list-text02 {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-text,
  .c-layout01__list-text02 {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-text,
  .c-layout01__list-text02 {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-text-ul--mt10 {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-text-ul--mt10 {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__list-text-li {
    line-height: 1.43;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-text-li {
    padding-left: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-text-li {
    padding-left: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-text-li:not(:first-of-type) {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-text-li:not(:first-of-type) {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-text-li::before {
    width: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-text-li::before {
    width: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__list-text-li::before {
    height: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__list-text-li::before {
    height: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__icon,
  .c-layout01__list-icon {
    top: -0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__icon,
  .c-layout01__list-icon {
    top: -1.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__icon,
  .c-layout01__list-icon {
    right: 0.55vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__icon,
  .c-layout01__list-icon {
    right: 1.87vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__list-icon {
    right: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__icon img,
  .c-layout01__list-icon img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__icon img,
  .c-layout01__list-icon img {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__icon img,
  .c-layout01__list-icon img {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__icon img,
  .c-layout01__list-icon img {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__sub-block {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__sub-block {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__sub-heading {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__sub-heading {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__tags {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__tags {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__tags {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__tags {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__tag {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__tag {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__tag {
    border-radius: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__tag {
    border-radius: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__tag {
    padding: 0.63vw 1.17vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__tag {
    padding: 2.13vw 4vw 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__cards {
    gap: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__cards {
    gap: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__cards {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__cards {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__card-image img {
    aspect-ratio: 345/190;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .c-layout01__card-title {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__card-title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__card-title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__card-title {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__card-title {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__card-title .small {
    line-height: 1.67;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__card-title .small {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__card-title .small {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__card-text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__card-text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__card-text {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__card-text {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__items {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__items {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item {
    gap: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item {
    gap: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item {
    padding: 2.34vw 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item {
    padding: 8vw 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item:not(:first-of-type) {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item:not(:first-of-type) {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__item-head {
    width: 100%;
  }
  .c-layout01__item-number {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-number {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-number {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-title {
    font-size: max(1.41vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-title {
    font-size: max(4.8vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__item-contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-sub-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-sub-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-catch {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-catch {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-catch {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-catch {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-catch-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-catch-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__item-text {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__item-text {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__qa {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__qa-lists {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-list:not(:first-of-type) {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-list:not(:first-of-type) {
    margin-top: 4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-text {
    margin-top: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-text {
    margin-top: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__qa-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-box {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-box {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__qa-image {
    width: calc(36.2% - 1.33vw);
  }
  .c-layout01__qa-image img {
    aspect-ratio: 120/80;
  }
  .c-layout01__qa-contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(62.8% - 1.33vw);
  }
  .c-layout01__qa-job {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-job {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-job {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__qa-note {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__qa-note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__qa-note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__units {
    gap: 2.34vw 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__units {
    gap: 8vw 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__units {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__units {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__unit {
    -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;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__unit {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__unit {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__unit-icon img {
    width: 4.69vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__unit-icon img {
    width: 16vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__unit-icon img {
    height: 4.69vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__unit-icon img {
    height: 16vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__unit-title {
    line-height: 1.5;
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__unit-title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__unit-title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout01__unit-text {
    line-height: 1.67;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__unit-text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__unit-text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout01__unit-text {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout01__unit-text {
    margin-top: 2.67vw;
  }
}
.c-layout02 {
  background: #eeeeee;
  padding: 5rem 0;
}

.c-layout02__body {
  background: #fafafa;
  padding: 3.75rem;
}

.c-layout02__body--bubble {
  position: relative;
}

.c-layout02__body--bubble::before {
  content: "";
  width: 6.25rem;
  height: 3.125rem;
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fafafa;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.c-layout02__title {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__title {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__title {
    font-size: 1.5rem;
  }
}

.c-layout02__image {
  width: 100%;
  max-width: 41.25rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.c-layout02__image {
  aspect-ratio: 640/312;
}

.c-layout02__box {
  width: 100%;
  max-width: 46.25rem;
  margin-inline: auto;
  margin-top: 1.875rem;
}

.c-layout02__catch {
  gap: 0.625rem;
  background: #fff;
  padding: 0.875rem 2rem;
}

.c-layout02__catch-en {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 0.1875rem 0.375rem 0.3125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__catch-en {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__catch-en {
    font-size: 1rem;
  }
}

.c-layout02__catch-ja {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__catch-ja {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__catch-ja {
    font-size: 1.25rem;
  }
}

.c-layout02__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.c-layout02__item {
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: #fff;
  border-radius: 0.625rem;
  border: 2px solid #0081b9;
  padding: 1.875rem 0.875rem 1.5625rem;
}

.c-layout02__item-title {
  display: inline-block;
  position: absolute;
  min-width: 100px;
  top: -1.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  background: #0081b9;
  border-radius: 5rem;
  padding: 0.6875rem 0.625rem 0.8125rem;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__item-title {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__item-title {
    font-size: 1.125rem;
  }
}

.c-layout02__item-text {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0081b9;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__item-text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__item-text {
    font-size: 1rem;
  }
}

.c-layout02__item:nth-of-type(2) {
  border: 2px solid #e77600;
}

.c-layout02__item:nth-of-type(2) .c-layout02__item-title {
  background: #e77600;
}

.c-layout02__item:nth-of-type(2) .c-layout02__item-text {
  color: #e77600;
}

.c-layout02__units {
  width: 100%;
  max-width: 36.25rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.c-layout02__unit-text {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.625rem;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__unit-text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__unit-text {
    font-size: 1rem;
  }
}

.c-layout02__contents {
  margin-top: 5.625rem;
}

.c-layout02__contents-body {
  position: relative;
  padding: 4.0625rem 3.75rem 4.3125rem;
}

.c-layout02__contents-body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e6001e;
  opacity: 0.7;
  z-index: 1;
}

.c-layout02__banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.c-layout02__banner img,
.c-layout02__banner picture {
  height: 100%;
}

.c-layout02__contents-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

.c-layout02__contents-title {
  position: relative;
  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.625rem;
  z-index: 1;
}

.c-layout02__contents-title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  color: #fff;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__contents-title span {
    font-size: max(1.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__contents-title span {
    font-size: 2.25rem;
  }
}

.c-layout02__contents-en {
  position: relative;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  z-index: 1;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-layout02__contents-en {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-layout02__contents-en {
    font-size: 1.5rem;
  }
}

.c-layout02__banner img {
  height: 100%;
}

.c-layout02__contents-text {
  margin-top: 2.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-layout02 {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02 {
    padding: 6.25vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02 {
    padding: 21.33vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__body {
    padding: 4.69vw 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__body {
    padding: 16vw 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__body--bubble {
    padding: 2.34vw 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__body--bubble {
    padding: 8vw 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__body--bubble::before {
    width: 7.81vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__body--bubble::before {
    width: 26.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__body--bubble::before {
    height: 3.91vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__body--bubble::before {
    height: 13.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__body--bubble::before {
    bottom: -3.91vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__body--bubble::before {
    bottom: -13.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__title {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__image {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__image {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__image {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__image {
    aspect-ratio: 293/200;
  }
  .c-layout02__box {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__box {
    margin-top: 1.02vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__box {
    margin-top: 3.47vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__catch {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__catch {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__catch {
    padding: 0.78vw 1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__catch {
    padding: 2.67vw 3.73vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__catch-en {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__catch-en {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__catch-en {
    padding: 0.31vw 0.47vw 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__catch-en {
    padding: 1.07vw 1.6vw 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__catch-ja {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__catch-ja {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__items {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__items {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__items {
    margin-top: 2.97vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__items {
    margin-top: 10.13vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__item {
    height: 100%;
    border: 0.53vw solid #0081b9;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item {
    border-radius: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item {
    border-radius: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item {
    padding: 2.34vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item {
    padding: 8vw 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item-title {
    min-width: 6.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item-title {
    min-width: 21.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item-title {
    top: -1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item-title {
    top: -4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item-title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item-title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item-title {
    border-radius: 6.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item-title {
    border-radius: 21.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item-title {
    padding: 0.7vw 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item-title {
    padding: 2.4vw 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__item-text {
    line-height: 1.67;
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__item-text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__item-text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__item:nth-of-type(2) {
    border: 0.53vw solid #e77600;
  }
  .c-layout02__units {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__units {
    gap: 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__units {
    gap: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__units {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__units {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__unit-text {
    line-height: 1.67;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__unit-text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__unit-text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__unit-text {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__unit-text {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__contents {
    margin-top: 7.03vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__contents {
    margin-top: 24vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__contents-body {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__contents-body {
    padding: 5.55vw 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__contents-body {
    padding: 18.93vw 4vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__contents-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__contents-column {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__contents-column {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__contents-title {
    gap: 0;
    text-align: center;
  }
  .c-layout02__contents-title span {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__contents-title span {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__contents-title span {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__contents-en {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__contents-en {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__contents-en {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-layout02__contents-text {
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-layout02__contents-text {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-layout02__contents-text {
    margin-top: 10.67vw;
  }
}
.c-media {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.75rem;
}

.c-media--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.c-media__contents {
  width: calc(49.1% - 1.875rem);
}

.c-media__image {
  position: absolute;
  width: 100%;
  left: 0;
}
@media screen and (min-width: 769px) {
  .c-media__image {
    width: 46.88vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__image {
    width: 160vw;
  }
}

.c-media--reverse .c-media__image {
  left: auto;
  right: 0;
}

.c-media__image img {
  aspect-ratio: 600/400;
}

.c-media__box {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .c-media__box {
    padding-top: 29.69vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__box {
    padding-top: 101.33vw;
  }
}

.c-media--reverse .c-media__box {
  padding-left: 0.625rem;
}

.c-media__box--top {
  top: -5rem;
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .c-media__box--top {
    padding-bottom: 29.69vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__box--top {
    padding-bottom: 101.33vw;
  }
}

.c-media__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
}

.c-media__title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 0.0625rem 0.375rem 0.1875rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-media__title span {
    font-size: max(1.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-media__title span {
    font-size: 2.25rem;
  }
}

.c-media__sub-title {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #e6001e;
  margin-top: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-media__sub-title {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-media__sub-title {
    font-size: 1.25rem;
  }
}

.c-media__texts {
  width: calc(50.9% - 1.875rem);
  padding-top: 6.25rem;
}

.c-media__text--mt20 {
  margin-top: 1.25rem;
}

.c-media__name {
  margin-top: 0.625rem;
}
@media screen and (min-width: 769px) {
  .c-media__name {
    padding-left: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__name {
    padding-left: 21.33vw;
  }
}

@media screen and (max-width: 768px) {
  .c-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media {
    gap: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media {
    gap: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .c-media__contents {
    width: 100%;
  }
  .c-media__image {
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    top: 0;
    left: 0;
    overflow: hidden;
  }
  .c-media--reverse .c-media__image {
    left: 0;
    right: auto;
  }
  .c-media__image img {
    aspect-ratio: 375/250;
  }
  .c-media__box {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__box {
    margin-top: -3.52vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__box {
    margin-top: -12vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media--reverse .c-media__box {
    padding-left: 0;
  }
  .c-media__box--top {
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__title {
    gap: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__title {
    gap: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__title span {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__title span {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__title span {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__title span {
    padding: 0.08vw 0.16vw 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__title span {
    padding: 0.27vw 0.53vw 0.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__sub-title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__sub-title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__sub-title {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__sub-title {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__texts {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__text--mt20 {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__text--mt20 {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media__name {
    line-height: 2;
    letter-spacing: 0.04em;
    color: #888888;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__name {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__name {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-media__name {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-media__name {
    margin-top: 2.67vw;
  }
}
.page-freshers .c-contents__btn,
.page-diversity .c-contents__btn,
.page-career .c-contents__btn,
.page-return .c-contents__btn,
.page-doctor .c-contents__btn {
  display: block;
}

.page-freshers .footer .c-contents__btn,
.page-diversity .footer .c-contents__btn,
.page-career .footer .c-contents__btn,
.page-return .footer .c-contents__btn,
.page-doctor .footer .c-contents__btn {
  display: block;
}

.page-freshers .footer .c-contents__row,
.page-diversity .footer .c-contents__row,
.page-career .footer .c-contents__row,
.page-return .footer .c-contents__row,
.page-doctor .footer .c-contents__row {
  margin-top: 5.3125rem;
}

.c-recruit-body {
  position: relative;
  border: 1.25rem solid #e6001e;
  padding: 9.75rem 0 10rem;
  margin-top: 3.75rem;
}

.c-recruit-body .l-inner-sm {
  padding: 0 8.75rem;
}

.c-recruit-head {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-recruit-head__title {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  color: #e6001e;
  border-left: 0.1875rem solid #e6001e;
  padding-left: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-head__title {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-head__title {
    font-size: 1.5rem;
  }
}

.c-recruit-head__note {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-head__note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-head__note {
    font-size: 0.75rem;
  }
}

.c-recruit-lead {
  margin-top: 1.75rem;
}

.c-recruit-lead--note {
  display: block;
  font-weight: 500;
  line-height: 1.6842105263;
  letter-spacing: 0em;
  margin-top: 1.25rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-lead--note {
    font-size: max(0.95rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-lead--note {
    font-size: 1.1875rem;
  }
}

.c-recruit-lead .bold {
  font-weight: 700;
}

.c-recruit-layout {
  margin-top: 2.5rem;
}

.c-recruit-layout__block {
  border-top: 1px solid #cccccc;
  padding-top: 1.25rem;
}

.c-recruit-layout__block:not(:first-of-type) {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 2.5rem;
  margin-top: 2.5rem;
}

.c-recruit-layout__item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.625rem;
}

.c-recruit-layout__item:not(:first-of-type) {
  margin-top: 2.5rem;
}

.c-recruit-layout__head {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  padding-left: 0.375rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-layout__head {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-layout__head {
    font-size: 1.875rem;
  }
}

.c-recruit-layout__title {
  width: calc(16% - 0.3125rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-layout__title {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-layout__title {
    font-size: 1rem;
  }
}

.c-recruit-layout__contents {
  width: calc(84% - 0.3125rem);
}

.c-recruit-layout__box {
  margin-top: 0.375rem;
}

.c-recruit-layout__dl {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
}

.c-recruit-layout__dl:not(:first-of-type) {
  margin-top: 0.375rem;
}

.c-recruit-layout__dt {
  min-width: 8.9375rem;
}

.c-recruit-layout__dd {
  position: relative;
}

.c-recruit-layout__dd::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #000;
}

.c-recruit-layout__dd .small {
  display: block;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-layout__dd .small {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-layout__dd .small {
    font-size: 0.75rem;
  }
}

.c-recruit-layout__text a {
  text-decoration: underline;
}

.c-recruit-layout__text .note {
  color: #888;
}

.c-recruit-layout__note {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.375rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-layout__note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-layout__note {
    font-size: 0.75rem;
  }
}

.c-recruit-tabs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.875rem;
}

.c-recruit-tab {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  background: #eeeeee;
  border-radius: 0.625rem;
  padding: 0.6875rem 0.75rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-tab {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-tab {
    font-size: 1rem;
  }
}

.c-recruit-tab:hover {
  color: #fff;
  background: rgba(230, 0, 30, 0.5);
}

.c-recruit-tab.current {
  color: #fff;
  background: #e6001e;
}

.c-recruit-interview {
  margin-top: 2.5rem;
}

.c-recruit-interview__head {
  gap: 2rem;
}

.c-recruit-interview__head .text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__head .text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-interview__head .text {
    font-size: 1rem;
  }
}

.c-recruit-interview__head .border {
  width: 100%;
  height: 1px;
  background: #e6001e;
}

.c-recruit-interview__items-wrap {
  margin-top: 1.25rem;
  overflow-x: scroll;
}

.c-recruit-interview__items {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem;
}

.c-recruit-interview__item {
  width: 16.5625rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0;
}

.c-recruit-interview__item a {
  position: relative;
}

.c-recruit-interview__item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.c-recruit-interview__item a:hover::before {
  opacity: 1;
}

.c-recruit-interview__image {
  overflow: hidden;
}

.c-recruit-interview__image img {
  aspect-ratio: 265/176;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-recruit-interview__item:hover .c-recruit-interview__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-recruit-interview__content {
  padding: 0 0.625rem 0.875rem;
  margin-top: -1rem;
}

.c-recruit-interview__title {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  z-index: 1;
}

.c-recruit-interview__title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 0 0.40625rem 0.125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__title span {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-interview__title span {
    font-size: 1rem;
  }
}

.c-recruit-interview__texts {
  padding-left: 0.375rem;
}

.c-recruit-interview__job {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  margin-top: 0.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__job {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-interview__job {
    font-size: 0.875rem;
  }
}

.c-recruit-interview__meta {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #bbbbbb;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__meta {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-interview__meta {
    font-size: 0.75rem;
  }
}

.interview-scm .c-recruit-interview__title span {
  background: #f0b200;
}

.interview-scm a:hover .c-recruit-interview__job,
.interview-scm a:hover .c-recruit-interview__meta {
  color: #f0b200;
}

.interview-engineering .c-recruit-interview__title span {
  background: #8bb628;
}

.interview-engineering a:hover .c-recruit-interview__job,
.interview-engineering a:hover .c-recruit-interview__meta {
  color: #8bb628;
}

.interview-intellectual-property .c-recruit-interview__title span {
  background: #7f4fba;
}

.interview-intellectual-property a:hover .c-recruit-interview__job,
.interview-intellectual-property a:hover .c-recruit-interview__meta {
  color: #7f4fba;
}

.interview-investigation .c-recruit-interview__title span {
  background: #3c59b0;
}

.interview-investigation a:hover .c-recruit-interview__job,
.interview-investigation a:hover .c-recruit-interview__meta {
  color: #3c59b0;
}

.qa .c-accordion__list {
  padding: 1.5625rem 0;
}

.c-recruit-note {
  margin-top: 2.5rem;
}

.c-recruit-note__head {
  gap: 2rem;
}

.c-recruit-note__head .text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-note__head .text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-note__head .text {
    font-size: 1rem;
  }
}

.c-recruit-note__head .border {
  width: 100%;
  height: 1px;
  background: #e6001e;
}

.c-recruit-note__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 1.25rem;
}

.c-recruit-note__item a {
  position: relative;
  display: block;
  height: 100%;
}

.c-recruit-note__item a::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.c-recruit-note__item a:hover::before {
  opacity: 1;
}

.c-recruit-note__image {
  overflow: hidden;
}

.c-recruit-note__image img {
  height: auto;
  aspect-ratio: 300/157;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-recruit-note__item a:hover .c-recruit-note__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-recruit-note__text {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  padding: 0.625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-note__text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-recruit-note__text {
    font-size: 0.875rem;
  }
}

.c-recruit-note__item a:hover .c-recruit-note__text {
  color: #e6001e;
}

.senior {
  padding-top: 7.5rem;
}

.senior__items {
  margin-top: 1.625rem;
}

.senior__item {
  gap: 3.75rem;
  border-top: 1px solid #cccccc;
  padding: 1.875rem 0;
}

.senior__item:last-of-type {
  border-bottom: 1px solid #cccccc;
}

.senior__image {
  width: calc(28.1% - 1.875rem);
}

.senior__image img {
  height: auto;
  aspect-ratio: 240/180;
}

.senior__contents {
  width: calc(71.9% - 1.875rem);
}

.senior__name {
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .senior__name {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .senior__name {
    font-size: 1.125rem;
  }
}

.senior__job {
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  color: #bbbbbb;
  margin-top: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .senior__job {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .senior__job {
    font-size: 1.125rem;
  }
}

.senior__q {
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .senior__q {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .senior__q {
    font-size: 0.875rem;
  }
}

.senior__a {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .senior__a {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .senior__a {
    font-size: 0.875rem;
  }
}

.contact {
  margin-top: 7.5rem;
}

.contact__body {
  background: #fafafa;
  padding: 1.875rem 2.5rem;
}

.contact__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact__title {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #e6001e;
  border-left: 0.1875rem solid #e6001e;
  padding-left: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .contact__title {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .contact__title {
    font-size: 1.5rem;
  }
}

.contact__texts {
  padding-right: 3.3125rem;
}

.contact__texts--02 {
  padding-right: 5.625rem;
}

.contact__text {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .contact__text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .contact__text {
    font-size: 0.875rem;
  }
}

.contact__note {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .contact__note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .contact__note {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .page-freshers .c-contents__btn,
  .page-diversity .c-contents__btn,
  .page-career .c-contents__btn,
  .page-return .c-contents__btn,
  .page-doctor .c-contents__btn {
    display: none;
  }
  .page-freshers .footer .c-contents__btn,
  .page-diversity .footer .c-contents__btn,
  .page-career .footer .c-contents__btn,
  .page-return .footer .c-contents__btn,
  .page-doctor .footer .c-contents__btn {
    display: none;
  }
  .c-recruit-body {
    border: 2.67vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-body {
    padding: 3.13vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-body {
    padding: 10.67vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-body {
    margin-top: 1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-body {
    margin-top: 3.73vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-body .l-inner-sm {
    padding: 0 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-body .l-inner-sm {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-head {
    gap: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-head {
    gap: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-head__title {
    line-height: 1.25;
    border-left: 0.8vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-head__title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-head__title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-head__title {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-head__title {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-head__note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-head__note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-lead {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-lead {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-lead--note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-lead--note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-lead--note {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-lead--note {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__block {
    padding-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__block {
    padding-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__block:not(:first-of-type) {
    padding-bottom: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__block:not(:first-of-type) {
    padding-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__block:not(:first-of-type) {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__block:not(:first-of-type) {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__item {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__item {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__item:not(:first-of-type) {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__item:not(:first-of-type) {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__head {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__head {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__head {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__head {
    padding-left: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__head {
    padding-left: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__title {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__box {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__box {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__dl {
    gap: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__dl {
    gap: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__dl:not(:first-of-type) {
    margin-top: 1.41vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__dl:not(:first-of-type) {
    margin-top: 4.8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__dt {
    min-width: 100%;
    border-bottom: 1px solid #000;
  }
  .c-recruit-layout__dd::before {
    display: none;
  }
  .c-recruit-layout__dd .small {
    line-height: 2.33;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__dd .small {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__dd .small {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-layout__note {
    line-height: 2.33;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-layout__note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-layout__note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-tabs {
    gap: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-tabs {
    gap: 4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-tabs {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-tabs {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-tab {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-tab {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-tab {
    border-radius: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-tab {
    border-radius: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-tab {
    padding: 0.7vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-tab {
    padding: 2.4vw 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-tab:hover {
    color: #000;
    background: #eeeeee;
  }
  .c-recruit-tab.current {
    color: #fff;
    background: #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-interview-items-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview-items-wrap {
    padding: 0 0.78vw 2.34vw 1.95vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview-items-wrap {
    padding: 0 2.67vw 8vw 6.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview-items-wrap {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview-items-wrap {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview__head {
    gap: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview__head {
    gap: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview__head .text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview__head .text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview__item {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview__item {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-interview__item a::before {
    display: none;
  }
  .c-recruit-interview__item a:hover::before {
    opacity: 1;
  }
  .c-recruit-interview__item:hover .c-recruit-interview__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview__content {
    padding: 0 0.78vw 1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview__content {
    padding: 0 2.67vw 3.73vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-interview__content {
    margin-top: -1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-interview__content {
    margin-top: -4.27vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-interview__title {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.25rem;
    z-index: 1;
  }
  .c-recruit-interview__title span {
    display: inline-block;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0em;
    color: #fff;
    background: #e6001e;
    padding: 0 0.40625rem 0.125rem;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__title span {
    font-size: max(0.8rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-recruit-interview__title span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-interview__texts {
    padding-left: 0.375rem;
  }
  .c-recruit-interview__job {
    font-weight: 500;
    line-height: 1.5714285714;
    letter-spacing: 0em;
    margin-top: 0.25rem;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__job {
    font-size: max(0.7rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-recruit-interview__job {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-interview__meta {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #bbbbbb;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) and (max-width: 1279px) {
  .c-recruit-interview__meta {
    font-size: max(0.6rem, 10px);
  }
}
@media screen and (max-width: 768px) and (not ((min-width: 769px) and (max-width: 1279px))) {
  .c-recruit-interview__meta {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .interview-scm .c-recruit-interview__title span {
    background: #f0b200;
  }
  .interview-scm a:hover .c-recruit-interview__job,
  .interview-scm a:hover .c-recruit-interview__meta {
    color: #f0b200;
  }
  .interview-engineering .c-recruit-interview__title span {
    background: #8bb628;
  }
  .interview-engineering a:hover .c-recruit-interview__job,
  .interview-engineering a:hover .c-recruit-interview__meta {
    color: #8bb628;
  }
  .interview-intellectual-property .c-recruit-interview__title span {
    background: #7f4fba;
  }
  .interview-intellectual-property a:hover .c-recruit-interview__job,
  .interview-intellectual-property a:hover .c-recruit-interview__meta {
    color: #7f4fba;
  }
  .interview-investigation .c-recruit-interview__title span {
    background: #3c59b0;
  }
  .interview-investigation a:hover .c-recruit-interview__job,
  .interview-investigation a:hover .c-recruit-interview__meta {
    color: #3c59b0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .qa .c-accordion__list {
    padding: 0.78vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .qa .c-accordion__list {
    padding: 2.67vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__head {
    gap: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__head {
    gap: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__head .text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__head .text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-note__items-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__items-wrap {
    padding: 0 0.78vw 0 1.95vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__items-wrap {
    padding: 0 2.67vw 0 6.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__items-wrap {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__items-wrap {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-note__items {
    margin-top: 0;
    overflow: scroll;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__items {
    gap: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__items {
    gap: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__item {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__item {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-note__item a::before {
    display: none;
  }
  .c-recruit-note__image img {
    aspect-ratio: 265/139;
  }
  .c-recruit-note__item a:hover .c-recruit-note__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .c-recruit-note__text {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-recruit-note__text {
    padding: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-recruit-note__text {
    padding: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-recruit-note__item a:hover .c-recruit-note__text {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior {
    padding-top: 9.38vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior {
    padding-top: 32vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__items {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__items {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .senior__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__item {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__item {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__item {
    padding: 2.34vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__item {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 768px) {
  .senior__image {
    width: calc(38.4% - 1.33vw);
  }
  .senior__image img {
    aspect-ratio: 120/80;
  }
  .senior__contents {
    width: calc(61.4% - 1.33vw);
  }
  .senior__name {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__name {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__name {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .senior__job {
    line-height: 1.71;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__job {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__job {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__job {
    margin-top: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__job {
    margin-top: 1.33vw;
  }
}
@media screen and (max-width: 768px) {
  .senior__texts {
    width: 100%;
  }
  .senior__q {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__q {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__q {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__a {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__a {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .senior__a {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .senior__a {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact {
    margin-top: 9.38vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact {
    margin-top: 32vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__body {
    padding: 1.56vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__body {
    padding: 5.33vw 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__row {
    gap: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__row {
    gap: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__title {
    line-height: 1.25;
    border-left: 0.8vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__title {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__title {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__texts {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__text {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__text {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .contact__note {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contact__note {
    margin-top: 2.67vw;
  }
}
.c-special-text {
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 5rem;
}

.c-special-name {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-name {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-name {
    font-size: 0.875rem;
  }
}

.c-special-media {
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
}

.c-special-media__body {
  padding: 3.75rem;
  background: #faf9f5;
}

.c-special-media__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.c-special-media__item:not(:first-of-type) {
  border-top: 1px solid #e9e3cb;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}

.c-special-media__image {
  width: calc(25.3% - 0.75rem);
}

.c-special-media__image img {
  height: auto;
  aspect-ratio: 160/120;
}

.c-special-media__contents {
  width: calc(74.7% - 0.75rem);
}

.c-special-media__name {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-media__name {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-media__name {
    font-size: 1.5rem;
  }
}

.c-special-media__job {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-media__job {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-media__job {
    font-size: 1rem;
  }
}

.c-special-media__affiliation {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.375rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-media__affiliation {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-media__affiliation {
    font-size: 1rem;
  }
}

.c-special-media__text {
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  margin-top: 0.375rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-media__text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-media__text {
    font-size: 0.875rem;
  }
}

.c-special-media__note {
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  color: #bbbbbb;
  margin-top: 0.625rem;
  text-align: right;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-media__note {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-media__note {
    font-size: 0.75rem;
  }
}

.c-special-interview__items {
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
}

.c-special-interview__item:not(:first-of-type) {
  margin-top: 5rem;
}

.c-special-interview--30 .c-special-interview__item:not(:first-of-type) {
  margin-top: 1.875rem;
}

.c-special-interview--120 .c-special-interview__item:not(:first-of-type) {
  margin-top: 7.5rem;
}

.c-special-interview__title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-interview__title {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-interview__title {
    font-size: 1.5rem;
  }
}

.c-special-interview__text {
  margin-top: 1.875rem;
}

.c-special-interview__text .note {
  color: #bbb;
}

.c-special-interview__text .name {
  font-weight: 700;
}

.c-special-note {
  position: relative;
}

.c-special-note::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #cccccc;
}

.c-special-note .c-special-body {
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
  padding-bottom: 10rem;
  text-align: right;
}

.c-special-note__title {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0em;
  color: #888888;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-note__title {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-note__title {
    font-size: 1rem;
  }
}

.c-special-note__catch {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0em;
  color: #e6001e;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-note__catch {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-note__catch {
    font-size: 1rem;
  }
}

.c-special-note__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
}

.c-special-note__btn {
  margin-top: 0.3125rem;
}

.c-special-note__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  padding-left: 0.5rem;
  border-bottom: 0.125rem solid #e6001e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-special-note__btn a:hover {
  background: #e6001e;
}

.c-special-note__row {
  gap: 0.125rem;
}

.c-special-note__link {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-special-note__link {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-special-note__link {
    font-size: 1rem;
  }
}

.c-special-note__btn a:hover .c-special-note__link {
  color: #fff;
}

.c-special-note__different {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
}

.c-special-note__different img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-special-note__different img.active {
  opacity: 0;
}

.c-special-note__btn a:hover .c-special-note__different .default {
  opacity: 0;
}

.c-special-note__btn a:hover .c-special-note__different .active {
  opacity: 1;
}

.c-special-note__arrow img {
  width: 1.625rem;
  height: 1.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .c-special-text {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-text {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-text {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-name {
    max-width: 100%;
    text-align: right;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-name {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-name {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-name {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-name {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-media {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__body {
    padding: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__body {
    padding: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-media__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__item {
    gap: 1.25vw 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__item {
    gap: 4.27vw 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__item:not(:first-of-type) {
    padding-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__item:not(:first-of-type) {
    padding-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__item:not(:first-of-type) {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__item:not(:first-of-type) {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-media__image {
    width: calc(32% - 2vw);
  }
  .c-special-media__image img {
    aspect-ratio: 90/67.5;
  }
  .c-special-media__contents {
    width: calc(68% - 2vw);
  }
  .c-special-media__name {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__name {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__name {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-special-media__job {
    line-height: 1.28;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__job {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__job {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__job {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__job {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-media__affiliation {
    line-height: 1.28;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__affiliation {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__affiliation {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__affiliation {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__affiliation {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-media__text {
    width: 100%;
    line-height: 1.67;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-special-media__note {
    line-height: 1.33;
    color: #888888;
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-media__note {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-media__note {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-interview__items {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-interview__item:not(:first-of-type),
  .c-special-interview--30 .c-special-interview__item:not(:first-of-type),
  .c-special-interview--120 .c-special-interview__item:not(:first-of-type) {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-interview__item:not(:first-of-type),
  .c-special-interview--30 .c-special-interview__item:not(:first-of-type),
  .c-special-interview--120 .c-special-interview__item:not(:first-of-type) {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-interview__title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-interview__title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-interview__text {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-interview__text {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-interview__text .name {
    font-weight: 700;
  }
  .c-special-note::before {
    width: calc(100% + 8vw);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .c-special-note .c-special-body {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note .c-special-body {
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note .c-special-body {
    padding-bottom: 21.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__title {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__title {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__catch {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__catch {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__catch {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__catch {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__row {
    gap: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__row {
    gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__btn {
    margin-top: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__btn {
    margin-top: 1.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-note__btn a {
    border-bottom: 0.53vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__btn a {
    gap: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__btn a {
    gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__btn a {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__btn a {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-note__btn a:hover {
    background: transparent;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__row {
    gap: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__row {
    gap: 0.53vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-note__link {
    line-height: 1.23;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__link {
    font-size: max(1.02vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__link {
    font-size: max(3.47vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-special-note__btn a:hover .c-special-note__link {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__different {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__different {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__different {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__different {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .c-special-note__different img.active {
    display: none;
  }
  .c-special-note__btn a:hover .c-special-note__different .default {
    opacity: 1;
  }
  .c-special-note__btn a:hover .c-special-note__different .active {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__arrow img {
    width: 1.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__arrow img {
    width: 5.87vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-special-note__arrow img {
    height: 1.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-special-note__arrow img {
    height: 5.87vw;
  }
}
.common-breadcrumb {
  padding: 0.625rem 0 0.9375rem;
}

.common-breadcrumb__links {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2.25rem;
  padding: 0.9375rem 0 0.9375rem 1.25rem;
}

.common-breadcrumb__link {
  position: relative;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-breadcrumb__link {
    font-size: max(0.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-breadcrumb__link {
    font-size: 0.625rem;
  }
}

.common-breadcrumb__link::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #888888;
}

.common-breadcrumb__link:last-child::before {
  display: none;
}

.common-breadcrumb__link a {
  color: #888888;
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-breadcrumb {
    padding: 0.55vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-breadcrumb {
    padding: 1.87vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-breadcrumb__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-breadcrumb__links {
    gap: 1.09vw 2.81vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-breadcrumb__links {
    gap: 3.73vw 9.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-breadcrumb__link {
    font-size: max(0.78vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-breadcrumb__link {
    font-size: max(2.67vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-breadcrumb__link::before {
    width: 1.88vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-breadcrumb__link::before {
    width: 6.4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-breadcrumb__link::before {
    right: -2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-breadcrumb__link::before {
    right: -8vw;
  }
}
.common-challenges {
  background: #faf9f5;
  border-top: 1px solid #e9e3cb;
  padding: 6.25rem 0 9.375rem;
}

.common-challenges__head {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2rem;
}

.common-challenges__head-title {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-challenges__head-title {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-challenges__head-title {
    font-size: 1.875rem;
  }
}

.common-challenges__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  padding-left: 0.5rem;
  border-bottom: 0.125rem solid #e6001e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-challenges__btn a:hover {
  background: #e6001e;
}

.common-challenges__link {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-challenges__link {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-challenges__link {
    font-size: 1rem;
  }
}

.common-challenges__btn a:hover .common-challenges__link {
  color: #fff;
}

.common-challenges__arrow img {
  width: 1.625rem;
  height: 1.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.common-challenges__swiper-container {
  margin-top: 3.75rem;
}

.common-challenges .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.common-challenges .swiper-slide {
  width: 16.5625rem;
  height: auto;
}

.common-challenges__item {
  height: 100%;
}

.common-challenges__item a {
  position: relative;
  display: block;
  padding-bottom: 0.875rem;
}

.common-challenges__item a::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.common-challenges__item a:hover::before {
  opacity: 1;
}

.common-challenges__image {
  position: relative;
  overflow: hidden;
}

.common-challenges__image img {
  height: auto;
  aspect-ratio: 265/176;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-challenges__item a:hover .common-challenges__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.common-challenges__title {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  padding-left: 0.625rem;
  margin-top: -0.625rem;
  z-index: 1;
}

.common-challenges__title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.2903225806;
  letter-spacing: 0em;
  color: #e6001e;
  background: #fff;
  padding: 0 0.375rem 0.125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-challenges__title span {
    font-size: max(0.775rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-challenges__title span {
    font-size: 0.96875rem;
  }
}

@media screen and (max-width: 768px) {
  .common-challenges {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges {
    padding: 6.25vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges {
    padding: 21.33vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__inner {
    padding: 0;
  }
  .common-challenges__head {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__head-title {
    font-size: max(2.34vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__head-title {
    font-size: max(8vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__btn {
    text-align: right;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__btn {
    padding-right: 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__btn {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__btn {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__btn {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__btn a {
    border-bottom: 0.53vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__btn a {
    gap: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__btn a {
    gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__btn a {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__btn a {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__btn a:hover {
    background: transparent;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__link {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__link {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__btn a:hover .common-challenges__link {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__arrow img {
    width: 2.03vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__arrow img {
    width: 6.93vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__arrow img {
    height: 2.03vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__arrow img {
    height: 6.93vw;
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__swiper-container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__swiper-container {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__swiper-container {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges .swiper-slide {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges .swiper-slide {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__item a {
    padding-bottom: 1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__item a {
    padding-bottom: 3.73vw;
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__item a::before {
    display: none;
  }
  .common-challenges__item a:hover .common-challenges__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__title {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__title {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__title {
    padding-left: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__title {
    padding-left: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__title {
    margin-top: -1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__title {
    margin-top: -4.27vw;
  }
}
@media screen and (max-width: 768px) {
  .common-challenges__title span {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__title span {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__title span {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-challenges__title span {
    padding: 0 0.47vw 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-challenges__title span {
    padding: 0 1.6vw 0.53vw;
  }
}
.common-connection {
  background: #faf9f5;
  border-top: 1px solid #e9e3cb;
  padding: 3.75rem 0 6.25rem;
}

.common-connection__inner {
  max-width: 1120px;
  padding: 0 15rem;
}

.common-connection__head-title {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-connection__head-title {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-connection__head-title {
    font-size: 1.875rem;
  }
}

.common-connection__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.common-connection__item a {
  position: relative;
  display: block;
  padding-bottom: 0.875rem;
}

.common-connection__item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.common-connection__item a:hover::before {
  opacity: 1;
}

.common-connection__image {
  position: relative;
  overflow: hidden;
}

.common-connection__image img {
  aspect-ratio: 300/200;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-connection__item a:hover .common-connection__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.common-connection__tag {
  display: inline-block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
  background: #fff;
  padding: 0.125rem 0.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-connection__tag {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-connection__tag {
    font-size: 1rem;
  }
}

.common-connection__item a:hover .common-connection__tag {
  color: #fff;
  background: #e6001e;
}

.common-connection__tag--bg {
  background: #faf9f5;
}

.common-connection__title {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  padding-left: 1rem;
  margin-top: -0.625rem;
  z-index: 1;
}

.common-connection__title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  color: #e6001e;
  padding: 0.125rem 0.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-connection__title span {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-connection__title span {
    font-size: 1.25rem;
  }
}

.common-connection__item a:hover .common-connection__title span {
  color: #fff;
  background: #e6001e;
}

.common-connection__title--bg span {
  background: #faf9f5;
}

.common-connection__title .icon {
  position: relative;
}

.common-connection__title .icon::before {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0;
  right: -1.25rem;
  background-image: url(../img/common/icon-different-tab-bg-transparent.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-connection__item a:hover .common-connection__title .icon::before {
  background-image: url(../img/common/icon-different-tab-red-flip.svg);
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection {
    padding: 6.25vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection {
    padding: 21.33vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-connection__inner {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__head {
    padding: 0 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__head {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__head-title {
    font-size: max(2.34vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__head-title {
    font-size: max(8vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-connection__items {
    grid-template-columns: repeat(2, 1fr);
    overflow: scroll;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__items {
    gap: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__items {
    gap: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__items {
    padding: 0 3.13vw 0 4.3vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__items {
    padding: 0 10.67vw 0 14.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__items {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__items {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__item {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__item {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__item a {
    padding-bottom: 1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__item a {
    padding-bottom: 3.73vw;
  }
}
@media screen and (max-width: 768px) {
  .common-connection__item a::before {
    display: none;
  }
  .common-connection__item a:hover .common-connection__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .common-connection__tag {
    line-height: 1.23;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__tag {
    top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__tag {
    top: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__tag {
    left: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__tag {
    left: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__tag {
    font-size: max(1.02vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__tag {
    font-size: max(3.47vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__tag {
    padding: 0 0.2vw 0.08vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__tag {
    padding: 0 0.67vw 0.27vw;
  }
}
@media screen and (max-width: 768px) {
  .common-connection__item a:hover .common-connection__tag {
    color: #e6001e;
    background: #fff;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title {
    padding-left: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title {
    padding-left: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title {
    margin-top: -0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title {
    margin-top: -2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title span {
    font-size: max(1.56vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title span {
    font-size: max(5.33vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title span {
    padding: 0.16vw 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title span {
    padding: 0.53vw 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .common-connection__item a:hover .common-connection__title span {
    color: #e6001e;
    background: #faf9f5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title .icon::before {
    width: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title .icon::before {
    width: 4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title .icon::before {
    height: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title .icon::before {
    height: 4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-connection__title .icon::before {
    right: -1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-connection__title .icon::before {
    right: -5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .common-connection__item a:hover .common-connection__title .icon::before {
    background-image: url(../img/common/icon-different-tab-bg-transparent.svg);
  }
}
.common-fv__head {
  padding-left: 1.25rem;
}

.common-fv__tag {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
  padding-left: 0.3125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-fv__tag {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-fv__tag {
    font-size: 1rem;
  }
}

.common-fv__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.common-fv__title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.1333333333;
  letter-spacing: 0em;
  color: #e6001e;
  background: #fff;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-fv__title span {
    font-size: max(3rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-fv__title span {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 769px) {
  .common-fv__title span {
    padding: 0.08vw 0.47vw 0.23vw;
  }
}
@media screen and (max-width: 768px) {
  .common-fv__title span {
    padding: 0.27vw 1.6vw 0.8vw;
  }
}

.common-fv__title .small {
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-fv__title .small {
    font-size: max(2.4rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-fv__title .small {
    font-size: 3rem;
  }
}

.common-fv__image {
  position: relative;
  margin-top: calc(-1 * (var(--fv-title-height, 152px) - 1.875rem));
  z-index: -1;
}

.common-fv__image img {
  aspect-ratio: 1280/540;
}

.common-fv__body {
  color: #fff;
  background: #e6001e;
  padding: 3.75rem 0;
}

.common-fv__body-title {
  font-weight: 700;
  line-height: 1.4666666667;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-fv__body-title {
    font-size: max(2.25rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-fv__body-title {
    font-size: 2.8125rem;
  }
}

.common-fv__body-text {
  margin-top: 1.25rem;
}

.common-fv__anchor {
  color: #fff;
  background: #e6001e;
  border-top: 1px solid #fff;
  padding: 1.25rem 0;
}

.common-fv__links {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.625rem 3.0625rem;
}

.common-fv__link {
  position: relative;
}

.common-fv__link::before {
  content: "";
  width: 1px;
  height: 120%;
  position: absolute;
  top: 50%;
  right: -1.53125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f6c9ba;
}

.common-fv__link:last-child::before {
  display: none;
}

.common-fv__link a {
  gap: 0.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-fv__link:hover a {
  opacity: 0.8;
}

.common-fv__link-text {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-fv__link-text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-fv__link-text {
    font-size: 1rem;
  }
}

.common-fv__link-icon img {
  width: 1rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .common-fv__head {
    padding-left: 0;
  }
  .common-fv__tag {
    line-height: 1.23;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__tag {
    font-size: max(1.02vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__tag {
    font-size: max(3.47vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__title {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__title {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__title {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__title {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .common-fv__title span {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__title span {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__title span {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__title span {
    padding: 0vw 0.16vw 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__title span {
    padding: 0vw 0.53vw 0.53vw;
  }
}
@media screen and (max-width: 768px) {
  .common-fv__title .small {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__title .small {
    font-size: max(1.56vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__title .small {
    font-size: max(5.33vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-fv__image {
    margin-top: calc(-1 * (var(--fv-title-height, 23.47vw) - 4vw));
  }
  .common-fv__image img {
    aspect-ratio: 375/250;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__body {
    padding: 2.34vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__body {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-fv__body-title {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__body-title {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__body-title {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__body-text {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__body-text {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__anchor {
    padding: 1.56vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__anchor {
    padding: 5.33vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__links {
    gap: 0.94vw 1.88vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__links {
    gap: 3.2vw 6.4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__link::before {
    right: -0.98vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__link::before {
    right: -3.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__link a {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__link a {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .common-fv__link:hover a {
    opacity: 1;
  }
  .common-fv__link-text {
    line-height: 1.33;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__link-text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__link-text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-fv__link-icon img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-fv__link-icon img {
    width: 3.2vw;
  }
}
.common-interview {
  background: #faf9f5;
  border-top: 1px solid #e9e3cb;
  padding: 6.25rem 0 5.625rem;
}

.common-interview__head {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2rem;
}

.common-interview__head-title {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-interview__head-title {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-interview__head-title {
    font-size: 1.875rem;
  }
}

.common-interview__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  padding-left: 0.5rem;
  border-bottom: 0.125rem solid #e6001e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-interview__btn a:hover {
  background: #e6001e;
}

.common-interview__link {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-interview__link {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-interview__link {
    font-size: 1rem;
  }
}

.common-interview__btn a:hover .common-interview__link {
  color: #fff;
}

.common-interview__arrow img {
  width: 1.625rem;
  height: 1.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.common-interview__swiper-container {
  margin-top: 3.75rem;
}

.common-interview .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.common-interview .swiper-slide {
  width: 16.5625rem;
  height: auto;
}

.common-interview__item {
  height: 100%;
}

.common-interview__item a {
  position: relative;
  display: block;
}

.common-interview__item a::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.common-interview__item a:hover::before {
  opacity: 1;
}

.common-interview__image {
  position: relative;
  overflow: hidden;
}

.common-interview__image img {
  height: auto;
  aspect-ratio: 265/176;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-interview__item a:hover .common-interview__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.common-interview__content {
  padding: 0 0 0.875rem 0.625rem;
  margin-top: -1rem;
}

.common-interview__title {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  z-index: 1;
}

.common-interview__title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 0 0.40625rem 0.125rem;
  white-space: nowrap;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-interview__title span {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-interview__title span {
    font-size: 1rem;
  }
}

.common-interview__title--small span {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-interview__title--small span {
    font-size: max(0.75rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-interview__title--small span {
    font-size: 0.9375rem;
  }
}

.common-interview__texts {
  padding-left: 0.375rem;
}

.common-interview__job {
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  margin-top: 0.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-interview__job {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-interview__job {
    font-size: 0.875rem;
  }
}

.common-interview__meta {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #bbbbbb;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-interview__meta {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-interview__meta {
    font-size: 0.75rem;
  }
}

.u-investigation .common-interview__title span {
  background: #3c59b0;
}

.u-investigation .common-interview__item a:hover .common-interview__job,
.u-investigation .common-interview__item a:hover .common-interview__meta {
  color: #3c59b0;
}

.u-operations .common-interview__title span {
  background: #0081b9;
}

.u-operations .common-interview__item a:hover .common-interview__job,
.u-operations .common-interview__item a:hover .common-interview__meta {
  color: #0081b9;
}

.u-engineering .common-interview__title span {
  background: #8bb628;
}

.u-engineering .common-interview__item a:hover .common-interview__job,
.u-engineering .common-interview__item a:hover .common-interview__meta {
  color: #8bb628;
}

.u-scm .common-interview__title span {
  background: #f0b200;
}

.u-scm .common-interview__item a:hover .common-interview__job,
.u-scm .common-interview__item a:hover .common-interview__meta {
  color: #f0b200;
}

.u-marketing .common-interview__title span {
  background: #da5283;
}

.u-marketing .common-interview__item a:hover .common-interview__job,
.u-marketing .common-interview__item a:hover .common-interview__meta {
  color: #da5283;
}

.u-sales .common-interview__title span {
  background: #e77600;
}

.u-sales .common-interview__item a:hover .common-interview__job,
.u-sales .common-interview__item a:hover .common-interview__meta {
  color: #e77600;
}

.u-digital-ict .common-interview__title span {
  background: #86705a;
}

.u-digital-ict .common-interview__item a:hover .common-interview__job,
.u-digital-ict .common-interview__item a:hover .common-interview__meta {
  color: #86705a;
}

.u-legal .common-interview__title span {
  background: #86705a;
}

.u-legal .common-interview__item a:hover .common-interview__job,
.u-legal .common-interview__item a:hover .common-interview__meta {
  color: #86705a;
}

.u-finance .common-interview__title span {
  background: #86705a;
}

.u-finance .common-interview__item a:hover .common-interview__job,
.u-finance .common-interview__item a:hover .common-interview__meta {
  color: #86705a;
}

.u-human-resources .common-interview__title span {
  background: #86705a;
}

.u-human-resources .common-interview__item a:hover .common-interview__job,
.u-human-resources .common-interview__item a:hover .common-interview__meta {
  color: #86705a;
}

.u-planning .common-interview__title span {
  background: #86705a;
}

.u-planning .common-interview__item a:hover .common-interview__job,
.u-planning .common-interview__item a:hover .common-interview__meta {
  color: #86705a;
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview {
    padding: 6.25vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview {
    padding: 21.33vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-interview__inner {
    padding: 0;
  }
  .common-interview__head {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__head-title {
    font-size: max(2.34vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__head-title {
    font-size: max(8vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-interview__btn {
    text-align: right;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__btn {
    padding-right: 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__btn {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__btn {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__btn {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-interview__btn a {
    border-bottom: 0.53vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__btn a {
    gap: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__btn a {
    gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__btn a {
    padding-left: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__btn a {
    padding-left: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .common-interview__btn a:hover {
    background: transparent;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__link {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__link {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-interview__btn a:hover .common-interview__link {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__arrow img {
    width: 2.03vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__arrow img {
    width: 6.93vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__arrow img {
    height: 2.03vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__arrow img {
    height: 6.93vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__swiper-container {
    padding-left: 4.3vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__swiper-container {
    padding-left: 14.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__swiper-container {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__swiper-container {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview .swiper-slide {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview .swiper-slide {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-interview__item a::before {
    display: none;
  }
  .common-interview__item a:hover .common-interview__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__content {
    padding: 0 0 1.09vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__content {
    padding: 0 0 3.73vw 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__content {
    margin-top: -1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__content {
    margin-top: -4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__title {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__title {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__title span {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__title span {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__title span {
    padding: 0 0.51vw 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__title span {
    padding: 0 1.73vw 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__title--small span {
    font-size: max(1.17vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__title--small span {
    font-size: max(4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__texts {
    padding-left: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__texts {
    padding-left: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__job {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__job {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__job {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__job {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-interview__meta {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-interview__meta {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .u-investigation .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-investigation .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-operations .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-operations .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-engineering .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-engineering .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-scm .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-scm .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-marketing .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-marketing .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-sales .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-sales .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-digital-ict .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-digital-ict .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-legal .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-legal .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-finance .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-finance .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-human-resources .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-human-resources .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
  .u-planning .common-interview__item a:hover .common-interview__job {
    color: #000;
  }
  .u-planning .common-interview__item a:hover .common-interview__meta {
    color: #bbbbbb;
  }
}
.common-note {
  background: #faf9f5;
  border-top: 1px solid #e9e3cb;
  padding: 3.75rem 0 4.875rem;
}

.common-note__head-title {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-note__head-title {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-note__head-title {
    font-size: 1.875rem;
  }
}

.common-note__head-text {
  margin-top: 1.25rem;
  text-align: center;
}

.common-note__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2.5rem;
  padding: 0 4.375rem;
  margin-top: 2.5rem;
}

.common-note__item a {
  position: relative;
  display: block;
  height: 100%;
}

.common-note__item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.25rem solid #e6001e;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.common-note__item a:hover::before {
  opacity: 1;
}

.common-note__image {
  overflow: hidden;
}

.common-note__image img {
  aspect-ratio: 300/200;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-note__item audio:hover .common-note__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.common-note__contents {
  position: relative;
  padding: 0 1rem 0.875rem;
  margin-top: -1rem;
  z-index: 1;
}

.common-note__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.625rem;
  background: #faf9f5;
  padding: 0.125rem 0.375rem;
}

.common-note__title {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-note__title {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-note__title {
    font-size: 1rem;
  }
}

.common-note__text {
  font-weight: 500;
  line-height: 1.8333333333;
  letter-spacing: 0em;
  padding-left: 0.375rem;
  margin-top: 0.125rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-note__text {
    font-size: max(0.6rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-note__text {
    font-size: 0.75rem;
  }
}

.common-note__item a:hover .common-note__text {
  color: #e6001e;
}

.common-note__icon {
  position: relative;
}

.common-note__icon img {
  width: 0.75rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-note__item a:hover .common-note__icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note {
    padding: 6.25vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note {
    padding: 21.33vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__head-title {
    font-size: max(2.34vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__head-title {
    font-size: max(8vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__head-text {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__head-text {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .common-note__items {
    grid-template-columns: repeat(3, 1fr);
    overflow: scroll;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__items {
    gap: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__items {
    gap: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__items {
    padding: 0 0 0 4.3vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__items {
    padding: 0 0 0 14.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__items {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__items {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__item {
    width: 20.7vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__item {
    width: 70.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__item:last-of-type {
    margin-right: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__item:last-of-type {
    margin-right: 10.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-note__item a::before {
    display: none;
  }
  .common-note__image img {
    aspect-ratio: 265/176;
  }
  .common-note__item a:hover .common-note__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__contents {
    padding: 0 0 1.09vw 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__contents {
    padding: 0 0 3.73vw 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__contents {
    margin-top: -0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__contents {
    margin-top: -3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__row {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__row {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__row {
    padding: 0.16vw 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__row {
    padding: 0.53vw 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .common-note__item a:hover .common-note__row,
  .common-note__item a:hover .common-note__title {
    background: #faf9f5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__text {
    padding-left: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__text {
    padding-left: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__text {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__text {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .common-note__item a:hover .common-note__text {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-note__icon img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-note__icon img {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .common-note__item a:hover .common-note__icon img {
    -webkit-filter: none;
    filter: none;
  }
}
.common-recruit-fv__body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 0.625rem 0 1.5625rem;
}

.common-recruit-fv__tag {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit-fv__tag {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit-fv__tag {
    font-size: 1rem;
  }
}

.common-recruit-fv__title {
  font-weight: 700;
  line-height: 1.1333333333;
  letter-spacing: 0em;
  color: #e6001e;
  margin-top: 0.5rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit-fv__title {
    font-size: max(3rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit-fv__title {
    font-size: 3.75rem;
  }
}

.common-recruit-fv__banner a {
  display: block;
  border: 2px solid #e6001e;
  padding: 1.125rem 0 0 0.9375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-recruit-fv__banner a:hover {
  opacity: 0.8;
}

.common-recruit-fv__banner-image img {
  height: auto;
  aspect-ratio: 311/65.5;
}

.common-recruit-fv__banner-row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0.3125rem;
  padding-right: 0.3125rem;
  padding-bottom: 0.1875rem;
  margin-top: 0.1875rem;
}

.common-recruit-fv__banner-text {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit-fv__banner-text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit-fv__banner-text {
    font-size: 1rem;
  }
}

.common-recruit-fv__banner-arrow {
  position: relative;
  top: 0.125rem;
}

.common-recruit-fv__banner-arrow img {
  width: 0.75rem;
  height: 0.75rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .common-recruit-fv__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__body {
    gap: 1.02vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__body {
    gap: 3.47vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__body {
    margin-top: 1.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__body {
    margin-top: 5.87vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__head {
    padding-left: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__head {
    padding-left: 1.33vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit-fv__tag {
    line-height: 1.23;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__tag {
    font-size: max(1.02vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__tag {
    font-size: max(3.47vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-recruit-fv__title {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__title {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__title {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__title {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__title {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit-fv__banner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner {
    padding: 0 0.55vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner {
    padding: 0 1.87vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit-fv__banner a {
    border: 0.53vw solid #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner a {
    padding: 1.56vw 0 0 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner a {
    padding: 5.33vw 0 0 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit-fv__banner a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-row {
    gap: 0.63vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-row {
    gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-row {
    padding-right: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-row {
    padding-right: 1.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-row {
    padding-bottom: 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-row {
    padding-bottom: 0.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-row {
    margin-top: 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-row {
    margin-top: 0.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-text {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-text {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-arrow {
    top: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-arrow {
    top: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-arrow img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-arrow img {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit-fv__banner-arrow img {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit-fv__banner-arrow img {
    height: 3.2vw;
  }
}
.common-recruit {
  background: #faf9f5;
  border-top: 1px solid #e9e3cb;
  padding: 2.5rem 1.25rem;
}

.common-recruit__inner {
  max-width: 1400px;
}

.common-recruit__body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
}

.common-recruit__catch-sub {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit__catch-sub {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit__catch-sub {
    font-size: 1rem;
  }
}

.common-recruit__catch-main {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  margin-top: 0.375rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit__catch-main {
    font-size: max(1.5rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit__catch-main {
    font-size: 1.875rem;
  }
}

.common-recruit__box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 45.25rem;
}

.common-recruit__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 769px) {
  .common-recruit__items {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__items {
    gap: 1.07vw;
  }
}

.common-recruit__item {
  height: 100%;
}

.common-recruit__item a {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4.5rem;
  color: #fff;
  background: #e6001e;
  padding: 1.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-recruit__item a:hover {
  background: #cb001a;
}

.common-recruit__row {
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.75rem;
}

.common-recruit__title {
  display: inline-block;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0em;
  color: #e6001e;
  background: #fff;
  padding: 0 0.34375rem 0.25rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit__title {
    font-size: max(2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit__title {
    font-size: 2.5rem;
  }
}

.common-recruit__icon img {
  width: 1rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

.common-recruit__list {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-recruit__list {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-recruit__list {
    font-size: 1.25rem;
  }
}

.common-recruit__list:not(:first-of-type) {
  margin-top: 0.625rem;
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit {
    padding: 6.25vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit {
    padding: 21.33vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__body {
    display: block;
  }
  .common-recruit__catch-sub {
    line-height: 1.43;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__catch-sub {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__catch-sub {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__catch-main {
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__catch-main {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__catch-main {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__catch-main {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__catch-main {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__box {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__box {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__box {
    margin-top: 10.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__items {
    gap: 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__items {
    gap: 0.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__item a {
    gap: 2.27vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__item a {
    gap: 7.73vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__item a {
    padding: 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__item a {
    padding: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__item a:hover {
    background: #e6001e;
  }
  .common-recruit__row {
    position: relative;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__row {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__row {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__title {
    line-height: 1.27;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__title {
    font-size: max(1.72vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__title {
    font-size: max(5.87vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__title {
    padding: 0 0.2vw 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__title {
    padding: 0 0.67vw 0.53vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__icon {
    position: absolute;
    top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__icon {
    right: -1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__icon {
    right: -3.73vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__icon img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__icon img {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__icon img {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__icon img {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .common-recruit__list:not(:first-of-type) {
    margin-top: 0;
  }
  .common-recruit__list {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-recruit__list {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-recruit__list {
    font-size: max(3.2vw, 10px);
  }
}
.common-special-fv {
  margin-top: -0.3125rem;
}

.common-special-fv__tag {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #e6001e;
  padding-left: 1.5625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-special-fv__tag {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-special-fv__tag {
    font-size: 1rem;
  }
}

.common-special-fv__body {
  position: relative;
  margin-top: 2.25rem;
}

.common-special-fv__head {
  min-height: 30rem;
}

.common-special-fv__title {
  margin-top: 0.375rem;
}

.common-special-fv__sub-title span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-special-fv__sub-title span {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-special-fv__sub-title span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .common-special-fv__sub-title span {
    padding: 0.08vw 0.47vw 0.23vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__sub-title span {
    padding: 0.27vw 1.6vw 0.8vw;
  }
}

.common-special-fv__text {
  width: 32.2%;
  margin-top: 1.5rem;
}

.common-special-fv__note {
  width: 32.2%;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0em;
  color: #888888;
  margin-top: 0.625rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-special-fv__note {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-special-fv__note {
    font-size: 1rem;
  }
}

.common-special-fv__image {
  position: absolute;
  width: 64.3%;
  height: auto;
  top: 0;
  right: 0;
  z-index: -1;
}

.common-special-fv__anchor {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 1.3125rem 0;
  margin-top: 2.5rem;
}

.common-special-fv__links {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem 3.0625rem;
}

.common-special-fv__link {
  position: relative;
}

.common-special-fv__link::before {
  content: "";
  width: 1px;
  height: 120%;
  position: absolute;
  top: 50%;
  right: -1.53125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #cccccc;
}

.common-special-fv__link a {
  gap: 0.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-special-fv__link:hover a {
  opacity: 0.8;
}

.common-special-fv__link-text {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .common-special-fv__link-text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .common-special-fv__link-text {
    font-size: 1rem;
  }
}

.common-special-fv__link-icon img {
  width: 1rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .common-special-fv {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__tag {
    line-height: 1.23;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__tag {
    font-size: max(1.02vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__tag {
    font-size: max(3.47vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__tag {
    padding-left: 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__tag {
    padding-left: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__body {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__body {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__head {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__head {
    margin-top: -1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__head {
    margin-top: -4.27vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__title {
    margin-top: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__title {
    margin-top: 0.53vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__sub-title span {
    line-height: 1.23;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__sub-title span {
    font-size: max(1.02vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__sub-title span {
    font-size: max(3.47vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__sub-title span {
    padding: 0 0.16vw 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__sub-title span {
    padding: 0 0.53vw 0.53vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__text {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__text {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__note {
    width: 100%;
    line-height: 1.33;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__note {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__note {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__note {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__note {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__image {
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    top: 0;
    right: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__anchor {
    padding: 1.56vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__anchor {
    padding: 5.33vw 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__anchor {
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__anchor {
    margin-top: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__links {
    gap: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__links {
    gap: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__link::before {
    right: -0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__link::before {
    right: -3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__link a {
    gap: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__link a {
    gap: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .common-special-fv__link:hover a {
    opacity: 1;
  }
  .common-special-fv__link-text {
    line-height: 1.33;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__link-text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__link-text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .common-special-fv__link-icon img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .common-special-fv__link-icon img {
    width: 3.2vw;
  }
}
.footer {
  background: #faf9f5;
  border-top: 1px solid #e9e3cb;
  padding: 2.5rem 1.25rem 1.75rem;
}

.footer__inner {
  max-width: 1400px;
}

.c-contents {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
}

.c-contents__catch-en {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__catch-en {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__catch-en {
    font-size: 1rem;
  }
}

.c-contents__catch a:hover .c-contents__catch-en {
  color: #e6001e;
}

.c-contents__catch-ja {
  position: relative;
  width: 100%;
  max-width: 15.125rem;
  margin-left: 0;
  margin-top: 1.375rem;
}

.c-contents__catch-ja .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-contents__catch a:hover .c-contents__catch-ja .hover {
  opacity: 1;
}

.c-contents__main {
  width: 100%;
  max-width: 50rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
}

.c-contents__nav {
  width: calc(66.5% - 1.25rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.c-contents__nav-item:not(:first-of-type) {
  margin-top: 1.5rem;
}

.c-contents__nav-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__nav-title {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__nav-title {
    font-size: 1.25rem;
  }
}

.c-contents__nav-lists {
  margin-top: 0.5rem;
}

.c-contents__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-contents__nav-list:not(:first-of-type) {
  margin-top: 0.375rem;
}

.c-contents__nav-list a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 0.625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__nav-list a {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__nav-list a {
    font-size: 1rem;
  }
}

.c-contents__nav-list a:hover {
  color: #e6001e;
}

.c-contents__nav-list a::before {
  content: "";
  width: 0.3125rem;
  height: 2px;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-contents__nav-list a:hover::before {
  background: #e6001e;
}

.c-contents__side {
  width: calc(32.5% - 1.25rem);
  min-width: 200px;
}

.c-contents__banner-item:not(:first-of-type) {
  margin-top: 1.5rem;
}

.c-contents__banner-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.25rem;
}

.c-contents__banner-title span {
  position: relative;
  display: inline-block;
  font-weight: 500;
  line-height: 1.8181818182;
  letter-spacing: 0em;
  padding-right: 1.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__banner-title span {
    font-size: max(0.55rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__banner-title span {
    font-size: 0.6875rem;
  }
}

.c-contents__banner-item a:hover .c-contents__banner-title span {
  color: #e6001e;
}

.c-contents__banner-title span::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../img/common/icon-different-tab.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-contents__banner-item a:hover .c-contents__banner-title span::before {
  background-image: url("../img/common/icon-different-tab-red.svg");
}

.c-contents__btn {
  display: none;
  margin-top: 0.9375rem;
  text-align: right;
}

.footer .c-contents__btn {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 1440px;
  bottom: 5.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 2.5rem;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 100;
}

.footer .c-contents__btn.show {
  opacity: 1;
  pointer-events: auto;
}

.c-contents__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  background: #e6001e;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.875rem;
  padding: 0.5rem 1.25rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-contents__btn a:hover {
  background: #cb001a;
}

.c-contents__btn-text {
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__btn-text {
    font-size: max(0.8rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__btn-text {
    font-size: 1rem;
  }
}

.c-contents__btn-icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

.c-contents__btn-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-contents__btn-icon img.active {
  opacity: 0;
}

.c-contents__btn a:hover .c-contents__btn-icon .default {
  opacity: 0;
}

.c-contents__btn a:hover .c-contents__btn-icon .active {
  opacity: 1;
}

.c-contents__sub-nav-items {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-top: 2.25rem;
}

.c-contents__sub-nav-item a {
  display: inline-block;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__sub-nav-item a {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__sub-nav-item a {
    font-size: 0.875rem;
  }
}

.c-contents__sub-nav-item a:hover {
  color: #e6001e;
}

.c-contents__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5.375rem;
}

.c-contents__box {
  width: 100%;
  max-width: 14.625rem;
  min-width: 160px;
  margin-left: 0;
  text-align: center;
}

.c-contents__copyright {
  display: block;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.3125rem;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-contents__copyright {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .c-contents__copyright {
    font-size: 0.875rem;
  }
}

.c-contents__note {
  width: 100%;
  max-width: 22.5rem;
  margin-right: 0;
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .footer {
    padding: 3.13vw 0 12.5vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer {
    padding: 10.67vw 0 42.67vw;
  }
}
@media screen and (max-width: 768px) {
  .footer-fixed {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 300;
  }
  .entry-popup.is-active ~ * .footer-fixed,
  body:has(.entry-popup.is-active) .footer-fixed {
    z-index: 400;
  }
  .footer-fixed__btns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .footer-fixed__btns {
    gap: 0.08vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer-fixed__btns {
    gap: 0.27vw;
  }
}
@media screen and (max-width: 768px) {
  .footer-fixed__btn a {
    position: relative;
    display: block;
    line-height: 1.14;
    color: #fff;
    background: #e6001e;
    text-align: center;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .footer-fixed__btn a {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer-fixed__btn a {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .footer-fixed__btn a {
    padding: 1.09vw 1.56vw 1.41vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer-fixed__btn a {
    padding: 3.73vw 5.33vw 4.8vw;
  }
}
@media screen and (max-width: 768px) {
  .footer-fixed__btn:first-of-type a::before {
    content: "";
    position: absolute;
    aspect-ratio: 1/1;
    top: 0;
    right: 0;
    background-image: url("../img/common/icon-different-tab-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .footer-fixed__btn:first-of-type a::before {
    width: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer-fixed__btn:first-of-type a::before {
    width: 4.27vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents {
    gap: 4.69vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents {
    gap: 16vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__catch {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__catch-en {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__catch-en {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-contents__catch a:hover .c-contents__catch-en {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__catch-ja {
    max-width: 18.91vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__catch-ja {
    max-width: 64.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__catch-ja {
    margin-top: 1.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__catch-ja {
    margin-top: 5.87vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__catch-ja .hover {
    display: none;
  }
  .c-contents__main {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__main {
    gap: 5vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__main {
    gap: 17.07vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__nav {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .c-contents__nav-item:not(:first-of-type) {
    margin-top: 0;
  }
  .c-contents__nav-title {
    position: relative;
    border-bottom: 1px solid #e9e3cb;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title {
    font-size: max(1.56vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title {
    font-size: max(5.33vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title {
    padding: 0.66vw 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title {
    padding: 2.27vw 0;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__nav-title.active {
    color: #e6001e;
    border-bottom: 1px solid #e6001e;
  }
  .c-contents__nav-title::before,
  .c-contents__nav-title::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #000;
  }
  .c-contents__nav-title::before {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title::before {
    width: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title::before {
    width: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title::before {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title::before {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title::before {
    right: 0.86vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title::before {
    right: 2.93vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title::after {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title::after {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title::after {
    height: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title::after {
    height: 0.53vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-title::after {
    right: 0.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-title::after {
    right: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__nav-title.active::before,
  .c-contents__nav-title.active::after {
    background: #e6001e;
  }
  .c-contents__nav-lists {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-lists.active {
    padding-bottom: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-lists.active {
    padding-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-lists.active {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-lists.active {
    margin-top: 4.27vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__nav-title.active::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-list:not(:first-of-type) {
    padding-top: 1.41vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-list:not(:first-of-type) {
    padding-top: 4.8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-list a {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-list a {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-list a {
    padding-left: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-list a {
    padding-left: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__nav-list a:hover {
    color: #000;
  }
  .c-contents__nav-list a::before {
    top: 50%;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-list a::before {
    width: 0.39vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-list a::before {
    width: 1.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__nav-list a::before {
    height: 0.16vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__nav-list a::before {
    height: 0.53vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__nav-list a:hover::before {
    background: #000;
  }
  .c-contents__side {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__side {
    max-width: 18.75vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__side {
    max-width: 64vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__banner-item {
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__banner-item:not(:first-of-type) {
    margin-top: 1.88vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__banner-item:not(:first-of-type) {
    margin-top: 6.4vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__banner-title {
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__banner-title {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__banner-title {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__banner-title span {
    font-size: max(0.86vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__banner-title span {
    font-size: max(2.93vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__banner-title span {
    padding-right: 1.72vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__banner-title span {
    padding-right: 5.87vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__banner-item a:hover .c-contents__banner-title span {
    color: #000;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__banner-title span::before {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__banner-title span::before {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__banner-title span::before {
    height: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__banner-title span::before {
    height: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__banner-item a:hover .c-contents__banner-title span::before {
    background-image: url("../img/common/icon-different-tab.svg");
  }
  .c-contents__banner-item:nth-child(3) .c-contents__banner-image {
    padding: 0;
  }
  .c-contents__btn {
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn a {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn a {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn a {
    border-radius: 2.34vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn a {
    border-radius: 8vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn a {
    padding: 0.63vw 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn a {
    padding: 2.13vw 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__btn a:hover {
    background: #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn-text {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn-text {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn-icon {
    width: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn-icon {
    width: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__btn-icon {
    height: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__btn-icon {
    height: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__btn a:hover .c-contents__btn-icon .default {
    opacity: 1;
  }
  .c-contents__btn a:hover .c-contents__btn-icon .active {
    display: none;
  }
  .c-contents__sub-nav-items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__sub-nav-items {
    gap: 1.88vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__sub-nav-items {
    gap: 6.4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__sub-nav-items {
    margin-top: 5.47vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__sub-nav-items {
    margin-top: 18.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__sub-nav-item a {
    line-height: 1.5;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__sub-nav-item a {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__sub-nav-item a {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .c-contents__sub-nav-item a:hover {
    color: #000;
  }
  .c-contents__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__row {
    margin-top: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__row {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contents__note {
    max-width: 100%;
  }
  .c-contents__box {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__box {
    max-width: 18.28vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__box {
    max-width: 62.4vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__box {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__box {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__copyright {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__copyright {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .c-contents__copyright {
    margin-top: 0.23vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .c-contents__copyright {
    margin-top: 0.8vw;
  }
}
.hamburger__inner {
  max-width: 1400px;
}

.hamburger__icon {
  position: absolute;
  width: 2.5rem;
  height: 2.25rem;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1000;
}

.hamburger__icon-bars {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.25rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.hamburger__icon-bar1,
.hamburger__icon-bar2,
.hamburger__icon-bar3 {
  position: absolute;
  width: 2.5rem;
  height: 0.25rem;
  background: #e6001e;
  top: 0;
  left: 0;
  border-radius: 0.3125rem;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.hamburger__icon-bar1 {
  top: 0;
}

.hamburger__icon-bar2 {
  top: 1rem;
}

.hamburger__icon-bar3 {
  top: 2rem;
}

.hamburger__icon.is-active .hamburger__icon-bar1 {
  width: 2.5rem;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger__icon.is-active .hamburger__icon-bar2 {
  display: none;
}

.hamburger__icon.is-active .hamburger__icon-bar3 {
  width: 2.5rem;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger__icon.is-active {
  z-index: 251;
}

.hamburger__icon.is-active .hamburger__icon-bar1,
.hamburger__icon.is-active .hamburger__icon-bar3 {
  background: #dc3129;
}

.hamburger__body {
  position: fixed;
  width: 100%;
  height: calc(100vh - var(--header-height));
  top: var(--header-height);
  right: 0;
  background: #faf9f5;
  padding: 7.5rem 1.25rem 1.75rem;
  opacity: 0;
  overflow-y: scroll;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  pointer-events: none;
  cursor: auto;
  z-index: 250;
}

.hamburger__body.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .hamburger__icon {
    width: 30px;
    height: 26px;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .hamburger__icon {
    right: 1.17vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hamburger__icon {
    right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__icon-bars {
    width: 30px;
    height: 26px;
  }
  .hamburger__icon-bar1,
  .hamburger__icon-bar2,
  .hamburger__icon-bar3 {
    width: 30px;
    height: 2px;
    border-radius: 5px;
  }
  .hamburger__icon-bar1 {
    top: 0;
  }
  .hamburger__icon-bar2 {
    top: 12px;
  }
  .hamburger__icon-bar3 {
    top: 25px;
  }
  .hamburger__icon.is-active .hamburger__icon-bar1 {
    width: 30px;
  }
  .hamburger__icon.is-active .hamburger__icon-bar3 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .hamburger__body {
    padding: 3.13vw 1.17vw 7.81vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hamburger__body {
    padding: 10.67vw 4vw 26.67vw;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 350;
}

.header.is-active {
  background: #fff;
}

.header__inner {
  position: relative;
  max-width: 1430px;
  padding-left: 1.875rem;
  padding-right: 5rem;
}

.header__body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
}

.header__logo {
  width: 100%;
  max-width: 23.125rem;
  margin-left: 0;
}

.header__btns {
  width: 100%;
  max-width: 26.375rem;
  margin-right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2px;
}

.header__btn a {
  position: relative;
  display: block;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  background: #e6001e;
  padding: 1.75rem 0.71875rem 2rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .header__btn a {
    font-size: max(1rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .header__btn a {
    font-size: 1.25rem;
  }
}

.header__btn a:hover {
  background: #cb001a;
}

.header__btn:first-of-type a::before {
  content: "";
  position: absolute;
  width: 1rem;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  background-image: url("../img/common/icon-different-tab-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.entry-popup {
  position: fixed;
  width: 100%;
  top: var(--header-height);
  left: 0;
  color: #fff;
  backdrop-filter: blur(10px);
  padding: 5rem 1.25rem;
  opacity: 0;
  overflow-y: scroll;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  pointer-events: none;
  cursor: auto;
  z-index: 249;
}

.entry-popup.is-active {
  opacity: 1;
  pointer-events: auto;
}

.entry-popup::before {
  content: "";
  width: 100%;
  height: calc(50vh - var(--header-height));
  min-height: 26.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(230, 0, 30, 0.8);
}

.entry-popup__body {
  position: relative;
}

.entry-popup__item:nth-of-type(2) {
  margin-top: 3.75rem;
}

.entry-popup__title {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .entry-popup__title {
    font-size: max(1.2rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .entry-popup__title {
    font-size: 1.5rem;
  }
}

.entry-popup__btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.entry-popup__btn a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  background: #e6001e;
  border: 1px solid #fff;
  border-left: 0.3125rem solid #fff;
  padding: 0.6875rem 0.625rem 0.9375rem 0.9375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.entry-popup__btn a:hover {
  background: #cb001a;
}

.entry-popup__row {
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.entry-popup__sub-title {
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .entry-popup__sub-title {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .entry-popup__sub-title {
    font-size: 1.125rem;
  }
}

.entry-popup__icon img {
  width: 1rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

.entry-popup__text {
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .entry-popup__text {
    font-size: max(0.7rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .entry-popup__text {
    font-size: 0.875rem;
  }
}

.entry-popup__lists {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.625rem 3.0625rem;
  margin-top: 1.25rem;
}

.entry-popup__list a {
  position: relative;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  background: #e6001e;
  padding: 0.1875rem 0;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .entry-popup__list a {
    font-size: max(0.9rem, 10px);
  }
}
@media not ((min-width: 769px) and (max-width: 1279px)) {
  .entry-popup__list a {
    font-size: 1.125rem;
  }
}

.entry-popup__list a::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 50%;
  right: -1.53125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}

.entry-popup__list:last-of-type a::before {
  display: none;
}

.entry-popup__list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.entry-popup__list a:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 11.4px 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .header__inner {
    padding: 0 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .header__inner {
    padding: 0 2.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .header__body {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .header__body {
    gap: 2.67vw;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 263px;
  }
  .header__btns {
    display: none;
  }
  .entry-popup {
    height: calc(100vh - var(--header-height));
    min-height: 100%;
    background: rgba(230, 0, 30, 0.8);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup {
    padding: 4.69vw 1.56vw 11.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup {
    padding: 16vw 5.33vw 39.47vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup::before {
    display: none;
  }
  .entry-popup__inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__item:nth-of-type(2) {
    margin-top: 4.69vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__item:nth-of-type(2) {
    margin-top: 16vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__title {
    font-size: max(1.88vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__title {
    font-size: max(6.4vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__btns {
    width: 100%;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__btns {
    max-width: 22.27vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__btns {
    max-width: 76vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__btns {
    gap: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__btns {
    gap: 5.33vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__btns {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__btns {
    margin-top: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__btn a {
    border: 0.27vw solid #fff;
    border-left: 1.07vw solid #fff;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__btn a {
    padding: 0.94vw 0.78vw 1.09vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__btn a {
    padding: 3.2vw 2.67vw 3.73vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__btn a:hover {
    background: #e6001e;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__row {
    margin-top: 0.31vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__row {
    margin-top: 1.07vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__sub-title {
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__sub-title {
    font-size: max(1.25vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__sub-title {
    font-size: max(4.27vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__icon img {
    width: 0.94vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__icon img {
    width: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__text {
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__text {
    font-size: max(0.94vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__text {
    font-size: max(3.2vw, 10px);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__lists {
    gap: 1.41vw 1.95vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__lists {
    gap: 4.8vw 6.67vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__lists {
    margin-top: 2.03vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__lists {
    margin-top: 6.93vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__list a {
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__list a {
    font-size: max(1.09vw, 10px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__list a {
    font-size: max(3.73vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__list a::before {
    width: 0.27vw;
    right: -1.53125rem;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .entry-popup__list a::before {
    right: -0.98vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .entry-popup__list a::before {
    right: -3.33vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-popup__list a:hover::after {
    display: none;
  }
}