@charset "UTF-8";

header {
  padding: 0;
  position: relative;
}

header h1 {
  z-index: 10;
}

header h1 img {
  width: 100%;
  margin: 0 auto;
}

header .inner {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .waku {
  position: absolute;
  top: 2vw;
  left: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0.5em 2em;
  color: #fff;
  z-index: 1;
}

header .waku p {
  margin: 0;
  padding: 1px 0.1em;
  line-height: 1.2;
  background: #e60012;
  border-radius: 3px;
}

header .waku .zanwaku {
  font-size: clamp(10px, 6vw, 2em);
  font-weight: bold;
}

header .waku .zanwaku .number {
  font-size: 200%;
  line-height: 1;
  animation: jump-rotate 5s infinite;
  transform-style: preserve-3d;
  perspective: 500px;
  display: inline-block;
}

header .waku::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  /* ::after と同じサイズ・形状を設定 */
  width: 75%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: transparent;
  /* 脈動アニメーションを適用 */
  animation: pulse-border 2s infinite ease-in-out;
  translate: -50% -50%;
  z-index: -1;
}

header .waku::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #e60012;
  translate: -50% -50%;
  z-index: -1;
}

@keyframes jump-rotate {

  0%,
  70% {
    transform: translate3d(0, 0, 0) rotateY(0deg);
    animation-timing-function: ease-out;
  }

  75% {
    transform: translate3d(0, -10px, 0) rotateY(360deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: translate3d(0, 0, 0) rotateY(360deg);
  }

  85% {
    transform: scale(1.1, 0.9) translate3d(0, 0, 0);
    animation-timing-function: ease-out;
  }

  90% {
    transform: scale(0.95, 1.05) translate3d(0, -2px, 0);
    animation-timing-function: ease-in;
  }

  95%,
  100% {
    transform: translate3d(0, 0, 0) scale(1, 1) rotateY(360deg);
  }
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7);
    /* 初期状態 */
  }

  50% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(230, 0, 18, 0);
    /* 外側に広がり、透明に */
  }
}

@keyframes pulse-opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
    /* わずかに透明になって沈むように */
  }

  100% {
    opacity: 1;
  }
}

header .logo {
  width: 12vw;
  max-width: 200px;
  position: absolute;
  top: 2vw;
  right: 2%;
  z-index: 100;
}

header .h_lead {
  width: 12em;
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.2em;
  color: #fff;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 99;
}

header .h_lead span {
  font-size: 70%;
}

header .h_payment {
  position: absolute;
  right: 3vw;
  bottom: 2vw;
  z-index: 10;
  width: 45vw;
}

header .h_payment img {
  width: 100%;
  margin-bottom: 2vw;
}

header .bg_adachi {
  position: absolute;
  bottom: -3vw;
  left: 3vw;
  width: 55vw;
  transform: rotate(-5deg);
}

header .bg_adachi img {
  width: 100%;
}

header .bg_car {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60vw;
}

header .bg_car img {
  width: 100%;
}

header .swiper_container_fv {
  position: absolute;
  width: 100%;
  height: 26%;
  bottom: 0;
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

header .swiper_container_fv .swiper-wrapper {
  height: 80%;
  transition-timing-function: linear;
}

header .swiper_container_fv .swiper-wrapper .swiper-slide img {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 800px) {
  header {
    padding: 0;
    min-height: 100vw;
  }

  header .waku {
    position: absolute;
    top: 2vw;
    left: 0%;
    padding: 0.5em 1.5em;
  }

  header .waku p {
    font-size: 80%;
  }

  header .logo {
    width: 20vw;
    max-width: 200px;
    position: absolute;
    top: 2vw;
    right: 2%;
    z-index: 100;
  }

  header .h_lead {
    margin-top: 1.5em;
    font-size: 7vw;
  }

  header .h_payment {
    position: absolute;
    left: 5vw;
    top: 50vw;
    z-index: 10;
    width: 90vw;
    text-align: center;
  }

  header .h_payment img {
    width: 80%;
  }

  header .h_payment br {
    display: none;
  }

  header .swiper_container_fv {
    height: 17%;
  }
}

nav.fixednavi {
  display: none;
}

@media only screen and (max-width: 800px) {
  nav.fixednavi {
    display: flex;
    gap: 2px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    background: #fff;
    border-top: 2px solid #fff;
  }

  nav.fixednavi a {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.25;
    padding: 0.5em 0;
  }

  nav.fixednavi a:first-child {
    width: 50%;
    background: #e60012;
  }

  nav.fixednavi a:last-child {
    width: 50%;
    background: #27A917;
  }

  nav.fixednavi a span:first-child {
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  nav.fixednavi a span:last-child {
    font-size: 0.8em;
  }
}

#cta {
  background: #fff;
  margin: 2em 0;
  padding: 1em;
  text-align: center;
  font-size: 2em;
}

#cta a {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: bold;
  background: #e60012;
  margin: auto;
  padding: 0.5em 1em;
  border: 3px solid #fff;
  border-radius: 6px;
  line-height: 1;
  /* アニメーションのための設定 */
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: block;
  text-decoration: none;
  animation: shake-effect 4s infinite;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

#cta a::before {
  /* 光の擬似要素 */
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 5%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  /* 光の色（透明度を付ける） */
  transform: skewX(-20deg);
  /* 光を斜めにする */
  filter: blur(10px);
  /* 常時アニメーションのための設定 */
  animation: shiny-effect 4s infinite;
}

