@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 6.4102564103px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.2820512821vw;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
  color: #261d1d;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #261d1d;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object, picture, svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
html, body {
  min-height: 100vh;
}

body {
  background: #fff;
  color: #261d1d;
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
}

main {
  flex: 1 1 auto;
  padding-top: 60px;
}

.wrap {
  width: 90%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 2.4rem;
  line-height: 1.8;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.bold, strong {
  font-weight: bold;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

@media screen and (min-width: 768px) {
  html {
    background: #e6e6e6 url("../img/bg_pc@2x.png") no-repeat center top/1800px auto;
    background-attachment: fixed;
  }
  body {
    width: 500px;
    margin: 0 auto;
  }
  .fade {
    transition: opacity 0.3s ease;
  }
  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }
  .is-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
/* ------------------------------
    header
------------------------------ */
#header,
#header .wrap,
#header .logo_wrap {
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  #header,
  #header .wrap,
  #header .logo_wrap {
    width: 500px;
  }
}

#header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  #header {
    left: 50%;
    translate: -50% 0;
  }
}
#header .wrap {
  padding: 0;
  display: block;
  position: relative;
  min-width: inherit;
}
#header .logo_wrap {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  z-index: 999;
  padding: 0;
}
#header .logo_wrap .logo {
  padding-left: 15px;
}
#header .logo_wrap .logo img {
  width: 70px;
  height: auto;
}
#header .logo_wrap .career {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  font-size: 18px;
  font-weight: 500;
}
#header .menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  z-index: 999;
}
#header .menu-trigger .ico {
  width: 35px;
  height: 25px;
  position: relative;
}
#header .menu-trigger .ico span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f15a22;
}
#header .menu-trigger .ico span:nth-of-type(1) {
  top: 15%;
}
#header .menu-trigger .ico span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .menu-trigger .ico span:nth-of-type(3) {
  bottom: 15%;
}
#header #header_nav {
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 60px;
  overflow-y: auto;
  max-height: calc(100% - 60px);
  transform: translateY(-100%);
  transition: transform 0.3s, opacity 1s;
  z-index: 998;
}
@media screen and (min-width: 768px) {
  #header #header_nav {
    width: 500px;
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    left: 50%;
    translate: -50% 0;
  }
}
#header #header_nav .inner {
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 3rem 3rem 10rem;
}
#header #header_nav .inner .nav li a {
  display: block;
  position: relative;
  padding: 3rem 0;
}
#header #header_nav .inner .nav li a::before {
  content: "";
  background: #f15a22 url("../img/ico_arrow.svg") no-repeat center/20% auto;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 100%;
}
#header #header_nav .inner .nav li .en {
  display: block;
  color: #f15a22;
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 600;
}
#header #header_nav .inner .nav li .ja {
  font-size: 2.4rem;
  font-weight: 500;
}
#header #header_nav .inner .nav li + li {
  border-top: 2px solid #f15a22;
}
#header #header_nav .inner .btn_wrap {
  margin: 2rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#header #header_nav .inner .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}
#header #header_nav .inner .sns .item a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header #header_nav .inner .sns .item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header.is-open .menu-trigger .ico span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
#header.is-open .menu-trigger .ico span:nth-of-type(2) {
  opacity: 0;
}
#header.is-open .menu-trigger .ico span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(25deg);
}
#header.is-open #header_nav {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s, opacity 0s;
}

/* ------------------------------
    footer
------------------------------ */
#footer {
  padding: 8rem 0;
  text-align: center;
}
#footer .logo img {
  width: 32rem;
}
#footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
  margin: 8rem 0;
}
#footer .sns .item a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .sns .item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#footer .copy {
  margin-top: 8rem;
  font-size: 2.1rem;
  font-weight: 600;
}
#floating_nav + #footer {
  margin-bottom: 15rem;
}

#floating_nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 15rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 900;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
#floating_nav.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  #floating_nav {
    width: 500px;
  }
}
#floating_nav .inner {
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}
#floating_nav .inner .btn a {
  width: 100%;
  height: 9.6rem;
  box-shadow: none;
  font-size: 3rem;
  font-weight: 600;
  padding-right: 1.5em;
}
#floating_nav .inner .btn a::before {
  width: 6rem;
  height: 6rem;
  rotate: 90deg;
}

