@import url("https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Ubuntu:wght@300;500;700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
@custom-media --mobile screen and (max-width: 767px);
@custom-media --large screen and (min-width: 768px);
@custom-media --tablet screen and (max-width: 1023px) and (min-width: 768px);
@custom-media --vw_outside screen and (min-width: 1600px);
@custom-media --vw_inside screen and (min-width: 768px) and (max-width: 1599px);
.js-inview[data-inview=fade] {
  opacity: 0;
  transition: opacity 1s;
}
.js-inview[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}
.js-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=fade-left] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-30px);
}
.js-inview[data-inview=fade-left].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(30px);
}
.js-inview[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn] a::before,
.js-inview[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn] i {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn].is-inview a::before,
.js-inview[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn].is-inview i {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn-border] a::after,
.js-inview[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn-border].is-inview a::after,
.js-inview[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=bg]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-white]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg-white].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-scale]::before {
  transition: transform 0.8s;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center center;
}
.js-inview[data-inview=bg-scale].is-inview::before {
  transform: translate(-50%, -50%) scale(1);
}
.js-inview-photo[data-inview=scale-small] {
  transition: transform 1s;
  transform: scale(1.5);
}
.is-inview .js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

.js-inview-photo-img[data-inview=scale-small] {
  transition: transform 1s;
  transform: translateX(-50%) scale(1.5);
}
.is-inview .js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.js-inview-eachItem[data-inview=fade] {
  opacity: 0;
  transition: opacity 0.8s;
}
.js-inview-eachItem[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview-eachItem[data-inview=btn] a::before,
.js-inview-eachItem[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn].is-inview a::before,
.js-inview-eachItem[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=btn-border] a::after,
.js-inview-eachItem[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn-border].is-inview a::after,
.js-inview-eachItem[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border]::before {
  transition: transform 0.8s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=list-border] span,
.js-inview-eachItem[data-inview=list-border] figure,
.js-inview-eachItem[data-inview=list-border] a {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=list-border] i {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(-20px) rotate(45deg);
}
.js-inview-eachItem[data-inview=list-border].is-inview::before {
  transform: scale(1);
}
.js-inview-eachItem[data-inview=list-border].is-inview span,
.js-inview-eachItem[data-inview=list-border].is-inview figure,
.js-inview-eachItem[data-inview=list-border].is-inview a {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border].is-inview i {
  opacity: 1;
  transform: translateX(-10px) rotate(45deg);
}
.js-inview-eachItem-fast[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(10px);
}
.js-inview-eachItem-fast[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade] {
  opacity: 0;
  transition: transform 0.8s;
}
.js-inview-eachItem-delay[data-inview=fade].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem-delay[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem-delay[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-inview-all[data-inview=btn] a::before,
.js-inview-all[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn].is-inview a::before,
.js-inview-all[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-all[data-inview=btn-border] a::after,
.js-inview-all[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn-border].is-inview a::after,
.js-inview-all[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

@media (min-width: 1600px) {
  html {
    font-size: 11.4285714286px;
  }
}
@media (min-width: 768px) and (max-width: 1599px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}
html.is-hidden {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}
html * {
  outline: none;
}
html body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 767px) {
  html body {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
html a {
  text-decoration: none;
}
html *,
html *::before,
html *::after {
  box-sizing: border-box;
}
html main {
  overflow: hidden;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html div,
html dl,
html dt,
html dd,
html p {
  padding: 0;
  margin: 0;
}
html ul,
html ol,
html li {
  padding: 0;
  margin: 0;
}
html li {
  list-style: none;
}
html img {
  vertical-align: bottom;
}
html figure {
  padding: 0;
  margin: 0;
}
html input[type=number]::-webkit-outer-spin-button,
html input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
html input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
html .l-main {
  line-height: 1.2;
}
html svg,
html img {
  max-width: 100%;
}
@media (max-width: 767px) {
  html html,
  html body {
    width: 100%;
    height: 100%;
  }
  html h1,
  html h2,
  html h3,
  html h4,
  html h5,
  html h6,
  html div,
  html dl,
  html dt,
  html dd,
  html p {
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  html .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  html [href*="tel:"] {
    pointer-events: none;
  }
  html .sp {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
}
html * {
  color: #3e3838;
}
html figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html figure svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.c-top-inner {
  max-width: 116rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

[id^=c-anchor] {
  margin-top: -13rem;
  padding-top: 13rem;
  pointer-events: none;
}
[id^=c-anchor] > * {
  pointer-events: auto;
}

#form_box {
  margin-top: -13rem;
  padding-top: 13rem;
  pointer-events: none;
}
#form_box > * {
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .c-hover-opacity {
    transition: 0.3s opacity;
  }
  .c-hover-opacity:hover {
    opacity: 0.7;
  }
  .c-hover-scale {
    transition: 0.3s;
  }
  .c-hover-scale:hover {
    transform: scale(1.05);
  }
  .c-hover-scale-small {
    transition: 0.3s;
  }
  .c-hover-scale-small:hover {
    transform: scale(1.02);
  }
  .c-hover-color {
    transition: 0.3s color;
  }
  .c-hover-color span {
    transition: 0.3s background;
  }
  .c-hover-color:hover {
    color: #E03411 !important;
  }
  .c-hover-color:hover span {
    background: #E03411 !important;
  }
}
.c-ttl-hed {
  overflow: hidden;
  padding-top: 17.4rem;
  padding-bottom: 7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
  }
}
.c-ttl-hed * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.c-ttl-hed .wrap > figure {
  width: 18.2rem;
  height: 5rem;
  margin: 0 auto;
}
.c-ttl-hed .wrap hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .wrap hgroup {
    gap: 0.7rem;
    margin-top: 3.1rem;
  }
}
.c-ttl-hed .wrap hgroup div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.c-ttl-hed .wrap hgroup div span {
  background-color: #E03411;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .wrap hgroup div span {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }
}
.c-ttl-hed .wrap hgroup h1 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .wrap hgroup h1 {
    font-size: 3.6rem;
  }
}
.c-ttl-hed .wrap .breadcrumbs-list {
  padding: 0.7rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 5.6rem;
  overflow-y: auto;
}
.c-ttl-hed .wrap .breadcrumbs-list::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .wrap .breadcrumbs-list {
    padding: 0.7rem 0rem;
    margin-top: 3.2rem;
  }
}
.c-ttl-hed .wrap .breadcrumbs-list .breadcrumbs-list-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 calc(50% - 60rem);
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .wrap .breadcrumbs-list .breadcrumbs-list-wrap {
    padding: 0 2rem;
  }
}
.c-ttl-hed .wrap .breadcrumbs-list .breadcrumbs-list-wrap a, .c-ttl-hed .wrap .breadcrumbs-list .breadcrumbs-list-wrap p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0em;
  white-space: nowrap;
}
.c-ttl-hed .wrap .breadcrumbs-list .breadcrumbs-list-wrap a:nth-last-child(-n+2), .c-ttl-hed .wrap .breadcrumbs-list .breadcrumbs-list-wrap p:nth-last-child(-n+2) {
  color: #ccc;
}
.c-ttl-hed .gray-ring {
  width: 25.7rem;
  height: 25.8rem;
  position: absolute;
  top: 1.8rem;
  left: calc(50% - 64.6rem);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .gray-ring {
    width: 11.6rem;
    height: 11.7rem;
    top: 1.4rem;
    left: calc(50% - 22.4rem);
  }
}
.c-ttl-hed .red-ring {
  width: 33.1rem;
  height: 33.1rem;
  position: absolute;
  top: 9.4rem;
  left: calc(50% + 44.2rem);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-ttl-hed .red-ring {
    width: 15rem;
    height: 15rem;
    top: 8.8rem;
    left: calc(50% + 12.5rem);
  }
}

header:first-of-type {
  position: absolute;
  top: 8.4rem;
  left: 10.4rem;
  width: calc(100% - 16.4rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
  opacity: 0;
}
@media (max-width: 767px) {
  header:first-of-type {
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
}
header:first-of-type > a svg {
  width: 26.6rem;
}
@media (max-width: 767px) {
  header:first-of-type > a svg {
    width: 18.2rem;
  }
  header:first-of-type > a svg > path {
    transform: translateX(-8rem);
  }
}
header:first-of-type > nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 4rem;
}
header:first-of-type > nav .box {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}
header:first-of-type > nav .parent-wrap {
  position: relative;
}
@media (max-width: 767px) {
  header:first-of-type > nav .parent-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
header:first-of-type > nav .parent {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 0.7rem;
}
header:first-of-type > nav .parent.alone {
  padding-left: 1.9rem;
}
header:first-of-type > nav .parent .plus {
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  transition: all 0.3s;
}
header:first-of-type > nav .parent .plus span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #E03411;
}
header:first-of-type > nav .parent .plus span:last-of-type {
  transform: translate(-50%, -50%) rotate(90deg);
}
header:first-of-type > nav .parent-wrap:hover .plus {
  transform: rotate(45deg);
}
header:first-of-type > nav .parent-wrap:hover .child-wrap {
  opacity: 1;
  pointer-events: auto;
}
header:first-of-type > nav .child-wrap {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  left: -1.8rem;
  z-index: 10;
  padding-top: 0.5rem;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
header:first-of-type > nav .child-wrap-inner {
  background-color: #333333;
  border-radius: 1rem;
  display: grid;
  padding: 2.4rem;
  gap: 0.3rem;
}
header:first-of-type > nav .child {
  display: block;
  white-space: nowrap;
  color: white;
  font-size: 1.3rem;
}
header:first-of-type > nav > .box:last-child > div:last-child {
  display: grid;
  gap: 0.8rem;
}
header:first-of-type > nav > .box:last-child > div:last-child a {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  background-color: #E44524;
  height: 3.6rem;
  width: 13.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
}

header:nth-of-type(2) {
  position: fixed;
  top: 3rem;
  width: calc(100% - 6rem);
  left: 3rem;
  background-color: rgba(255, 255, 255, 0.91);
  z-index: 9999;
  height: 9rem;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(0, 0, 0, 0.1);
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
body:not(.is-front-page) header:nth-of-type(2) {
  opacity: 1;
  pointer-events: auto;
}
.is-scroll header:nth-of-type(2) {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  header:nth-of-type(2) {
    width: 28.2rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4.8rem;
    top: auto;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    display: block;
  }
}
header:nth-of-type(2) > a svg {
  width: 23rem;
}
header:nth-of-type(2) > div:first-of-type {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type {
    display: block;
    max-height: calc(100svh - 14rem);
    overflow: auto;
  }
}
header:nth-of-type(2) > div:first-of-type > nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav {
    padding-left: 2rem;
    padding-right: 2rem;
    display: none;
    padding-top: 2rem;
  }
}
header:nth-of-type(2) > div:first-of-type > nav .parent-wrap {
  position: relative;
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav .parent-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  header:nth-of-type(2) > div:first-of-type > nav .parent-wrap:nth-of-type(n+2) {
    margin-top: 1.2rem;
  }
}
header:nth-of-type(2) > div:first-of-type > nav .parent {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 0.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav .parent {
    flex-direction: row-reverse;
    justify-content: space-between;
    font-weight: bold;
  }
}
header:nth-of-type(2) > div:first-of-type > nav .parent .plus {
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  transition: all 0.3s;
}
header:nth-of-type(2) > div:first-of-type > nav .parent .plus span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #E03411;
}
header:nth-of-type(2) > div:first-of-type > nav .parent .plus span:last-of-type {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav .parent.is-active .plus {
    transform: rotate(45deg);
  }
}
@media (min-width: 768px) {
  header:nth-of-type(2) > div:first-of-type > nav .parent-wrap:hover .plus {
    transform: rotate(45deg);
  }
}
header:nth-of-type(2) > div:first-of-type > nav .child-wrap {
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  header:nth-of-type(2) > div:first-of-type > nav .child-wrap {
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: -1.8rem;
    z-index: 10;
  }
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav .child-wrap {
    display: none;
  }
}
@media (min-width: 768px) {
  header:nth-of-type(2) > div:first-of-type > nav .parent-wrap:hover .child-wrap {
    opacity: 1;
    pointer-events: auto;
  }
}
header:nth-of-type(2) > div:first-of-type > nav .child-wrap-inner {
  display: grid;
  gap: 0.3rem;
}
@media (min-width: 768px) {
  header:nth-of-type(2) > div:first-of-type > nav .child-wrap-inner {
    background-color: #333333;
    border-radius: 1rem;
    padding: 2.4rem;
  }
}
header:nth-of-type(2) > div:first-of-type > nav .child {
  font-family: "Zen Kaku Gothic New", sans-serif;
  white-space: nowrap;
  color: white;
  font-size: 1.3rem;
  display: grid;
  align-items: center;
  gap: 0.5rem;
  grid-template-columns: 0.6rem auto;
}
@media screen and (min-width: 768px) {
  header:nth-of-type(2) > div:first-of-type > nav .child {
    line-height: 180%;
    letter-spacing: 0em;
  }
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav .child {
    color: #3E3838;
  }
}
header:nth-of-type(2) > div:first-of-type > nav .child span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav .child span {
    background-color: #E03411;
  }
}
header:nth-of-type(2) > div:first-of-type > nav > .sp {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #CCCCCC;
  padding-top: 1rem;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  header:nth-of-type(2) > div:first-of-type > nav > .sp.nmptb {
    border-top: none;
    padding-top: 0rem;
    margin-top: 0rem;
  }
}
header:nth-of-type(2) > div:first-of-type > nav > .sp > div:first-child {
  display: grid;
  font-size: 1.1rem;
  color: #3E3838;
}
header:nth-of-type(2) > div:first-of-type > nav > .sp > div:last-child {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 2rem);
  gap: 0.6rem;
  flex-shrink: 0;
}
header:nth-of-type(2) > div:first-of-type > nav > .sp > div:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
}
header:nth-of-type(2) > div:first-of-type > nav > .sp > div:last-child svg {
  width: 100%;
  overflow: inherit;
}
header:nth-of-type(2) > div:first-of-type > nav > .sp > div:last-child path {
  fill: #E03411;
}
header:nth-of-type(2) > div:first-of-type > .pc {
  display: flex;
  gap: 0.8rem;
}
header:nth-of-type(2) > div:first-of-type > .pc a {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: white;
  background-color: #E44524;
  height: 3.6rem;
  width: 13.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  letter-spacing: 0;
}
header:nth-of-type(2) > .sp {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
header:nth-of-type(2) > .sp > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
header:nth-of-type(2) > .sp > div:first-child a {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background-color: #E44524;
  height: 3.6rem;
  width: 10.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  letter-spacing: 0;
}
header:nth-of-type(2) > .sp .js-drawer-trigger {
  position: relative;
  width: 2.6rem;
  height: 1.2rem;
}
header:nth-of-type(2) > .sp .js-drawer-trigger span {
  height: 2px;
  width: 100%;
  background-color: #3E3838;
  position: absolute;
  transform: translateY(-50%);
  transition: all 0.3s;
}
header:nth-of-type(2) > .sp .js-drawer-trigger span:nth-of-type(1) {
  top: calc(50% + 0.6rem);
}
header:nth-of-type(2) > .sp .js-drawer-trigger span:nth-of-type(2) {
  top: 50%;
}
header:nth-of-type(2) > .sp .js-drawer-trigger span:nth-of-type(3) {
  top: calc(50% - 0.6rem);
}
.is-drawer-active header:nth-of-type(2) > .sp span:nth-of-type(2) {
  opacity: 0;
}
.is-drawer-active header:nth-of-type(2) > .sp span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.is-drawer-active header:nth-of-type(2) > .sp span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

body > div:last-of-type {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(224, 52, 17, 0.9);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.is-drawer-active body > div:last-of-type {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.l-header.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

.l-footer {
  overflow: hidden;
  padding-top: 10rem;
  margin-top: -2rem;
}
.l-footer .s-footer-top {
  padding-bottom: 17rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top {
    padding-bottom: 8.2rem;
  }
}
.l-footer .s-footer-top > img.js-parallax-img {
  position: absolute;
  top: -8rem;
  z-index: 1;
  width: 23rem;
  left: calc(50% - 91rem);
  transform: translateX(50%);
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > img.js-parallax-img {
    width: 21rem;
    left: calc(50% - 3rem);
  }
}
.l-footer .s-footer-top > div:first-of-type {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 27.4rem;
  background: url(../img/common/recruit-bg.png) no-repeat center center/100% 100%;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type {
    padding-top: 4.3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 11.6rem;
  }
}
.l-footer .s-footer-top > div:first-of-type > picture.js-parallax-img {
  position: absolute;
  top: 3rem;
  left: calc(50% + 29rem);
  opacity: 0.6;
  transform: translateX(-50%);
  mix-blend-mode: overlay;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > picture.js-parallax-img {
    display: block;
    top: 18.6rem;
    left: 50%;
    height: auto;
    width: auto;
  }
}
.l-footer .s-footer-top > div:first-of-type > picture.js-parallax-img img {
  width: 95.5rem;
  max-width: -moz-max-content;
  max-width: max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > picture.js-parallax-img img {
    width: 45.5rem;
  }
}
.l-footer .s-footer-top > div:first-of-type > div {
  width: 106rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div {
    width: 100%;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div {
    display: block;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div * {
  color: #fff;
}
.l-footer .s-footer-top > div:first-of-type > div > div .t-box {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div .t-box {
    gap: 1rem;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div .t-box > h2 {
  width: 2.8rem;
  height: auto;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 120%;
  letter-spacing: 0.3em;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div .t-box > h2 {
    width: 2.5rem;
    font-size: 1.3rem;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div .t-box > hgroup .ttl {
  font-size: 5rem;
  line-height: 1.1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div .t-box > hgroup .ttl {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div .t-box > hgroup p {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div .t-box > hgroup p {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem {
    margin-top: 2rem;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:first-of-type {
    flex-wrap: wrap;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 0;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:first-of-type a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:first-of-type a span {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 9999px;
  border: 0.3rem solid #fff;
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:first-of-type a h3 {
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:first-of-type a h3 {
    font-size: 1.4rem;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type {
  display: grid;
  grid-template-columns: repeat(2, 28rem);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type {
    grid-template-columns: 1fr;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type a {
  position: relative;
  font-family: Ubuntu, "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type a {
    transition-duration: 0.3s;
  }
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type a {
    height: 7rem;
    font-size: 2rem;
    padding-left: 2rem;
    padding-right: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type a span {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 0.6rem solid #fff;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:first-of-type > div > div > div.js-inview-eachItem > div:last-of-type a span {
    position: static;
    transform: translateY(0);
  }
}
.l-footer .s-footer-top > div:last-of-type {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}
.l-footer .s-footer-top > div:last-of-type .js-recruit-swiper {
  width: 100%;
  overflow: hidden;
}
.l-footer .s-footer-top > div:last-of-type .js-recruit-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}
.l-footer .s-footer-top > div:last-of-type .js-recruit-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:last-of-type .js-recruit-swiper .swiper-slide {
    padding: 0 1rem;
  }
}
.l-footer .s-footer-top > div:last-of-type .js-recruit-swiper .swiper-slide img {
  width: 54rem;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}
@media (max-width: 767px) {
  .l-footer .s-footer-top > div:last-of-type .js-recruit-swiper .swiper-slide img {
    width: 25rem;
  }
}
.l-footer > .rel-b {
  position: relative;
}
.l-footer > .rel-b > .c-top-inner {
  padding-bottom: 4rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner {
    padding-bottom: 2rem;
    margin-top: 4rem;
  }
}
.l-footer > .rel-b > .c-top-inner > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div {
    display: grid;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:first-child {
    display: contents;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:first-child > a {
  display: inline-flex;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:first-child > a {
    order: 1;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:first-child > a svg {
  width: 26.6rem;
}
.l-footer > .rel-b > .c-top-inner > div > div:first-child > p {
  margin-top: 3.4rem;
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:first-child > p {
    margin-top: 2.4rem;
    order: 3;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:first-child > div:last-child {
  display: grid;
  grid-template-columns: 2.2rem 2.2rem;
  gap: 1.3rem;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:first-child > div:last-child {
    order: 4;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:first-child > div:last-child svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer > .rel-b > .c-top-inner > div > div:first-child > div:last-child svg path {
  fill: #E03411;
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child {
  display: grid;
  grid-template-columns: 1fr 15.2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: end;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:last-child {
    display: contents;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:last-child > nav {
    display: grid;
    gap: 1.6rem;
    order: 2;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .box {
  display: grid;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .box {
    gap: 1.6rem;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .box * {
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .parent-wrap {
  position: relative;
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .parent {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  align-items: flex-start;
  font-size: 1.5rem;
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .child-wrap {
  margin-top: 0.5rem;
  display: grid;
}
@media screen and (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .child-wrap {
    gap: 0.8rem;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .child {
  font-size: 1.3rem;
  display: inline-grid;
  grid-template-columns: 0.8rem auto;
  align-items: center;
  gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .child {
    line-height: 180%;
  }
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child > nav .child::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E44524;
}
.l-footer > .rel-b > .c-top-inner > div > div:last-child .kamoru-box {
  width: 15.2rem;
  height: 23.6rem;
}
@media (max-width: 767px) {
  .l-footer > .rel-b > .c-top-inner > div > div:last-child .kamoru-box {
    width: 14rem;
    height: 20.2rem;
    position: absolute;
    right: 1rem;
    bottom: 5rem;
  }
}
.l-footer > div:last-child {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #CCCCCC;
}
@media (max-width: 767px) {
  .l-footer > div:last-child {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-footer > div:last-child > .c-top-inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer > div:last-child > .c-top-inner > div {
    display: grid;
    gap: 0.5rem;
  }
}
.l-footer > div:last-child > .c-top-inner > div * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-footer > div:last-child > .c-top-inner > div > p {
  color: #3E3838;
  font-size: 1.1rem;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .l-footer > div:last-child > .c-top-inner > div > p {
    order: 2;
    text-align: center;
  }
}
.l-footer > div:last-child > .c-top-inner > div > div {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .l-footer > div:last-child > .c-top-inner > div > div {
    order: 1;
  }
}

.p-a-recruit * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-a-recruit .l-main .archive-inner {
  width: 116rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner {
    padding: 0 2rem;
    width: 100%;
  }
}
.p-a-recruit .l-main .archive-inner .type-section {
  width: 100%;
}
.p-a-recruit .l-main .archive-inner .type-section .type-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
  color: #E03411;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner .type-section .type-ttl {
    font-size: 3.2rem;
    text-align: center;
  }
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner .type-section .emeployment-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-top: 2rem;
  }
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item .ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
  padding-left: 2.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item .ttl {
    font-size: 2rem;
  }
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item .ttl::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 0.2rem;
  background-color: #E03411;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul {
    margin-top: 1.6rem;
    gap: 0.8rem;
  }
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul li a {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 4.8rem;
  border-radius: 0.5rem;
  border: 1px solid #E03411;
  padding: 1.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul li a {
    min-height: 4.4rem;
    padding: 1.2rem 2rem;
  }
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul li a p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul li a p {
    font-size: 1.4rem;
  }
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul li a .circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #E03411;
  position: relative;
}
.p-a-recruit .l-main .archive-inner .type-section .emeployment-list .emeployment-item ul li a .circle::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.p-s-recruit * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-s-recruit .g-border-section {
  border: 0.4rem solid #eee;
  border-radius: 0.4rem;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .g-border-section {
    padding: 3rem 2rem;
  }
}
.p-s-recruit .gray-bg-section {
  background-color: #eee;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .gray-bg-section {
    padding: 2rem;
    padding-bottom: 3rem;
  }
}
.p-s-recruit .nm-wise {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.p-s-recruit .nm-wise--gray {
  background-color: #eee;
}
.p-s-recruit .nm-wise--gray > section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .nm-wise--gray > section {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-s-recruit .nm-wise--white {
  padding: 0 2rem;
}
.p-s-recruit .nm-wise--white > section {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .nm-wise--white > section {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-s-recruit .nm-wise .c-section-ttl {
    font-size: 2.8rem;
  }
}
.p-s-recruit .all-text-box .c-nomal-txt {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .all-text-box .c-nomal-txt {
    margin-top: 1.6rem;
  }
}
.p-s-recruit .all-text-box .c-entry-btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .all-text-box .c-entry-btn {
    margin-top: 3rem;
  }
}
.p-s-recruit .img-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .img-list {
    margin-top: 2rem;
  }
}
.p-s-recruit .img-list .img-list__item {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .img-list .img-list__item {
    flex-direction: column;
    gap: 0rem;
  }
}
.p-s-recruit .img-list .img-list__item figure {
  width: 36rem;
  height: 20.8rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .img-list .img-list__item figure {
    width: 100%;
    height: auto;
    aspect-ratio: 360/208;
  }
}
.p-s-recruit .img-list .img-list__item .text-box .c-heading-bttl {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .img-list .img-list__item .text-box .c-heading-bttl {
    margin-top: 1.6rem;
  }
}
.p-s-recruit .img-list .img-list__item .text-box .c-nomal-txt {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .img-list .img-list__item .text-box .c-nomal-txt {
    font-size: 1.4rem;
  }
}
.p-s-recruit .img-list:not(:has(h3)) .img-list__item {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-s-recruit .img-list:not(:has(h3)) .img-list__item .c-nomal-txt {
    margin: 0 !important;
  }
}
.p-s-recruit .entryflow-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 4rem;
  counter-reset: entryflow;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list {
    margin-top: 2.6rem;
  }
}
.p-s-recruit .entryflow-list li {
  background-color: #fff;
  display: flex;
}
.p-s-recruit .entryflow-list li:nth-last-child(1) .ttl::before {
  display: none;
}
.p-s-recruit .entryflow-list li .ttl {
  background-color: #E03411;
  width: 6rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .ttl {
    width: 5rem;
    flex-shrink: 0;
  }
}
.p-s-recruit .entryflow-list li .ttl::before {
  content: "";
  width: 0.2rem;
  height: 100%;
  background-color: #E03411;
  position: absolute;
  transform: translateX(-50%);
  bottom: -50%;
  left: 50%;
}
.p-s-recruit .entryflow-list li .ttl p {
  font-size: 1.4rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #fff;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .ttl p {
    font-size: 1.3rem;
  }
}
.p-s-recruit .entryflow-list li .ttl p::before {
  counter-increment: entryflow;
  content: counter(entryflow, decimal-leading-zero) "";
  font-size: 1.4rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #fff;
  position: absolute;
  transform: translateX(-50%);
  bottom: calc(-100% - 0.4rem);
  left: 50%;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .ttl p::before {
    font-size: 1.3rem;
  }
}
.p-s-recruit .entryflow-list li .content {
  width: 100%;
  padding: 2.8rem 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .content {
    padding: 1.6rem 3rem;
    gap: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .content .c-heading-rttl {
    font-weight: 500;
  }
}
.p-s-recruit .entryflow-list li .content p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .content p {
    font-size: 1.4rem;
  }
}
.p-s-recruit .entryflow-list li .content p a {
  color: #E03411;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.p-s-recruit .entryflow-list li .content p span {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .content p span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .content p:has(span) {
    font-size: 1.2rem;
  }
}
.p-s-recruit .entryflow-list li .content > span {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .entryflow-list li .content > span {
    font-size: 1rem;
    margin-top: 0.9rem;
  }
}
.p-s-recruit .s-form .about-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-s-recruit .s-form .about-link a {
  width: 28rem;
  height: 6rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E03411;
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .about-link a {
    margin-top: 1.8rem;
  }
}
.p-s-recruit .s-form .about-link a p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .about-link a p {
    font-size: 1.6rem;
  }
}
.p-s-recruit .s-form .about-link a .circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1.5rem;
}
.p-s-recruit .s-form .about-link a .circle::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  background-color: #E03411;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.p-s-recruit .s-form .s-form__inner {
  border: 0.4rem solid #eee;
  border-radius: 0.5rem;
  background-color: #F9F9F9;
  padding: 5rem 10rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner {
    padding: 5rem 2rem;
    margin-top: 4rem;
  }
}
.p-s-recruit .s-form .s-form__inner > .c-nomal-txt {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner > .c-nomal-txt {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 2.6rem;
  }
}
.p-s-recruit .s-form .s-form__inner .form-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  margin-top: 13.6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .form-content {
    margin-top: 16.5rem;
    gap: 2rem;
  }
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .form-content .form-content__item {
    gap: 1rem;
  }
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > p {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > p sup {
  color: #E03411;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > p span {
  font-size: 1.3rem;
  font-weight: 500;
  margin-left: 0.4rem;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > div {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > div.gone {
  gap: 1rem;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > div label {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  cursor: pointer;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item > div label span {
  font-size: 1.5rem;
  font-weight: 500;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input {
  font-size: 1.5rem;
  font-weight: 500;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input:not(.radio-input) {
  box-sizing: border-box;
  width: 100%;
  padding: 0.8rem;
  line-height: 1.2;
  border: 1px solid #ccc;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input:not(.radio-input)::-moz-placeholder {
  font-size: 1.5rem;
  font-weight: 500;
  color: #939AA5;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input:not(.radio-input)::placeholder {
  font-size: 1.5rem;
  font-weight: 500;
  color: #939AA5;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.radio-input {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  cursor: pointer;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.radio-input::before, .p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.radio-input::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.radio-input::before {
  width: 0.8rem;
  height: 0.8rem;
  background: #000;
  border: none;
  opacity: 0;
  z-index: 1;
  left: 0.6rem;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.radio-input::after {
  width: 2rem;
  height: 2rem;
  background: #fff;
  border: 1px solid #ccc;
  left: 0;
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.radio-input:checked::before {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.date-input {
    width: 100%;
    align-self: center;
  }
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.zip-input {
  width: 36.5rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .form-content .form-content__item input.zip-input {
    width: 100%;
  }
}
.p-s-recruit .s-form .s-form__inner .form-content .form-content__item .other-input {
  width: 100%;
  height: 14.8rem;
  padding: 0.8rem;
  line-height: 1.2;
  border: 1px solid #ccc;
  font-size: 1.5rem;
  font-weight: 500;
}
.p-s-recruit .s-form .s-form__inner .form-content .note-text {
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  left: -0.2rem;
  top: -6.4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .form-content .note-text {
    left: 0;
    top: -4.4rem;
  }
}
.p-s-recruit .s-form .s-form__inner .form-content .note-text sup {
  color: #E03411;
}
.p-s-recruit .s-form .s-form__inner .form-content .step-img {
  width: 17.4rem;
  height: 6.1rem;
  position: absolute;
  transform: translateX(-50%);
  top: -10.1rem;
  left: 50.1%;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .form-content .step-img {
    width: 17.4rem;
    height: 6.1rem;
    top: -12.5rem;
  }
}
.p-s-recruit .s-form .s-form__inner .checkbox-label {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .checkbox-label {
    margin-top: 5rem;
  }
}
.p-s-recruit .s-form .s-form__inner .checkbox-label span {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-s-recruit .s-form .s-form__inner .checkbox-label span a {
  color: #E03411;
  text-decoration: underline;
}
.p-s-recruit .s-form .s-form__inner .submit-btn {
  background-color: #E03411;
  border: 0rem solid #E03411;
  width: 21.3rem;
  height: 5.3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-form .s-form__inner .submit-btn {
    font-size: 1.4rem;
    width: 20rem;
    height: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-s-recruit .s-form .s-form__inner .submit-btn:hover {
    background-color: #666;
  }
}
.p-s-recruit .s-form .error {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #DC3232;
}
.p-s-recruit .beginner-ttl-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .beginner-ttl-box {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
  }
}
.p-s-recruit .beginner-ttl-box > figure {
  width: 2.5rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .beginner-ttl-box > figure {
    width: 1.8rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-s-recruit .beginner-ttl-box > .c-section-ttl {
    font-size: 2.8rem;
  }
}
.p-s-recruit .c-section-ttl {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0em;
  color: #E03411;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-section-ttl {
    font-size: 3.2rem;
    padding-bottom: 0.4rem;
  }
}
.p-s-recruit .c-heading-rttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  color: #E03411;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-heading-rttl {
    font-size: 2rem;
  }
}
.p-s-recruit .c-heading-bttl {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-heading-bttl {
    font-size: 2rem;
    margin-top: 1.6rem;
  }
}
.p-s-recruit .c-nomal-txt {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-nomal-txt {
    font-size: 1.4rem;
  }
}
.p-s-recruit .c-entry-btn {
  background-color: #E03411;
  width: 47rem;
  height: 11.3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-entry-btn {
    width: 100%;
    height: auto;
    aspect-ratio: 360/91;
  }
}
.p-s-recruit .c-entry-btn .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 6.6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-entry-btn .text-box {
    margin-right: 4.5rem;
  }
}
.p-s-recruit .c-entry-btn .text-box span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-entry-btn .text-box span {
    font-size: 1.4rem;
  }
}
.p-s-recruit .c-entry-btn .text-box p {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-entry-btn .text-box p {
    font-size: 2.4rem;
  }
}
.p-s-recruit .c-entry-btn .circle {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-entry-btn .circle {
    width: 2.6rem;
    height: 2.6rem;
    right: 4.1rem;
  }
}
.p-s-recruit .c-entry-btn .circle::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 9999px;
  background-color: #E03411;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .c-entry-btn .circle::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.p-s-recruit .s-mv .s-mv__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-s-recruit .s-mv .s-mv__ttl .top {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.p-s-recruit .s-mv .s-mv__ttl .top span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.04em;
  padding: 0rem 0.8rem;
  border: 0.2rem solid #E03411;
  color: #E03411;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__ttl .top span {
    font-size: 1.4rem;
  }
}
.p-s-recruit .s-mv .s-mv__ttl .top p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__ttl .top p {
    font-size: 1.6rem;
  }
}
.p-s-recruit .s-mv .s-mv__ttl .center {
  font-size: 4rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__ttl .center {
    font-size: 3.2rem;
    line-height: 130%;
    margin-top: 1rem;
  }
}
.p-s-recruit .s-mv .s-mv__ttl .bottom {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__ttl .bottom {
    margin-top: 1.8rem;
  }
}
.p-s-recruit .s-mv .s-mv__ttl .bottom li {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0em;
  color: #fff;
  background-color: #E03411;
  border-radius: 9999px;
  padding: 0.4rem 1.3rem;
}
.p-s-recruit .s-mv .s-mv__inner {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner {
    margin-top: 3rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer {
  position: relative;
  margin: 0 2rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer {
    margin: 0 0.5rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide:nth-child(n+2) {
  opacity: 0;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide > figure {
  width: 100%;
  height: auto;
  aspect-ratio: 90/52;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide > figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide > figure iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide > p {
  opacity: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0em;
  color: #3E3838;
  transition: 0.3s all;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide > p {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box {
  width: calc(100% + 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 24rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box {
    width: calc(100% + 3rem);
    top: 8rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button {
  position: absolute;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  border: 1px solid #E44524;
  background: #E44524;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button {
    width: 3.1rem;
    height: 3.1rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button * {
  transition: 0.3s all;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button svg {
  width: 1rem;
  height: 1.8rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button svg {
    width: 0.7rem;
    height: 1.3rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button svg * {
  stroke: #fff;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button-next svg {
  transform: translate(-50%, -50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button:hover {
    background-color: #fff;
  }
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-button-box .mv-swiper-button:hover svg * {
    stroke: #E44524;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-pagination {
    gap: 1rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-pagination .swiper-pagination-bullet {
  width: 3.6rem;
  height: 0.4rem;
  border-radius: 9999px;
  background-color: #B5B5B5;
  margin: 0;
  opacity: 0.7;
  pointer-events: none;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-pagination .swiper-pagination-bullet {
    width: 3rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .mv-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E44524;
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .swiper-scrollbar {
  position: absolute;
  display: block;
  background-color: #D9D9D9;
  width: 104rem;
  height: 2px;
  transform: translateY(50%);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .s-mv .s-mv__inner .mv-outer .swiper-scrollbar {
    width: 27.2rem;
  }
}
.p-s-recruit .s-mv .s-mv__inner .mv-outer .swiper-scrollbar span {
  transition: 0.3s all;
  display: block;
  height: 2px;
  background-color: #1F44A2;
  max-width: 100%;
}
.p-s-recruit .anchor-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .anchor-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
.p-s-recruit .anchor-list li a {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6rem;
  border-radius: 0.5rem;
  border: 1px solid #E03411;
  padding: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .anchor-list li a {
    padding: 1.8rem 1rem;
    min-height: 5.6rem;
    justify-content: flex-start;
  }
}
.p-s-recruit .anchor-list li a p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0em;
  color: #E44524;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .anchor-list li a p {
    font-size: 1.4rem;
    margin-right: 0rem;
  }
}
.p-s-recruit .anchor-list li a .circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #E03411;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .anchor-list li a .circle {
    width: 1.6rem;
    height: 1.6rem;
    right: 1.2rem;
  }
}
.p-s-recruit .anchor-list li a .circle::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.p-s-recruit .annual-income {
  width: -moz-fit-content;
  width: fit-content;
  height: 4rem;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.2rem solid #E03411;
  margin: 0 auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .annual-income {
    margin-top: 3rem;
  }
}
.p-s-recruit .annual-income dt, .p-s-recruit .annual-income dd {
  height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.04em;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
.p-s-recruit .annual-income dt {
  background-color: #E03411;
  color: #fff;
}
.p-s-recruit .annual-income dd {
  background-color: #fff;
  color: #3E3838;
}
.p-s-recruit .continuation-outer .continuation-wrap {
  position: relative;
}
.p-s-recruit .continuation-outer .continuation-wrap:before {
  content: "";
  width: 100%;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #fff 80%);
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  z-index: 1;
  transition: 0.3s all;
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list {
  max-height: 35.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 4rem;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list {
    max-height: 34rem;
    gap: 1.5rem;
    margin-top: 2.4rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li {
  display: flex;
  align-items: flex-start;
  gap: 3.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list li {
    gap: 1rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li::before {
  content: "";
  width: 1px;
  height: calc(100% + 3.3rem);
  background-color: #E03411;
  position: absolute;
  top: 1rem;
  left: calc(50% - 14.3rem);
  transform: translateX(-50%);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list li::before {
    height: calc(100% + 1.3rem);
    left: calc(50% - 3.9rem);
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li:nth-last-child(1)::before {
  display: none;
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li > figure {
  width: 22rem;
  height: 12.7rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list li > figure {
    width: 10rem;
    height: 5.8rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box {
  padding-left: 1.8rem;
  position: relative;
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .hexagonal {
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.6rem;
  left: 0;
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .date {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  color: #E03411;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .date {
    font-size: 1.6rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .ttl {
    font-size: 1.6rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .txt {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .flow-list li .text-box .txt {
    font-style: 1.4rem;
  }
}
.p-s-recruit .continuation-outer .continuation-btn {
  background-color: #E03411;
  width: 9rem;
  border-radius: 9999px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 5rem;
  transition: 0.3s all;
}
.p-s-recruit .continuation-outer .continuation-btn * {
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-btn {
    margin-top: 2.4rem;
  }
}
.p-s-recruit .continuation-outer .continuation-btn .circle {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0.6rem;
}
.p-s-recruit .continuation-outer .continuation-btn p {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0em;
  color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 53%;
  transition: 0.3s all;
}
.p-s-recruit .continuation-outer .continuation-btn p.p-open {
  opacity: 1;
}
.p-s-recruit .continuation-outer .continuation-btn p.p-close {
  opacity: 0;
}
.p-s-recruit .continuation-outer .continuation-btn:hover {
  background-color: #fff;
}
.p-s-recruit .continuation-outer .continuation-btn:hover .circle {
  background-color: #E03411;
}
.p-s-recruit .continuation-outer .continuation-btn:hover p {
  color: #E03411;
}
.p-s-recruit .continuation-outer.is-open .continuation-wrap::before {
  opacity: 0;
}
.p-s-recruit .continuation-outer.is-open .continuation-wrap .flow-list {
  max-height: 100%;
}
.p-s-recruit .continuation-outer.is-open .continuation-btn p.p-open {
  opacity: 0;
}
.p-s-recruit .continuation-outer.is-open .continuation-btn p.p-close {
  opacity: 1;
}
.p-s-recruit .continuation-outer .continuation-wrap {
  position: relative;
}
.p-s-recruit .continuation-outer .continuation-wrap:before {
  content: "";
  width: 100%;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #fff 80%);
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  z-index: 1;
  transition: 0.3s all;
}
.p-s-recruit .continuation-outer .continuation-wrap .detail-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-height: 35.4rem;
  overflow: hidden;
  margin-top: 4rem;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .detail-list {
    gap: 2rem;
    margin-top: 3.2rem;
    max-height: 32.4rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .detail-list li {
    flex-direction: column;
    padding-top: 2rem;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .detail-list li .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.04em;
  color: #E44524;
  width: 16rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-wrap .detail-list li .ttl {
    width: auto;
  }
}
.p-s-recruit .continuation-outer .continuation-wrap .detail-list li .txt {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0em;
  width: 100%;
}
.p-s-recruit .continuation-outer .continuation-btn {
  position: relative;
  background-color: #E03411;
  border: 0.1rem solid #E03411;
  width: 9rem;
  height: 3rem;
  border-radius: 9999px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 5rem;
  transition: 0.3s all;
}
.p-s-recruit .continuation-outer .continuation-btn * {
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .continuation-outer .continuation-btn {
    margin-top: 2.4rem;
  }
}
.p-s-recruit .continuation-outer .continuation-btn .circle {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background-color: #fff;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0.6rem;
}
.p-s-recruit .continuation-outer .continuation-btn p {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0em;
  color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 53%;
  transition: 0.3s all;
}
.p-s-recruit .continuation-outer .continuation-btn p.p-open {
  opacity: 1;
}
.p-s-recruit .continuation-outer .continuation-btn p.p-close {
  opacity: 0;
}
.p-s-recruit .continuation-outer .continuation-btn:hover {
  background-color: #fff;
}
.p-s-recruit .continuation-outer .continuation-btn:hover .circle {
  background-color: #E03411;
}
.p-s-recruit .continuation-outer .continuation-btn:hover p {
  color: #E03411;
}
.p-s-recruit .continuation-outer.is-open .continuation-wrap::before {
  opacity: 0;
}
.p-s-recruit .continuation-outer.is-open .continuation-wrap .detail-list {
  max-height: 100%;
}
.p-s-recruit .continuation-outer.is-open .continuation-btn p.p-open {
  opacity: 0;
}
.p-s-recruit .continuation-outer.is-open .continuation-btn p.p-close {
  opacity: 1;
}
.p-s-recruit .sns-list {
  width: 76.8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-s-recruit .sns-list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list {
    display: grid;
    width: 24rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-s-recruit .sns-list li {
    width: 24rem;
  }
}
.p-s-recruit .sns-list li > p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #E44524;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list li > p {
    font-size: 1.3rem;
  }
}
.p-s-recruit .sns-list li a {
  width: 100%;
  height: 6rem;
  border-radius: 0.5rem;
  border: 0.2rem solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list li a {
    margin-top: 0.8rem;
    height: 5rem;
  }
}
.p-s-recruit .sns-list li a figure {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 1.4rem;
}
.p-s-recruit .sns-list li a figure.inst {
  width: 3.4rem;
  height: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list li a figure.inst {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.p-s-recruit .sns-list li a figure.x {
  width: 3.7rem;
  height: 3.3rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list li a figure.x {
    width: 2.5rem;
    height: 2.2rem;
  }
}
.p-s-recruit .sns-list li a figure.tik-tok {
  width: 3rem;
  height: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list li a figure.tik-tok {
    width: 2.4rem;
    height: 2.7rem;
  }
}
.p-s-recruit .sns-list li a p {
  font-size: 1.8rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .sns-list li a p {
    font-size: 1.6rem;
  }
}
.p-s-recruit .l-main .single-inner {
  width: 90rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-s-recruit .l-main .single-inner {
    width: 100%;
    padding: 2rem;
  }
}
.p-s-recruit .l-main .single-inner .s-message {
  margin-top: 6rem;
}

.form-confirm {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 16rem;
}
.form-confirm * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .form-confirm {
    margin-top: 12rem;
    gap: 2.7rem;
  }
}
.form-confirm .form-confirm__item {
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .form-confirm .form-confirm__item {
    gap: 1rem;
    flex-direction: column;
  }
}
.form-confirm .form-confirm__item > p, .form-confirm .form-confirm__item h4 {
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form-confirm .form-confirm__item > p, .form-confirm .form-confirm__item h4 {
    font-size: 1.4rem;
  }
}
.form-confirm .form-confirm__item > p sup, .form-confirm .form-confirm__item h4 sup {
  color: #E03411;
}
.form-confirm .form-confirm__item > p span, .form-confirm .form-confirm__item h4 span {
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form-confirm .form-confirm__item > p span, .form-confirm .form-confirm__item h4 span {
    font-size: 1.4rem;
  }
}
.form-confirm .form-confirm__item > p {
  min-width: 18rem;
}
.form-confirm .form-confirm__item > div {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.form-confirm .form-confirm__item > div.gone {
  gap: 1rem;
}
.form-confirm .form-confirm__item > div label {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  cursor: pointer;
}
.form-confirm .form-confirm__item > div label span {
  font-size: 1.5rem;
  font-weight: 500;
}
.form-confirm .form-confirm__item input {
  font-size: 1.5rem;
  font-weight: 500;
}
.form-confirm .form-confirm__item input:not(.radio-input) {
  box-sizing: border-box;
  width: 100%;
  padding: 0.8rem;
  line-height: 1.2;
  border: 1px solid #ccc;
}
.form-confirm .form-confirm__item input:not(.radio-input)::-moz-placeholder {
  font-size: 1.5rem;
  font-weight: 500;
  color: #939AA5;
}
.form-confirm .form-confirm__item input:not(.radio-input)::placeholder {
  font-size: 1.5rem;
  font-weight: 500;
  color: #939AA5;
}
.form-confirm .form-confirm__item input.radio-input {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  cursor: pointer;
}
.form-confirm .form-confirm__item input.radio-input::before, .form-confirm .form-confirm__item input.radio-input::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}
.form-confirm .form-confirm__item input.radio-input::before {
  width: 0.8rem;
  height: 0.8rem;
  background: #000;
  border: none;
  opacity: 0;
  z-index: 1;
  left: 0.6rem;
}
.form-confirm .form-confirm__item input.radio-input::after {
  width: 2rem;
  height: 2rem;
  background: #fff;
  border: 1px solid #ccc;
  left: 0;
}
.form-confirm .form-confirm__item input.radio-input:checked::before {
  opacity: 1;
}
.form-confirm .form-confirm__item input.zip-input {
  width: 36.5rem;
}
.form-confirm .form-confirm__item .other-input {
  width: 100%;
  height: 14.8rem;
  padding: 0.8rem;
  line-height: 1.2;
  border: 1px solid #ccc;
  font-size: 1.5rem;
  font-weight: 500;
}
.form-confirm .note-text {
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  left: -0.2rem;
  top: -6.4rem;
}
@media screen and (max-width: 767px) {
  .form-confirm .note-text {
    left: 0;
    top: -4.4rem;
  }
}
.form-confirm .note-text sup {
  color: #E03411;
}
.form-confirm .step-img {
  width: 17.4rem;
  height: 6.1rem;
  position: absolute;
  transform: translateX(-50%);
  top: -12rem;
  left: 50.1%;
}
@media screen and (max-width: 767px) {
  .form-confirm .step-img {
    width: 17.4rem;
    height: 6.1rem;
    top: -9.5rem;
  }
}

.bnbtn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .bnbtn-box {
    gap: 1rem;
    margin-top: 7rem;
  }
}
.bnbtn-box .bn-btn {
  width: 21.3rem;
  height: 5.3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .bnbtn-box .bn-btn {
    width: 100%;
  }
}
.bnbtn-box .bn-btn.back {
  background-color: #a3a3a3;
  color: #666;
  border: 0rem solid #636771;
}
.bnbtn-box .bn-btn.next {
  background-color: #E03411;
  border: 0rem solid #E03411;
}
@media screen and (min-width: 768px) {
  .bnbtn-box .bn-btn.next:hover {
    background-color: #666;
  }
}
.bnbtn-box .bn-btn * {
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .bnbtn-box .bn-btn {
    font-size: 1.4rem;
    width: 20rem;
    height: 5rem;
  }
}

.thanks-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .thanks-wrap {
    width: 100%;
    padding: 0 2rem;
    margin-top: 4rem;
  }
}
.thanks-wrap * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.thanks-wrap figure {
  width: 20rem;
  height: auto;
  aspect-ratio: 17.4/6.1;
}
@media screen and (max-width: 767px) {
  .thanks-wrap figure {
    width: 17rem;
  }
}
.thanks-wrap h4 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .thanks-wrap h4 {
    align-self: flex-start;
  }
}
.thanks-wrap > p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .thanks-wrap > p {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 2.6rem;
  }
}
.thanks-wrap a {
  position: relative;
  width: 18rem;
  height: 6rem;
  border-radius: 0.3em;
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding: 1em 1em;
  background: #E44524;
  color: #E44524;
  border: 1px solid #E44524;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .thanks-wrap a {
    width: 15rem;
    height: 5rem;
  }
}
.thanks-wrap a::after {
  background: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.thanks-wrap a figure {
  width: 1.3rem;
  height: 1.4rem;
}
.thanks-wrap a p, .thanks-wrap a figure, .thanks-wrap a svg * {
  color: #fff;
  fill: #fff;
  position: relative;
  z-index: 2;
  transition: 0.3s all;
}
.thanks-wrap a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.thanks-wrap a:hover p, .thanks-wrap a:hover figure, .thanks-wrap a:hover svg * {
  color: #E44524;
  fill: #E44524;
}/*# sourceMappingURL=style.css.map */