@media only screen and (max-width: 800px) {
  #cta {
    margin: 1em 0;
    font-size: 1.5em;
  }
}

@keyframes shiny-effect {
  0% {
    left: -75%;
  }

  20% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}

@keyframes shake-effect {
  0% {
    transform: translateX(0);
  }

  2% {
    transform: translateX(-3px);
  }

  4% {
    transform: translateX(3px);
  }

  6% {
    transform: translateX(-3px);
  }

  8% {
    transform: translateX(3px);
  }

  10% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

section.linkarea {
  background: #000;
}

section.linkarea .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em 1em;
}

section.linkarea .wrap a {
  max-width: 480px;
}

.lead {
  background: url(../img/lead_bg.png) top center no-repeat;
  background-size: cover;
  text-align: center;
  margin: 0 0 0 0;
  padding: 2em 0;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.lead .lead_merit {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  margin: 1em 0 2em 0;
}

.lead .lead_merit li {
  width: 24%;
  margin: 0;
}

.lead .lead_text {
  width: 90%;
  background: rgba(0, 0, 0, 0.4);
  margin: 2em auto 0 auto;
  padding: 2em;
  border-radius: 1em;
}

.lead .lead_text img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/4;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.lead .lead_text h2,
.lead .lead_text p {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.lead .lead_text h2 {
  margin: 0.5em 0;
  font-size: clamp(16px, 4.5vw, 35px);
  line-height: 1.2;
}

.lead .lead_text p {
  text-align: left;
}

.lead .form-down-01 {
  width: 40%;
  max-width: 250px;
}

@media only screen and (max-width: 800px) {
  .lead {
    background-size: cover;
    padding: 0;
  }

  .lead .lead_merit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lead .lead_merit li {
    width: 44%;
    margin: 0 1%;
  }

  .lead .lead_text {
    width: 95%;
    margin: 1em auto;
    padding: 1em;
  }

  .lead .lead_text img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
  }
}

.compare {
  padding: 0 0 2em;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
}

.compare h2.red {
  text-align: center;
  margin: 1em 0;
}

.compare .scroll_down {
  position: absolute;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.compare .scroll_down .arrow_wrap {
  position: absolute;
  left: -12px;
  bottom: 0;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.compare .arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.compare .arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.compare .arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.compare .arrow:before,
.compare .arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.compare .arrow:before {
  left: 50%;
  transform: skew(0deg, -30deg);
}

.compare .arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, 30deg);
  margin-left: 0;
  left: 0;
}

@keyframes move {
  25% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: translateY(30px);
  }

  67% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.compare .lead_text {
  text-align: center;
  line-height: 1.5em;
  margin: 4em 0 2em;
}

.compare .lead_text strong {
  font-weight: bold;
  border-bottom: 1px solid #e60012;
}

.compare .yearly {
  margin: 0 0 2em;
}

.compare .yearly img {
  margin: 0 0 1em;
}

.compare .yearly p.note {
  text-align: end;
  font-size: 0.8em;
}

.compare .hourly {
  margin: 0 0 2em;
}

.compare .hourly p.bold {
  text-align: center;
  line-height: 1.5em;
  margin: 0 0 1em;
}

.compare .hourly p.note {
  text-align: end;
  font-size: 0.8em;
}

.compare .oubo_btn p.note {
  text-align: center;
}

.compare .oubo_btn p.red {
  color: #e60012;
}

.compare .oubo_btn .foam {
  width: 70%;
  max-width: 320px;
  display: block;
  padding: 0.4em 0;
  font-size: 1.2em;
  font-weight: bold;
  background: #e60012;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  border-radius: 100vh;
  box-shadow: 0 5px 0 #B30012;
}

#allowance {
  position: relative;
  z-index: 2;
  background: #e60012 url(../img/sippou_bg.png);
}