/* ------------------------------
    main
------------------------------ */
.btn_arrow {
  text-align: center;
}
.btn_arrow a, .btn_arrow p, .btn_arrow button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 58rem;
  height: 12rem;
  background: #003cff;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn_arrow a, .btn_arrow p, .btn_arrow button {
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
  }
  .btn_arrow a:hover, .btn_arrow p:hover, .btn_arrow button:hover {
    opacity: 0.6;
    box-shadow: none;
    cursor: pointer;
  }
}
.btn_arrow a::before, .btn_arrow p::before, .btn_arrow button::before {
  content: "";
  background: rgba(255, 255, 255, 0.5) url("../img/ico_arrow.svg") no-repeat left 55% center/16% auto;
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 100%;
}
.btn_arrow a .en, .btn_arrow p .en, .btn_arrow button .en {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.btn_arrow a .ja, .btn_arrow p .ja, .btn_arrow button .ja {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 600;
}
.btn_arrow a .ja._big, .btn_arrow p .ja._big, .btn_arrow button .ja._big {
  font-size: 3rem;
}
.btn_arrow._orange a, .btn_arrow._orange p, .btn_arrow._orange button {
  background-color: #f15a22;
}
.btn_arrow._white a, .btn_arrow._white p, .btn_arrow._white button {
  background: #fff;
  color: #f15a22;
  border: 3px solid #f15a22;
}
.btn_arrow._white a::before, .btn_arrow._white p::before, .btn_arrow._white button::before {
  background-color: rgba(241, 90, 34, 0.2);
  background-image: url("../img/ico_arrow_o.svg");
}
.btn_arrow._blank a::before, .btn_arrow._blank p::before, .btn_arrow._blank button::before {
  background-image: url(../img/ico_blank.svg);
  background-size: 30%;
}
.btn_arrow._entry a::before, .btn_arrow._entry p::before, .btn_arrow._entry button::before {
  rotate: 90deg;
}

.btn_small {
  text-align: center;
}
.btn_small a, .btn_small p, .btn_small button, .btn_small .btn_prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(241, 90, 34, 0.3);
  color: #f15a22;
  font-size: 3rem;
  height: 8rem;
  padding: 0 3em;
  border-radius: 100px;
  position: relative;
  transition: border 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn_small a:hover, .btn_small p:hover, .btn_small button:hover, .btn_small .btn_prev:hover {
    border-color: #f15a22;
  }
}
.btn_small._back input {
  color: #f15a22;
  cursor: pointer;
}
.btn_small._back .btn_prev {
  cursor: pointer;
}
.btn_small._back a::before, .btn_small._back p::before, .btn_small._back button::before, .btn_small._back .btn_prev::before {
  content: "";
  background: url("../img/ico_arrow_o.svg") no-repeat center/contain;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
  width: 0.5em;
  height: 0.5em;
  scale: -1 1;
}

.cta {
  padding: 4rem 0;
}
.cta .bnr img {
  width: 100%;
}
.cta .kome {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-top: 1em;
}
.cta .btn {
  margin-top: 4rem;
}

.ttl_sec {
  display: flex;
  align-items: center;
  gap: 0.5em 3rem;
  margin-bottom: 3rem;
}
.ttl_sec .en {
  color: #f15a22;
  font-size: 10rem;
  line-height: 1;
  font-weight: 600;
}
.ttl_sec .en._black {
  color: #261d1d;
}
.ttl_sec .en._white {
  color: #fff;
}
.ttl_sec .ja {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.ttl_sec .ja._orange {
  color: #f15a22;
}
.ttl_sec .ja._white {
  color: #fff;
}
.ttl_sec._center {
  flex-direction: column;
}

#sec_fv .slider_wrap {
  background: linear-gradient(to right, #f15a22 20%, #fff 20%);
  padding-top: 6rem;
}
#sec_fv .slider_wrap .slider {
  background: #fff;
  width: 61rem;
  height: 41rem;
  margin-inline: auto;
  overflow: hidden;
}
#sec_fv .slider_wrap .slider img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
#sec_fv .slider_wrap .slider .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
#sec_fv .slider_wrap .catch {
  color: #f15a22;
  position: absolute;
  right: 1rem;
  top: -3rem;
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#sec_fv .slider_wrap .txt {
  color: #f15a22;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  padding: 0.5em 0;
}