#allowance h2 {
  color: #fff;
  padding-bottom: 1em;
}

#allowance .h3_circle {
  position: absolute;
  background: #fff;
  padding: 2.5em 1em 1em 1em;
  width: 260px;
  height: 260px;
  border-radius: 50%;
}

#allowance .h3_circle h3 {
  color: #e60012;
  font-size: 2em;
  line-height: 1.8em;
  text-align: center;
  font-weight: bold;
}

#allowance .h3_circle h3 strong {
  font-size: 200%;
}

#allowance .h3_circle p {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  padding: 0.1em;
  color: #fff;
  background: #e60012;
  width: 80%;
  margin: 0 auto;
}

#allowance img {
  padding-bottom: 1em;
}

@media only screen and (max-width: 800px) {
  #allowance .h3_circle {
    position: absolute;
    background: #fff;
    padding: 2.2em 1em 1em 1em;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    right: 5%;
  }

  #allowance .h3_circle h3 {
    color: #e60012;
    font-size: 1.3em;
    line-height: 1.4em;
    text-align: center;
    font-weight: bold;
  }

  #allowance .h3_circle h3 strong {
    font-size: 200%;
  }

  #allowance .h3_circle p {
    text-align: center;
    font-weight: bold;
    font-size: 0.7em;
    padding: 0.1em;
    color: #fff;
    background: #e60012;
    width: 80%;
    margin: 0 auto;
  }

  #allowance img {
    padding-bottom: 1em;
  }
}

#allowance_plus {
  background: #FFEA03;
}

#allowance_plus .wrap {
  margin-top: -2em;
  padding: 3em 1em 2em 1em;
  text-align: center;
}

#allowance_plus .wrap .flex_wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 1em 0;
  font-size: 1.2em;
}

#allowance_plus .wrap .flex_wrap .oneday {
  writing-mode: vertical-rl;
  margin: 0 1em 0 0;
  font-weight: 600;
}

#allowance_plus .wrap .flex_wrap .pay {
  font-weight: 600;
  line-height: 2em;
}

#allowance_plus .wrap .flex_wrap .pay span {
  font-size: 200%;
}

#allowance_plus .wrap .twentydays {
  font-weight: 600;
  font-size: 2em;
}

#allowance_plus .wrap .twentydays span {
  font-size: 200%;
}

@media only screen and (max-width: 800px) {
  #allowance_plus .wrap .flex_wrap {
    font-size: 1em;
  }

  #allowance_plus .wrap .note {
    text-align: center;
  }

  #allowance_plus .wrap .twentydays {
    font-size: 1.2em;
  }
}

#simulation {
  position: relative;
  z-index: 2;
}

#simulation .bg_black {
  text-align: center;
  color: #fff;
}

#simulation h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5em;
  border: 1px solid #000;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  max-width: 600px;
  min-width: 300px;
  margin-top: 1em;
  margin-bottom: 1em;
}

#simulation h3.meisai {
  border: none;
  padding: 0;
  position: relative;
  width: 30%;
}

#simulation h3.meisai::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 100%;
  background: url(../img/h3_frame.png) center left no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

#simulation h3.meisai::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 100%;
  background: url(../img/h3_frame.png) center right no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(-1, 1);
}

#simulation table {
  width: 60%;
  margin: 0 auto;
}

#simulation table tbody tr th {
  text-align: right;
  padding: 0 0.5em 0 0;
}

#simulation table tbody tr th span {
  display: inline-block;
  color: #fff;
  background: #e60012;
  width: 100%;
  text-align: center;
}

#simulation table tbody tr:first-child th {
  background: transparent;
}

#simulation table tbody tr td {
  width: 49%;
  text-align: end;
}

#simulation table tbody tr td.pay {
  width: 30%;
}

#simulation table tbody tr.total {
  border-top: 3px solid #000;
  color: #e60012;
}

#simulation table tfoot {
  width: 100%;
  text-align: end;
  border-top: 3px solid #000;
  color: #e60012;
}

#simulation .payslip_flex {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#simulation .payslip_flex img {
  margin-bottom: 1em;
  border: 1px solid #000;
}

#simulation .note_paslip {
  text-align: center;
  display: flex;
  justify-content: center;
}

#simulation .payout {
  width: 100%;
  max-width: 600px;
  margin: 1em auto;
  padding: 0 1em;
}

@media only screen and (max-width: 800px) {
  #simulation .payslip_flex li {
    width: 30%;
  }

  #simulation table {
    width: 90%;
    margin: 0 auto;
  }

  #simulation table tbody tr th {
    font-size: 0.75em;
    height: 30px;
  }

  #simulation table tbody tr td {
    width: 52%;
    font-size: 0.7em;
    text-align: end;
  }

  #simulation table tbody tr td.pay {
    width: 30%;
  }
}

#kikankou {
  background: #F2F2F2;
  padding: 10px 0 0 0;
}

#kikankou .point_special {
  padding: 0 4em 4em 4em;
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
}

#kikankou .point_special h3 {
  font-size: 200%;
  font-weight: 600;
  text-align: center;
  position: relative;
  width: 100%;
  margin: 0 0 1em;
  padding: 0;
  z-index: 2;
  border: none;
}

#kikankou .point_special h3::after {
  content: "";
  display: block;
  width: 17em;
  border-top: 2.5em solid #fff;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

#kikankou .point_special p {
  font-size: 1.4em;
  margin-bottom: 1em;
}

#kikankou .point_special dl {
  padding: 1em;
  margin: 0 0 2em;
}

#kikankou .point_special dl dt {
  font-weight: 600;
  font-size: 1.1em;
  position: relative;
  line-height: 1.5em;
  padding-left: 1.5em;
}

#kikankou .point_special dl dt::before {
  content: "";
  background: url(../img/arrow.png);
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
  top: 0.25em;
  background-repeat: no-repeat;
  left: 0.2em;
}

#kikankou .point_special .kikankou {
  background: #E6E6E6;
  border: 2px solid #cccccc;
}

#kikankou .point_special .haken {
  background: #FFE8E8;
  border: 2px solid #e23e4b;
}

#kikankou .point_special h4 {
  text-align: center;
  font-size: 150%;
  font-weight: 600;
  margin: 0 0 1em;
}

#kikankou .point_special ul {
  padding: 1em 1em 1em 4em;
  background: #fff;
  position: relative;
}

#kikankou .point_special ul::before {
  content: "";
  background: url(../img/tomiyon.png);
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 160px;
  top: -10px;
  left: 10px;
}

#kikankou .point_special ul li span {
  font-weight: 600;
  color: #e60012;
}

@media only screen and (max-width: 800px) {
  #kikankou .point_special {
    padding: 0 1em 1em 1em;
  }

  #kikankou .point_special h3 {
    font-size: 1.2em;
    line-height: 1.2em;
  }

  #kikankou .point_special h3::after {
    width: 90%;
    max-width: 330px;
    border-top: 2.5em solid #fff;
    border-left: 0.8em solid transparent;
    border-right: 0.8em solid transparent;
  }

  #kikankou .point_special p {
    font-size: 1em;
  }

  #kikankou .point_special h4 {
    font-size: 1.2em;
    margin: 0 0 1em;
  }

  #kikankou .point_special ul {
    padding: 1em 1em 1em 2em;
  }

  #kikankou .point_special ul::before {
    width: 58px;
    height: 160px;
    top: -17px;
    left: -12px;
  }

  #kikankou .point_special dl {
    padding: 1.5em;
  }
}

#Hourly-pay {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

#Hourly-pay .wrap {
  width: 100%;
}

#Hourly-pay .wrap .big span.big {
  font-size: 200%;
}

#Hourly-pay .bg_black {
  padding: 0 0.5em;
  margin-right: 0.2em;
}

@media only screen and (max-width: 800px) {
  #Hourly-pay .wrap .big span.big {
    font-size: 200%;
  }

  #Hourly-pay .wrap .note {
    margin-top: 1em;
  }

  #Hourly-pay .wrap .big.red {
    line-height: 2em;
    padding-top: 1em;
  }

  #Hourly-pay .bg_black {
    padding: 0 0.5em;
    margin-right: 0.2em;
  }
}