#sec_description {
  background: #f15a22;
  padding: 6rem 0 4rem;
}
#sec_description .catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
#sec_description .catch span {
  display: inline-block;
  background: #fff;
  color: #f15a22;
  font-size: 3.2rem;
  line-height: 1.4;
  white-space: nowrap;
  padding: 0.3em;
}
#sec_description .catch span strong {
  font-size: 4.8rem;
}
#sec_description .ttl_sec {
  flex-wrap: wrap;
}
#sec_description .ttl_sec .en {
  display: contents;
}
#sec_description .ttl_sec .en span:nth-child(2) {
  order: 3;
}
#sec_description .ttl_sec .ja {
  order: 2;
}
#sec_description .box {
  background: #fff;
  border-radius: 1rem;
  margin-top: 3rem;
}
#sec_description .box .ttl_wrap {
  color: #f15a22;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
}
#sec_description .box .ttl_wrap .num {
  flex: 0 0 auto;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
  padding-right: 1em;
  margin-right: 1em;
  border-right: 2px solid #ddd;
}
#sec_description .box .ttl_wrap .ja {
  flex: 1 1 auto;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
#sec_description .box .ttl_wrap .ico {
  width: 2.6rem;
  height: 2.6rem;
  position: relative;
}
#sec_description .box .ttl_wrap .ico::before, #sec_description .box .ttl_wrap .ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 3px;
  background: #f15a22;
  transition: rotate 0.3s ease;
}
#sec_description .box .ttl_wrap .ico::after {
  rotate: 90deg;
}
#sec_description .box .ttl_wrap.is-open .ico::after {
  rotate: 180deg;
}
#sec_description .box .inner {
  padding: 3rem 4rem 6rem;
  border-top: 2px solid #ccc;
}
#sec_description .box .inner .table .ttl {
  font-size: 2.6rem;
  font-weight: 600;
}
#sec_description .box .inner .table .ttl::before {
  content: "■";
  color: #f15a22;
  margin-right: 0.5em;
}
#sec_description .box .inner .table .ttl:nth-child(n+2) {
  margin-top: 0.8em;
  padding-top: 0.8em;
  border-top: 2px solid #ccc;
}
#sec_description .box .inner .table .txt {
  line-height: 1.4;
}
#sec_description .box .inner .btn {
  margin: 4rem 0;
}
#sec_description .box .inner .btn a::before {
  rotate: 90deg;
}
#sec_description .box .inner .close .item .ico {
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
}
#sec_description .box .inner .close .item .ico::before, #sec_description .box .inner .close .item .ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  width: 100%;
  height: 2px;
  background: #f15a22;
}
#sec_description .box .inner .close .item .ico::after {
  rotate: -45deg;
}
#sec_description .cta {
  margin-top: 2rem;
  color: #fff;
}

#sec_jobs {
  background: url("../img/jobs_bg@2x.jpg") no-repeat center top/100% auto;
  padding: 8rem 0;
}
#sec_jobs .slider_wrap .slider._sub .slick-track {
  display: flex !important;
  width: 100% !important;
  transform: translate(0, 0) !important;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
#sec_jobs .slider_wrap .slider._sub .slick-track::before {
  display: none;
}
#sec_jobs .slider_wrap .slider._sub .btn {
  display: inline-block;
  background: #fff;
  border: 1px solid #f8ac90;
  color: #f15a22;
  font-size: 3rem;
  padding: 0 1em;
  border-radius: 100px;
}
#sec_jobs .slider_wrap .slider._sub .slick-current .btn {
  background: #f15a22;
  color: #fff;
  border-color: #f15a22;
}
#sec_jobs .slider_wrap .slider._main {
  margin-top: 5rem;
  margin-bottom: 4rem;
}
#sec_jobs .slider_wrap .slider._main .box .img_wrap {
  position: relative;
  padding-top: 4.5rem;
}
#sec_jobs .slider_wrap .slider._main .box .img_wrap .ttl {
  background: #f15a22;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 0 1em;
}
#sec_jobs .slider_wrap .slider._main .box .img_wrap .count {
  position: absolute;
  right: 0;
  top: 0;
  color: #f15a22;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  gap: 0.5em;
}
#sec_jobs .slider_wrap .slider._main .box .img_wrap .count .big {
  font-size: 8.6rem;
  line-height: 0.8;
}
#sec_jobs .slider_wrap .slider._main .box .img_wrap img {
  width: 100%;
}
#sec_jobs .slider_wrap .slider._main .box .detail {
  margin-top: 8rem;
}
#sec_jobs .slider_wrap .slider._main .box .detail .sttl {
  font-size: 3.6rem;
  line-height: 1.6;
  font-weight: 600;
}
#sec_jobs .slider_wrap .slider._main .box .detail .txt {
  font-size: 3rem;
  line-height: 1.6;
  margin-top: 1em;
}
#sec_jobs .slider_wrap .slider._main .box .detail .list {
  margin-top: 4rem;
  border: 2px solid #f15a22;
  padding: 4rem;
}
#sec_jobs .slider_wrap .slider._main .box .detail .list li {
  list-style: none;
  font-size: 3rem;
  padding-left: 1.5em;
  position: relative;
}
#sec_jobs .slider_wrap .slider._main .box .detail .list li::before {
  content: "";
  position: absolute;
  left: 0.3em;
  top: 0.5em;
  width: 0.9em;
  height: 0.9em;
  background: #f15a22;
  border-radius: 100%;
}
#sec_jobs .slider_wrap .slider._main .box .detail .list li + li {
  margin-top: 1em;
}

.slick-arrow {
  position: absolute;
  top: 25rem;
  left: 100%;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f8ac90;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  text-indent: -2000px;
  overflow: hidden;
  z-index: 10;
  transition: border 0.3s ease;
}
.slick-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -70% -50%;
  rotate: 45deg;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #f15a22;
  border-right: 2px solid #f15a22;
}
@media screen and (min-width: 768px) {
  .slick-arrow:hover {
    border-color: #f15a22;
  }
}
.slick-arrow.slick-prev {
  left: auto;
  right: 100%;
  translate: 50% 0;
  scale: -1 1;
}

.slick-dots {
  position: absolute;
  top: 54rem;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.slick-dots li {
  line-height: 1;
}
.slick-dots button {
  background: #ccc;
  width: 1.5rem;
  height: 1.5rem;
  text-indent: 1000px;
  overflow: hidden;
}
.slick-dots .slick-active button {
  background: #f15a22;
}

#sec_message .bg {
  background: url("../img/message_bg@2x.jpg") no-repeat center/cover;
  padding: 8rem 0;
}
#sec_message .ttl {
  font-size: 4.4rem;
  line-height: 1.6;
  font-weight: 600;
  margin: 0.8em 0;
}
#sec_message .txt {
  font-size: 3rem;
  line-height: 1.8;
}
#sec_message .txt strong {
  color: #f15a22;
}
#sec_message .txt + .txt {
  margin-top: 1.5em;
}

#sec_about {
  padding: 6rem 0;
}
#sec_about .slider_wrap {
  overflow: hidden;
  width: 100%;
}
#sec_about .slider_wrap .slider {
  display: flex;
}
#sec_about .slider_wrap .slider .slide {
  flex: 0 0 auto;
  animation: about-slider 30s linear infinite;
}
#sec_about .slider_wrap .slider .slide img {
  width: 140rem;
  max-width: inherit;
}
#sec_about .slider_wrap .slider._02 .slide {
  animation: about-slider 30s linear infinite reverse;
}
@keyframes about-slider {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}
#sec_about .inner {
  margin-top: 4rem;
}
#sec_about .inner .img img {
  width: 100%;
}
#sec_about .inner .feature {
  margin-top: 6rem;
}
#sec_about .inner .feature .ttl {
  color: #f15a22;
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 4rem;
}
#sec_about .inner .feature .ttl .big {
  font-size: 130%;
}
#sec_about .inner .feature .txt {
  font-size: 3rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #f15a22;
}
#sec_about .inner .feature .txt .small {
  display: inline-block;
  margin-top: 1em;
  font-size: 2.8rem;
}