#jobdata {
  margin: 0em auto 0 auto;
  text-align: center;
  width: 100%;
}

#jobdata .wrap .bg_black {
  padding: 0 0.5em;
  margin-right: 0.2em;
}

#jobdata .wrap .note {
  margin-top: -0.5em;
}

#jobdata .relax {
  background: #e60012;
  border-radius: 1em;
  margin: 0 0 5em 0;
  padding: 2em;
}

#jobdata .relax h3 {
  font-size: 1.5em;
  color: #fff;
  text-align: center;
}

#jobdata .relax h3 strong {
  font-size: 2em;
  padding: 0 0.5em;
  border-bottom: 2px dotted #fff;
}

#jobdata .relax .relax_photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#jobdata .relax .relax_photo li {
  width: 40%;
  margin: 1%;
  background: #000;
}

#jobdata .relax .relax_photo li img {
  width: 100%;
}

#jobdata .relax .relax_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
  align-items: center;
}

#jobdata .relax .relax_menu dt {
  width: 100%;
  text-align: center;
}

#jobdata .relax .relax_menu dd {
  width: 26%;
  margin: 1%;
}

@media only screen and (max-width: 800px) {
  #jobdata .relax {
    margin: 0 1em 5em 1em;
    padding: 1em;
  }

  #jobdata .relax h3 {
    font-size: 1.3em;
    line-height: 2em;
  }

  #jobdata .relax h3 strong {
    font-size: 2em;
  }

  #jobdata .relax .relax_photo li {
    width: 90%;
    margin: 1%;
    background: #000;
  }

  #jobdata .relax .relax_photo li img {
    width: 100%;
  }

  #jobdata .relax .relax_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    align-items: center;
  }

  #jobdata .relax .relax_menu dt {
    width: 100%;
    text-align: center;
  }

  #jobdata .relax .relax_menu dd {
    width: 45%;
    margin: 1%;
  }
}

#factry .swiper_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 3em auto;
  overflow: hidden;
  position: relative;
}

#factry .swiper_wrap .swiper-slide {
  padding: 0.5em;
}

#factry .dining {
  background: #e60012;
  border-radius: 1em;
  margin: 0 0 5em 0;
  padding: 2em;
}

#factry .dining h3 {
  font-size: 2em;
  line-height: 1.5em;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

#factry .dining .dining_photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#factry .dining .dining_photo li {
  width: 30%;
  margin: 1.5%;
}

#factry .dining .dining_photo li img {
  width: 100%;
}

#factry .dining .dining_menu {
  display: flex;
  color: #fff;
  align-items: center;
}

#factry .dining .dining_menu dt {
  width: 25%;
  text-align: center;
}

#factry .dining .dining_menu dd ul li {
  display: inline-block;
  margin-right: 2em;
}

@media only screen and (max-width: 800px) {
  #factry .dining {
    padding: 1em;
  }

  #factry .dining h3 {
    font-size: 6vw;
  }

  #factry .dining .dining_photo {
    justify-content: center;
  }

  #factry .dining .dining_photo li {
    width: 45%;
    margin: 1.5%;
  }

  #factry .dining .dining_photo li img {
    width: 100%;
  }

  #factry .dining .dining_menu {
    display: initial;
    color: #fff;
    align-items: center;
  }

  #factry .dining .dining_menu dt {
    width: 100%;
    text-align: center;
  }
}

#oneroom {
  text-align: center;
  padding-bottom: 2em;
}

#oneroom .wrap h3 {
  margin: 1em 0;
  line-height: 1.2;
}

#oneroom .wrap .bold {
  font-weight: bold;
}

#oneroom p span {
  display: inline-block;
}

#oneroom p span.balloon {
  color: #fff;
  background: #e60012;
  border-radius: 100%;
  margin: 0 0 10px 0;
  padding: 0.5em;
  line-height: 1;
  position: relative;
}

#oneroom p span.balloon::after {
  content: "";
  border-left: 10px solid transparent;
  border-top: 10px solid #e60012;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -19px;
  translate: -50% 0%;
}

#oneroom p span.underline {
  font-size: 1.2em;
  text-decoration: underline;
}

#oneroom .oneroom_image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}

#oneroom .oneroom_image li {
  width: 50%;
}