#sec_voice {
  padding: 6rem 0;
}
#sec_voice .slider_wrap .slider .box .img_wrap {
  position: relative;
  padding-top: 4.5rem;
}
#sec_voice .slider_wrap .slider .box .img_wrap .ttl {
  background: #f15a22;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 0 1em;
}
#sec_voice .slider_wrap .slider .box .img_wrap .count {
  position: absolute;
  right: 0;
  top: 0;
  color: #f15a22;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  gap: 0.5em;
}
#sec_voice .slider_wrap .slider .box .img_wrap .count .big {
  font-size: 8.6rem;
  line-height: 0.8;
}
#sec_voice .slider_wrap .slider .box .img_wrap img {
  width: 100%;
}
#sec_voice .slider_wrap .slider .box .detail {
  margin-top: 8rem;
}
#sec_voice .slider_wrap .slider .box .detail .sttl {
  font-size: 3.6rem;
  line-height: 1.6;
  font-weight: 600;
}
#sec_voice .slider_wrap .slider .box .detail .sttl span {
  display: inline-block;
  background: #f15a22;
  color: #fff;
  padding: 0 0.5em;
}
#sec_voice .slider_wrap .slider .box .detail .txt {
  font-size: 3rem;
  line-height: 1.6;
  margin-top: 1em;
}
#sec_voice .slider_wrap .slider .box .detail .txt.tar {
  margin-top: 1.5em;
  font-weight: 600;
}
#sec_voice .interview {
  margin-top: 8rem;
}
#sec_voice .interview .ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
#sec_voice .interview .ttl span {
  display: inline-block;
}
#sec_voice .interview .ttl span::before, #sec_voice .interview .ttl span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin: 0 0.8em;
  transform: skew(25deg);
  background: #261d1d;
}
#sec_voice .interview .ttl span::after {
  transform: skew(-25deg);
}
#sec_voice .interview .slider {
  margin-top: 2rem;
  padding-bottom: 8rem;
}
#sec_voice .interview .slider iframe {
  width: 100%;
  height: 40rem;
}
#sec_voice .interview .slider .slick-arrow {
  top: 18rem;
}
#sec_voice .interview .slider .slick-dots {
  top: 42rem;
}