#oneroom .oneroom_image li img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
}

#oneroom .swiper_wrap {
  position: relative;
  width: 80%;
  background: #000;
  margin-bottom: 120px;
  margin: 0 auto 2em auto;
  padding: 20px 60px;
  position: relative;
}

#oneroom .swiper_wrap .clearfix {
  width: 100%;
  overflow: hidden;
}

#oneroom .swiper_wrap .clearfix .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 800px) {
  #oneroom .swiper_wrap {
    width: 90%;
    margin: 0 auto 1em auto;
    padding: 1em;
  }

  #oneroom .oneroom_image li {
    width: 50%;
  }

  #oneroom .oneroom_image li img {
    height: 120px;
  }
}

#interview .wrap {
  width: 100%;
  max-width: 1000px;
  margin: 3em auto;
  overflow: hidden;
  position: relative;
}

#interview .interview_child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#interview .interview_child div {
  width: 45%;
  margin: 0 0 2em 0;
}

#interview .interview_child div.flex_order1 {
  order: 1;
}

#interview .interview_child div.flex_order2 {
  order: 2;
}

#interview .interview_child div.flex_order3 {
  order: 3;
}

#interview .interview_child div.flex_order4 {
  order: 4;
}

#interview .interview_child h3 {
  font-size: 2em;
  text-align: center;
  border-bottom: 2px solid #e60012;
}

#interview .interview_child h3 span {
  font-size: 50%;
}

#interview .interview_child h4 {
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 1em 0;
}

#interview .interview_child dl {
  margin: 1em;
  font-size: 1.2em;
}

#interview .interview_child dl dt,
#interview .interview_child dl dd {
  display: inline-block;
  margin: 0 0 0.5em 0;
  text-indent: -1.5em;
  padding: 0 0 0 1.5em;
  line-height: 1.5em;
}

#interview .interview_child dl dt .question,
#interview .interview_child dl dd .question {
  color: #e60012;
}

#interview .interview_child dl dt .answer,
#interview .interview_child dl dd .answer {
  color: #86c8dc;
}

#interview .interview_child dl dd {
  font-size: 1.5rem;
}

#interview .interview_child .operator_prof {
  font-family: YuGothic;
}

#interview .interview_child .operator_prof .bg_red,
#interview .interview_child .operator_prof .bg_white {
  display: block;
  font-size: 0.8em;
  padding: 0 0.5em;
}

#interview .interview_child .operator_prof .bg_white {
  line-height: 1.5em;
  color: #000;
}

#interview .interview_child .operator_comment {
  font-family: YuGothic;
  font-size: 1em;
  line-height: 1.5em;
}

@media only screen and (max-width: 800px) {
  #interview .interview_child {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #interview .interview_child div {
    width: 90%;
  }

  #interview .interview_child h3 {
    font-size: 1.5em;
  }
}

#pickup_job_voice {
  margin: 0;
  position: relative;
}

#pickup_job_voice .job_image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto 2em;
}

#pickup_job_voice .job_image img {
  width: 100%;
  height: 300px;
  object-fit: cover;

}

#pickup_job_voice .wrap {
  padding: 15em 0 2em;
}

#pickup_job_voice .wrap p {
  padding: 2em;
  line-height: 1.5;
}

#pickup_job_voice .wrap p strong {
  font-weight: bold;
  font-size: 1.2em;
}

#pickup_job_voice .wrap .note {
  color: #fff;
}

#pickup_job_voice .job_flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  padding: 1em 1em 3em;
}

#pickup_job_voice .job_flow .job_flow_wrap {
  width: calc(50% - 1em);
}

#pickup_job_voice .job_flow .job_flow_wrap h3 {
  color: #fff;
  font-size: 1.5em;
  border-bottom: 2px solid #e60012;
}

#pickup_job_voice .job_flow .job_flow_wrap .job_flow_img {
  display: flex;
  justify-content: space-around;
  padding: 0.5em;
}

#pickup_job_voice .job_flow .job_flow_wrap .job_flow_img img {
  width: calc(50% - 1em);
}

#pickup_job_voice .job_flow .job_flow_wrap p.content_text {
  padding: 0 0.5em;
  font-size: 1em;
  text-align: left;
  line-height: 1.2;
}

#pickup_job_voice .swiper_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 3em auto;
  overflow: hidden;
  position: relative;
}