#sec_entry {
  background: url("../img/entry_bg@2x.jpg") no-repeat center top/100% auto;
  padding: 8rem 0 0;
}
#sec_entry .cta {
  padding: 0;
}
#sec_entry .form {
  margin-top: 6rem;
}
#sec_entry .form .table .ttl, #sec_entry .form .table .txt {
  font-size: 2.8rem;
}
#sec_entry .form .table .ttl {
  margin-top: 1em;
  padding-top: 1em;
  padding-bottom: 0.3em;
  border-top: 1px solid #ccc;
}
#sec_entry .form .table .ttl:first-child, #sec_entry .form .table .ttl._none-border {
  padding-top: 0;
  border-top: none;
}
#sec_entry .form .table .txt:last-child {
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
#sec_entry .form .table .grid .checklist {
  display: grid;
  grid-template-columns: 45% 55%;
}
#sec_entry .form .table .grid._name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
#sec_entry .form .table .grid._name .item {
  display: flex;
  align-items: center;
}
#sec_entry .form .table .grid._name .item span {
  flex: 0 0 auto;
  width: 2.5em;
}
#sec_entry .form .table .grid._name .wpcf7-form-control-wrap {
  width: calc(100% - 2.5em) !important;
}
#sec_entry .form .table .grid._birth {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
#sec_entry .form .table .grid._birth .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#sec_entry .form .table .grid._birth .item span {
  flex: 0 0 auto;
  width: 1em;
}
#sec_entry .form .table .grid._birth .item .wpcf7-form-control-wrap {
  width: calc(100% - 1.5em);
}
#sec_entry .form .table .grid._jobs .checklist {
  display: grid;
  grid-template-columns: 50% 50%;
}
#sec_entry .form .table ._type .checklist {
  display: flex;
  flex-direction: column;
}
#sec_entry .form .work-status {
  display: flex;
  flex-direction: column;
  margin-top: 0.5em;
}
#sec_entry .form .required {
  color: #f15a22;
}
#sec_entry .form *::placeholder {
  color: #ccc;
}
#sec_entry .form label {
  display: inline-block;
  margin: 0.2em 0;
}
#sec_entry .form input + label {
  margin-top: 1em;
}
#sec_entry .form input[type=text],
#sec_entry .form input[type=email],
#sec_entry .form input[type=tel],
#sec_entry .form textarea,
#sec_entry .form select {
  font-size: 2.8rem;
  padding: 0 1em;
  background: #f7f7f7;
  border: 1px solid #ccc;
  color: #261d1d;
}
@media screen and (max-width: 767px) {
  #sec_entry .form input[type=text],
  #sec_entry .form input[type=email],
  #sec_entry .form input[type=tel],
  #sec_entry .form textarea,
  #sec_entry .form select {
    padding: 0 0.5em;
  }
}
#sec_entry .form textarea {
  line-height: 1.8em;
  padding: 1em;
  height: 10em;
}
@media screen and (max-width: 767px) {
  #sec_entry .form textarea {
    padding: 0.5em;
  }
}
#sec_entry .form input[type=text],
#sec_entry .form input[type=email],
#sec_entry .form input[type=tel],
#sec_entry .form select {
  line-height: 4em;
  height: 4em;
}
#sec_entry .form input[type=text],
#sec_entry .form input[type=email],
#sec_entry .form input[type=tel],
#sec_entry .form textarea {
  width: 100%;
}
#sec_entry .form select {
  background: #f7f7f7 url("../img/ico_select.svg") no-repeat right 0.5em center/auto 20%;
  padding-right: 2.5em;
  width: 100%;
}
#sec_entry .form input[type=radio],
#sec_entry .form input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
#sec_entry .form input[type=radio] + span,
#sec_entry .form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
}
#sec_entry .form input[type=radio] + span::before, #sec_entry .form input[type=radio] + span::after,
#sec_entry .form input[type=checkbox] + span::before,
#sec_entry .form input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.4em;
  height: 1.4em;
  border-radius: 100%;
  border: 1px solid #ccc;
  background: #f7f7f7;
  margin-right: 0.3em;
}
#sec_entry .form input[type=radio] + span::after,
#sec_entry .form input[type=checkbox] + span::after {
  width: 0.8em;
  height: 0.8em;
  margin: 0.3em 0 0 0.3em;
  background: transparent;
  border: none;
}
#sec_entry .form input[type=radio]:checked + span::after,
#sec_entry .form input[type=checkbox]:checked + span::after {
  background: #f15a22;
}
#sec_entry .form input[type=checkbox] + span::before {
  border-radius: 0;
}
#sec_entry .form input[type=checkbox]:checked + span::before {
  background: #f15a22;
}
#sec_entry .form input[type=checkbox]:checked + span::after {
  width: 1em;
  height: 0.6em;
  margin: 0.2em 0 0 0.2em;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
  border-radius: 0;
  background: transparent;
}
#sec_entry .form .privacy {
  text-align: center;
  font-size: 3rem;
  margin-top: 4rem;
}
#sec_entry .form .privacy a {
  color: #999;
  text-decoration: underline;
}
#sec_entry .form .btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 6rem;
}
#sec_entry .form .btn_wrap .btn {
  position: relative;
}
#sec_entry .form .btn_wrap .btn._submit input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 3.6rem;
  cursor: pointer;
}
#sec_entry .form .attention {
  margin-top: 6rem;
}
#sec_entry .form .attention li {
  line-height: 1.4;
}
#sec_entry .form .attention li::before {
  content: "※";
}
#sec_entry .thanks .ttl {
  color: #f15a22;
  font-size: 4.4rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}
#sec_entry .thanks .txt {
  font-size: 3rem;
  margin-top: 1em;
}
#sec_entry .thanks .small {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-top: 1em;
}
#sec_entry .tel {
  background: url("../img/entry_tel@2x.jpg") no-repeat center/cover;
  padding: 6rem 0;
  margin-top: 8rem;
  text-align: center;
}
#sec_entry .tel .ttl {
  font-size: 3.6rem;
  line-height: 1.6;
  font-weight: 600;
}
#sec_entry .tel .big {
  color: #f15a22;
  font-size: 7rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0.5em 0;
}
#sec_entry .tel .big a {
  color: #f15a22;
}
#sec_entry .wpcf7-list-item {
  margin-left: 0 !important;
}
#sec_entry .wpcf7-not-valid-tip {
  width: 100% !important;
}
#sec_entry .wpcf7-response-output {
  font-size: 3rem;
  line-height: 1.8;
  padding: 1em;
  margin-left: 0;
  margin-right: 0;
}
#sec_entry .wpcf7-form.validating .wpcf7-response-output {
  display: none;
}