#pickup_job_voice .swiper_wrap .swiper-slide {
  padding: 0.5em;
}

@media only screen and (max-width: 800px) {
  #pickup_job_voice .wrap {
    padding: 9em 0 2em;
  }

  #pickup_job_voice .job_image img {
    height: 180px;
  }

  #pickup_job_voice .job_flow .job_flow_wrap {
    width: auto;
  }
}

#jobdata .benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  justify-content: center;
  gap: 1em;
  max-width: 700px;
  margin: 2em auto;
}

#jobdata .benefits li {
  width: 100%;
  max-width: 220px;
  height: auto;
}

@media (max-width: 800px) {
  #jobdata .benefits {
    margin: 1em 0;
  }

  #jobdata .benefits li {
    width: calc(33.3333333333% - 1em);
    height: auto;
  }
}

#areamap {
  background: url(../img/areamap_bg.png) top center no-repeat;
  background-size: cover;
  padding: 0 0 2em 0;
}

#areamap h2,
#areamap h3,
#areamap .subtitle {
  color: #fff;
  line-height: 1.5em;
  margin: 0 0 1em;
}

#areamap .access_wrap {
  width: 90%;
  max-width: 580px;
  margin: 0 auto;
}

#areamap .access_wrap .map_fukuoka {
  display: block;
  margin: 0 auto 1em;
  width: 100%;
}

#areamap .access_wrap .access li {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.5em;
  text-align: left;
  margin: 0 0 1em;
}

#areamap .access_wrap .access li span {
  margin-right: 0.5em;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
}

#areamap .access_wrap .access li .car {
  background: url(../img/icon_car-8.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#areamap .access_wrap .access li .train {
  background: url(../img/icon_train-8.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#areamap .access_wrap .access li .bike {
  background: url(../img/icon_bike-8.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#areamap .map_btn {
  width: 80%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  border: 1px solid;
  text-align: center;
  padding: 0.2em;
  border-radius: 100px;
}

#areamap .map_btn::after {
  content: "";
  background: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 0.5em;
}

#areamap .googlemap {
  width: 90%;
  max-width: 580px;
  margin: 1em auto;
  box-sizing: border-box;
}

#areamap .googlemap .googlemap iframe,
#areamap .googlemap .googlemap object,
#areamap .googlemap .googlemap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#areamap .googlemap p {
  color: #fff;
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 1em 0 0;
}

#areamap .bold {
  text-align: center;
  color: #fff;
}

iframe {
  width: 100%;
}

#spotguide {
  padding: 0 0 3em 0;
}

#spotguide .spot_map {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#spotguide .spot_map li {
  width: 25%;
  background: #000;
  border: 2px solid #fff;
  margin: 0;
  text-align: center;
  line-height: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

#spotguide .spot_map li span {
  display: inline-block;
  width: 100%;
  margin: 0.5em 0;
  height: auto;
  color: #fff;
  font-size: 80%;
}

#spotguide .bold {
  text-align: center;
  padding-top: 1em;
}

@media only screen and (max-width: 800px) {
  #spotguide h2 {
    font-size: 1.2em;
  }

  #spotguide .spot_map li {
    width: 50%;
  }
}

#entrymelit {
  background: #e60012;
  padding: 1em;
}

#entrymelit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

#entrymelit ul li {
  width: 30%;
  max-width: 100px;
  background: #fff;
  padding: 1em;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: #666;
  font-size: 1.25em;
}

@media only screen and (max-width: 800px) {
  #entrymelit ul {
    padding-bottom: 2em;
  }

  #entrymelit ul li {
    width: 30%;
    max-width: 150px;
    margin-bottom: -1em;
    font-size: clamp(14px, 5vw, 1.5em);
  }
}

/*# sourceMappingURL=style.css.map */

/* 先輩スタッフの声 */
#staffvoice h3 {
  text-align: center;
  font-size: clamp(16px, 4.5vw, 35px);
  font-weight: bold;
  margin: 1em 0;
}

#staffvoice .voicewrap {
  background: #eee;
  margin: 1em auto;
  padding: 1em;
  margin-top: min(15vw + 3em, 145px + 3em);
  padding-top: min(15vw + 1em, 145px + 1em);
  line-height: 1.5;
  position: relative;
}

.voicewrap .parson {
  width: 90%;
  margin: 0 auto;
  aspect-ratio: 6/2;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  position: absolute;
  top: max(-15vw, -145px);
  left: 50%;
  translate: -50% 0;
}

.voicewrap .parson img,
.voicewrap .parson dl {
  width: 50%;
  font-size: clamp(10px, 3vw, 21px);
  padding: 1em;
}

.voicewrap .parson img {
  object-fit: cover;
  height: 100%;
}

.voicewrap .qanda {
  margin: 1em;
}

.voicewrap .qanda+hr {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.voicewrap .qanda dt {
  font-weight: bold;
  display: flex;
  gap: 1em;
  margin: 0.5em 0;
}

.voicewrap .qanda dt::before,
.voicewrap .qanda dd::before {
  content: "";
  color: #fff;
  text-align: center;
  padding: 0.25em;
  width: 1em;
  flex-shrink: 0;
}

.voicewrap .qanda dd {
  display: flex;
  gap: 1em;
}

.voicewrap .qanda dt::before {
  content: "Q";
  background: #0aa;
}

.voicewrap .qanda dd::before {
  content: "A";
  background: #e60012;
}

@media only screen and (max-width: 800px) {
  #staffvoice .voicewrap .qanda {
    margin: 1em 0;
  }
}

/* 面倒な手続きなし */
#barrierfree {
  color: #fff;
  background: #e60012;
  overflow: hidden;
  text-align: center;
  line-height: 1.5;
}

#barrierfree h2 {
  margin: 1em auto;
}

#barrierfree ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin: 2em 1em;
}

#barrierfree ul li {
  width: 20%;
  max-width: 200px;
}

#barrierfree ul li img {
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

@media only screen and (max-width: 800px) {
  #barrierfree ul li {
    width: 45%;
    max-width: 200px;
  }
}




/*****ハンバーガーボタン*****/
/* ボタンの基本スタイル（右下に固定） */
.menu-trigger {
  position: fixed;
  bottom: 70%;
  /* 親指で押しやすい高さ */
  right: 0;
  width: 36px;
  height: 60px;
  background-color: #e60012;
  border-radius: 10px 0 0 10px;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.4s ease;
  box-shadow: -3px 2px 4px rgba(0, 0, 0, 0.2);

  /* アニメーション用 */

}

/* メニュー展開時のボタン移動（左へスライド） */
.menu-trigger.active {
  right: 300px;
  z-index: 10002;
  /* メニューの幅 + 余白分移動 */

}

/* 三本線のデザイン */
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.menu-trigger span:nth-of-type(1) {
  top: 20px;
}

.menu-trigger span:nth-of-type(2) {
  top: 28px;
}

.menu-trigger span:nth-of-type(3) {
  top: 36px;
}

/* 展開時の×印アニメーション */
.menu-trigger.active span {
  background: #fff;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 22px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  top: 34px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

/* メニュー本体（右側から隠しておく） */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  /* 隠しておく */
  width: 300px;
  height: 100%;
  background-color: #e60012;
  z-index: 999;
  transition: all 0.4s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10001;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu.active {
  right: 0;
  z-index: 10001;
}

/* リンクのスタイル */
.nav-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.nav-menu li {
  width: 70%;
  margin: 0 auto;
}

.nav-menu li a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.nav-menu li a.menu_entrybtn {
  display: block;
  margin: 30px auto 0;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  color: #e60012;
  width: 100%;
  border-radius: 100px;
  background: #fff;
}


/* オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 10000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


/* [仕事内容--詳しく見る--]ボタンのスタイル */
.details-button {
  background-color: #000;
  color: white;
  padding: 12px 24px;
  border: solid 1px #fff;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin: 0 0 1em;
  width: 70%;
  max-width: 200px;
}

.details-button:hover {
  background-color: #353535;
}

/* 詳細コンテンツのコンテナ（アニメーションの肝） */
.content-wrapper {
  max-height: 0;
  /* 最初は高さを0にする */
  overflow: hidden;
  /* はみ出た中身を隠す */
  opacity: 0;
  /* 最初は透明 */
  transition: max-height 0.5s ease, opacity 0.5s ease;
  /* 0.5秒かけて変化 */
  max-width: 100%;
}

/* 表示状態のクラス（JavaScriptで付与） */
.content-wrapper.is-open {
  max-height: 940px;
  /* 内容が十分収まる高さを指定 */
  opacity: 1;
  /* 不透明にする */
}