/* ------------------------------
    POPUP
------------------------------ */
#popup {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 背景を少し暗くする */
  z-index: 1000;
  overflow-y: auto; /* ポップアップの内容が画面に収まらない場合にスクロール可能にする */
  justify-content: center;
  align-items: center;
}
#popup.privacy-policy-recruitment {
  display: block;
  position: static;
  background-color: #fff;
}

/* ポップアップが表示された時のスタイル */
#popup.is-open {
  display: flex; /* ポップアップを表示 */
}

/* ポップアップのコンテンツ部分 */
#popup > div {
  max-width: 640px;
  background: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 20px;
}

/* 閉じるボタンのスタイル */
#btn-close {
  cursor: pointer;
  position: absolute;
  top: -15px;
  right: -12px;
  border: none;
  background: none;
  width: 30px;
  height: 0;
  padding-top: 38px;
  overflow: hidden;
  background: url(../img/ico_close.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 960px) {
  #btn-close {
    width: 38px;
    height: 38px;
    top: -16px;
    right: -16px;
  }
}

#popup h3 {
  font-size: 3.2rem;
  color: #f15a22;
  padding: 1.3em 6vw 1.4em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.1em;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 960px) {
  #popup h3 {
    padding: 1.4em 4rem 1.4em;
  }
}
#popup h4 {
  font-size: 3rem;
  margin-bottom: 0.25em;
}
#popup p {
  line-height: 1.4;
  font-size: 2.3rem;
}
@media screen and (min-width: 960px) {
  #popup p {
    line-height: 1.6;
  }
}
#popup p + h4 {
  margin-top: 1em;
}
#popup .simplebar-track,
#popup .simplebar-scrollbar {
  border-radius: 3px;
}
#popup .simplebar-track {
  background: #e9e8e8;
  width: 3px;
}
#popup .simplebar-scrollbar {
  background: #ccc;
  width: 3px;
}
#popup .close.btn_small {
  margin-top: 5rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 960px) {
  #popup .close.btn_small {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#popup .inner {
  margin: 0 auto;
  padding: 0;
  width: 87vw;
  position: absolute;
  top: 19vw;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  #popup .inner {
    max-height: 76vh;
    height: auto;
    top: auto;
  }
}
#popup .txt {
  max-height: 60vw;
  overflow-y: auto;
  margin-left: 6vw;
  margin-right: 2.4vw;
  padding-right: 3em;
}
@media screen and (min-width: 960px) {
  #popup .txt {
    margin-bottom: 3rem;
    max-height: 36vh;
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

#popup.privacy-policy-recruitment .policy-txt {
  box-shadow: none;
  padding: 0;
  margin-left: 4rem;
  margin-right: 4rem;
}
#popup.privacy-policy-recruitment h3 {
  font-size: 3.6rem;
  padding-left: 4rem;
  padding-right: 4rem;
  text-align: center;
}
#popup.privacy-policy-recruitment h4 {
  font-size: 3.6rem;
  margin-bottom: 0.5em;
}
#popup.privacy-policy-recruitment p {
  line-height: 1.6;
  font-size: 2.8rem;
}
#popup.privacy-policy-recruitment p + h4 {
  margin-top: 1.4em;
}

.page-pprecruitment h1.logo {
  width: 120px;
  margin: 40px auto 20px;
}
@media screen and (max-width: 767px) {
  .page-pprecruitment h1.logo {
    width: 26vw;
    margin: 4vw auto 0;
  }
}
.page-pprecruitment main {
  padding-top: 0;
}

html.pp-recruit {
  background: none;
}

body.no-scroll {
  overflow: hidden;
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll=fade-top] {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(30px);
}

*[data-scroll=fade-bottom] {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(-30px);
}

*[data-scroll=fade-top].scroll-show,
*[data-scroll=fade-bottom].scroll-show {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}/*# sourceMappingURL=common.css.map */