@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  letter-spacing: 0.03em;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #222222;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

.pc-no {
  display: none;
}

.sp-no {
  display: block;
}

@media screen and (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }

  .pc-no {
    display: block;
  }

  .sp-no {
    display: none;
  }
}

/* ------------------------------
header
---------------------------------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  background-color: #F7F6F4;
  z-index: 20;
}

.header .wrapper {
  padding: 0 0 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .wrapper .event-name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

.header .wrapper .event-name span {
  color: #CB3F2D;
}

@media screen and (max-width: 768px) {
  .header .wrapper {
    padding: 0.8rem 0 0.8rem 1rem;
  }

  .header .wrapper .event-name {
    font-size: 15px;
  }
}

.nav_pc {
  width: 60%;
}

.nav_pc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; */
  -ms-flex-pack: distribute;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.nav_pc ul li {
  text-align: center;
}

.nav_pc ul li:not(:last-child) a {
  color: #222222;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav_pc ul li:not(:last-child) a:hover {
  color: #CB3F2D;
}

.nav_pc ul li:last-child a {
  background-color: #CB3F2D;
  color: #fff;
  padding: 1.5rem;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav_pc ul li:last-child a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/application-arrow.png);
  background-size: cover;
  vertical-align: text-top;
  margin-left: 0.8rem;
}

.nav_pc ul li:last-child a:hover {
  background-color: #901B0C;
}

.ipad-no {
  display: block;
}

.hamburger-menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .nav_pc {
    width: 72%;
  }
}

@media screen and (max-width: 768px) {
  .ipad-no {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .wrapper-header {
    padding: 16px;
  }

  .requestbtn-fixed p {
    width: 81%;
  }

  /*============
    nav
    =============*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    right: -400px;
    bottom: 0;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 50;
    opacity: 0;
  }

  .open nav {
    right: 0;
    opacity: 1;
  }

  nav .inner {
    padding: 5rem 1rem;
  }

  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }

  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }

  nav .inner ul li a:hover {
    background: #e4e4e4;
  }

  /*============
    .toggle_btn
    =============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    -webkit-transition: all .5s;
    transition: all .5s;
    cursor: pointer;
    z-index: 70;
    background-color: #901B0C;
    border-radius: 25px;
  }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 7px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  .toggle_btn span:nth-child(1) {
    width: 24px;
    top: 11px;
  }

  .toggle_btn span:nth-child(2) {
    width: 12px;
    top: 20px;
  }

  .toggle_btn span:nth-child(3) {
    width: 24px;
    bottom: 10px;
  }

  .open .toggle_btn span {
    background-color: #fff;
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateY(7px) rotate(-315deg);
  }

  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }

  /*============
    #mask
    =============*/
  #mask {
    display: none;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 20;
    cursor: pointer;
  }

  .inner ul li {
    text-align: center;
  }

  .inner ul li a p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    padding-bottom: 4px;
  }

  .inner ul li:nth-child(1) a p {
    color: #2695D1;
  }

  .inner ul li:nth-child(2) a p {
    color: #00B168;
    width: 75%;
    margin: 0 auto;
  }

  .inner ul li:nth-child(3) a p {
    color: #F15A25;
  }

  .inner ul li:nth-child(4) a p {
    color: #2667B2;
  }

  .inner ul li a span {
    font-size: 12px;
    color: #171717;
  }

  .company-name {
    width: 140px;
  }

  .application-btn__sp {
    display: block;
    position: fixed;
    top: 29px;
    right: 72px;
    z-index: 70;
  }

  .application-btn__sp a {
    color: #fff;
    background-color: #CB3F2D;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
}

@media screen and (max-width: 640px) {
  nav {
    width: 100%;
    height: 70vh;
  }
}

.entrance-fixed {
  width: 30%;
  max-width: 360px;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 20;
}

.entrance-fixed a {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #25264E;
  width: 100%;
  background-color: #FEDD33;
  border: 2px solid #fff;
  padding: 1rem;
  display: block;
  border-radius: 1rem;
  line-height: 1.5;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-animation: key1 .5s ease infinite alternate;
  animation: key1 .5s ease infinite alternate;
}

.entrance-fixed a p {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
}

.entrance-fixed a:hover {
  background-color: #ffd602;
}

@media screen and (max-width: 768px) {
  .entrance-fixed {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .entrance-fixed {
    width: 80%;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ------------------------------
top
---------------------------------- */
.top {
  background-color: #F7F6F4;
  position: relative;
}

.top::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
  /*ここで三角形のサイズを決める。必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 0 0 120px 100vw;
  /*transparentで余分な線を消す*/
  border-color: transparent transparent transparent #F7F6F4;
}

.top .wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2rem;
}

.top .wrapper figure {
  width: 25%;
}

.top .wrapper .top-content {
  width: 50%;
}

.top .wrapper .top-content .top-heading {
  font-size: 1.25rem;
  color: #901B0C;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 1rem;
  background-color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
  border-radius: 6px;
  line-height: 1.8;
}

.top .wrapper .top-content .top-heading .top-br {
  display: none;
}

.top .wrapper .top-content .top-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.top .wrapper .top-content .top-title span {
  color: #CB3F2D;
}

.top .wrapper .top-content .top-point {
  width: 75%;
  max-width: 768px;
  margin: 0 auto;
}

.top .wrapper .top-content .top-point ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top .wrapper .top-content .top-point ul li {
  color: #fff;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  width: 30%;
  margin: 0 auto;
  background-size: cover;
  width: 145px;
  height: 152px;
  position: relative;
}

.top .wrapper .top-content .top-point ul li span {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}

.top .wrapper .top-content .top-point ul li:first-child {
  background-image: url(../images/top-polygon__1.png);
}

.top .wrapper .top-content .top-point ul li:first-child span {
  top: 40%;
}

.top .wrapper .top-content .top-point ul li:nth-child(2) {
  background-image: url(../images/top-polygon__2.png);
}

.top .wrapper .top-content .top-point ul li:nth-child(3) {
  background-image: url(../images/top-polygon__3.png);
}

.top .top-explanation {
  position: relative;
  bottom: 2rem;
  z-index: 2;
}

.top .top-explanation .top-explanation-bg {
  max-width: 880px;
  width: 80%;
  height: 210px;
  background-color: #66180E;
  position: absolute;
  left: 21px;
  right: 0;
  top: -12px;
  margin: auto;
}

.top .top-explanation .top-explanation-part {
  padding: 1.5rem 0;
  background-color: #fff;
  max-width: 880px;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.top .top-explanation .top-explanation-part .top-explanation-inner {
  width: 85%;
  margin: 0 auto;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  line-height: 1.8;
  padding: 0.5rem 0;
  margin-bottom: 1.25rem;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption .blue-text {
  font-size: 18px;
  color: #2D92CB;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption .small-text {
  font-size: 18px;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption .top-br {
  display: none;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text {
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text p {
  width: 50%;
  line-height: 1.8;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text .top-application-btn {
  width: 45%;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text .top-application-btn a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #CB3F2D;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  padding: 1.5rem 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text .top-application-btn a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/application-arrow.png);
  background-size: cover;
  vertical-align: text-top;
  margin-left: 1rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text .top-application-btn a:hover {
  background-color: #901B0C;
}

@media screen and (max-width: 1300px) {
  .top .wrapper {
    padding-bottom: 5rem;
  }

  .top .wrapper .top-content {
    width: 60%;
  }

  .top .wrapper .top-content .top-heading {
    margin-top: 4rem;
  }

  .top .wrapper .top-content .top-point {
    width: 90%;
  }
}

@media screen and (max-width: 1080px) {
  .top .wrapper {
    padding-bottom: 5rem;
  }

  .top .wrapper .top-content {
    width: 60%;
  }

  .top .wrapper .top-content .top-heading .top-br {
    display: block;
  }

  .top .wrapper .top-content .top-point {
    width: 90%;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .top .wrapper {
    background-image: url(../images/top-bg__sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 650px;
  }

  .top .wrapper .top-img-left {
    display: none;
  }

  .top .wrapper .top-img-right {
    display: none;
  }

  .top .wrapper .top-content {
    width: 90%;
  }

  .top .top-explanation .top-explanation-bg {
    height: 323px;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption .top-br {
    display: block;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text {
    display: block;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text p {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text .top-application-btn {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    padding-top: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .top::after {
    bottom: -80px;
    border-width: 0 0 80px 100vw;
  }

  .top .wrapper {
    background-size: contain;
    height: 710px;
    padding-bottom: 15rem;
  }

  .top .wrapper .top-content {
    width: 90%;
  }

  .top .wrapper .top-content .top-heading {
    font-size: 0.9rem;
  }

  .top .wrapper .top-content .top-title {
    font-size: 2.2rem;
  }

  .top .wrapper .top-content .top-point {
    width: 100%;
  }

  .top .wrapper .top-content .top-point ul li {
    width: 100px;
    height: 106px;
  }

  .top .wrapper .top-content .top-point ul li span {
    font-size: 12px;
  }

  .top .top-explanation {
    bottom: 12rem;
  }

  .top .top-explanation .top-explanation-bg {
    height: 340px;
    width: 91%;
  }

  .top .top-explanation .top-explanation-part {
    width: 92%;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner {
    width: 95%;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption {
    font-size: 1.3rem;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-caption .top-br {
    display: block;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text {
    display: block;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text p {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .top .top-explanation .top-explanation-part .top-explanation-inner .top-explanation-text .top-application-btn {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    padding-top: 2rem;
  }
}

/* ------------------------------
about
---------------------------------- */
.about {
  background-color: #901B0C;
  position: relative;
}

.about .wrapper {
  margin: 0 auto;
  padding: 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16rem 0px 1rem;
}

.about .wrapper .about-left {
  width: 50%;
  padding: 0 0 0 10%;
}

.about .wrapper .about-left h3 {
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #A53122;
  padding-bottom: 2rem;
}

.about .wrapper .about-left .about-left-text p {
  color: #fff;
  line-height: 2.4;
  padding-bottom: 1.5rem;
  z-index: 11;
  position: relative;
}

.about .wrapper .about-right {
  width: 45%;
  position: relative;
}

.about .wrapper .about-right img {
  position: absolute;
  right: 0;
  bottom: -300px;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .about .wrapper .about-left {
    padding: 0 0 0 5%;
  }
}

@media screen and (max-width: 1080px) {
  .about .wrapper .about-left {
    padding: 0 0 0 5%;
  }

  .about .wrapper .about-right img {
    bottom: -160px;
  }
}

@media screen and (max-width: 768px) {
  .about .wrapper {
    display: block;
    padding: 23rem 0px 0;
  }

  .about .wrapper .about-left {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .about .wrapper .about-right {
    width: 100%;
  }

  .about .wrapper .about-right img {
    padding-left: 50%;
  }
}

@media screen and (max-width: 640px) {
  .about::after {
    bottom: -80px;
    border-width: 0 0 80px 100vw;
  }

  .about .wrapper {
    padding: 16rem 0px 3rem;
  }

  .about .wrapper .about-left h3 {
    font-size: 3rem;
  }

  .about .wrapper .about-left p {
    text-align: justify;
  }

  .about .wrapper .about-right img {
    padding-left: 16%;
    bottom: -140px;
  }
}

/* ------------------------------
company
---------------------------------- */
.company {
  background-color: #F7F6F4;
  padding: 20rem 0 8rem;
  position: relative;
}

.company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  /*ここで三角形のサイズを決める。必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 0 0 120px 100vw;
  /*transparentで余分な線を消す*/
  border-color: transparent transparent transparent #901B0C;
}

.company::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  /*ここで三角形のサイズを決める。必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 120px 0 0 100vw;
  /*transparentで余分な線を消す*/
  border-color: #F7F6F4 transparent transparent transparent;
}

.company .wrapper {
  position: relative;
}

.company .wrapper::after {
  content: "";
  background-image: url(../images/company-bg__right.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 200px;
  height: 500px;
  position: absolute;
  top: -5px;
  right: 0;
}

.company .wrapper::before {
  content: "";
  background-image: url(../images/company-bg__left.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 300px;
  height: 230px;
  position: absolute;
  top: 165px;
  left: 0;
}

.company .wrapper h3 {
  text-align: center;
  position: relative;
  padding-bottom: 5rem;
}

.company .wrapper h3 p {
  font-size: 2rem;
  font-weight: bold;
  color: #CB3F2D;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.company .wrapper h3::after {
  content: "COMPANY";
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #F1EDE5;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}

.company .wrapper .attention-text {
  text-align: center;
  padding-bottom: 2rem;
}

@media screen and (max-width: 640px) {
  .company {
    padding: 16rem 0 4rem;
  }

  .company::before {
    border-width: 0 0 80px 100vw;
  }

  .company::after {
    bottom: -80px;
    border-width: 80px 0 0 100vw;
  }

  .company .wrapper::after {
    display: none;
  }

  .company .wrapper::before {
    display: none;
  }

  .company .wrapper h3::after {
    font-size: 3.7rem;
    top: -2rem;
  }
}

/* ------------------------------
recruit
---------------------------------- */
.recruit {
  padding: 16rem 0 8rem;
  position: relative;
}

.recruit .wrapper h3 {
  text-align: center;
  position: relative;
}

.recruit .wrapper h3 p {
  font-size: 2rem;
  font-weight: bold;
  color: #CB3F2D;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.recruit .wrapper h3::after {
  content: "RECRUIT";
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #F3F3F3;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}

.recruit .wrapper .recruit-content {
  max-width: 1150px;
  width: 90%;
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.recruit .wrapper .recruit-content #om-jobs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container {
  width: 32%;
  margin: 0 auto;
  background-color: #F7F6F4;
  border: 1px solid #CB3F2D;
  padding: 2rem 1rem 1rem;
  position: relative;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container h4 {
  line-height: 1.8;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-company-name {
  font-size: 14px;
  line-height: 1.8;
  color: #CB3F2D;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-employment span {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #fff;
  padding: 0 0.5rem;
  display: inline-block;
  background-color: #CB3F2D;
  margin-bottom: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-salary {
  vertical-align: middle;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-salary span {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-salary::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/money-icon.png);
  background-size: cover;
  vertical-align: text-top;
  margin-right: 0.2rem;
  position: relative;
  top: 3px;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-location {
  vertical-align: middle;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-location span {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-location::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/location-icon.png);
  background-size: cover;
  vertical-align: text-top;
  margin-right: 0.2rem;
  position: relative;
  top: 3px;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-detail-btn {
  margin-top: 0.8rem;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-detail-btn a {
  font-weight: bold;
  color: #CB3F2D;
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-detail-btn a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/application-arrow__red.png);
  background-size: cover;
  vertical-align: text-top;
  margin-left: 1rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.recruit .wrapper .recruit-content #om-jobs-container .job_container .job-detail-btn a:hover {
  background-color: #ead1cd;
}

.recruit .wrapper .job-list-btn {
  width: 30%;
  margin: 0 auto;
}

.recruit .wrapper .job-list-btn a {
  color: #CB3F2D;
  text-align: center;
  padding: 1rem;
  border: 1px solid #CB3F2D;
  display: block;
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

.recruit .wrapper .job-list-btn a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/application-arrow__red.png);
  background-size: cover;
  vertical-align: text-top;
  margin-left: 1rem;
}

.recruit .wrapper .job-list-btn a:hover {
  background-color: #F7F6F4;
}

@media screen and (max-width: 768px) {
  .recruit .wrapper .recruit-content {
    padding: 8rem 0 2rem;
  }

  .recruit .wrapper .recruit-content #om-jobs-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .recruit .wrapper .recruit-content #om-jobs-container .job_container {
    width: 48%;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .recruit {
    padding: 16rem 0;
  }

  .recruit .wrapper h3::after {
    font-size: 3.7rem;
    top: -2rem;
  }

  .recruit .wrapper .recruit-content {
    display: block;
  }

  .recruit .wrapper .recruit-content #om-jobs-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .recruit .wrapper .recruit-content #om-jobs-container .job_container {
    width: 100%;
  }

  .recruit .wrapper .job-list-btn {
    width: 80%;
  }
}

/* ------------------------------
application
---------------------------------- */
.application {
  background-image: url(../images/application-bg.png);
  background-size: cover;
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
}

.application.bottom {
  position: relative;
  top: -150px;
}

.application .wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 0;
  padding-top: 4rem;
}

.application .wrapper .application-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.application .wrapper .application-content .application-left {
  width: 50%;
}

.application .wrapper .application-content .application-right {
  width: 50%;
  background-color: #fff;
  padding: 1.5rem 0;
  margin: 0 auto;
}

.application .wrapper .application-content .application-right .application-right-text {
  width: 85%;
  margin: 0 auto 1rem;
  padding: 0.5rem 0;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.application .wrapper .application-content .application-right .application-right-text li {
  text-align: center;
  line-height: 1.8;
}

.application .wrapper .application-content .application-right .application-right-text li:first-child {
  font-size: 1.5rem;
}

.application .wrapper .application-content .application-right .application-right-text li:first-child span {
  color: #2D92CB;
}

.application .wrapper .application-content .application-right .application-right-text li:nth-child(2) {
  font-size: 18px;
}

.application .wrapper .application-content .application-right .application-right-btn {
  width: 60%;
  margin: 0 auto;
}

.application .wrapper .application-content .application-right .application-right-btn a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #CB3F2D;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  display: inline-block;
  padding: 1.5rem 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.application .wrapper .application-content .application-right .application-right-btn a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/application-arrow.png);
  background-size: cover;
  vertical-align: text-top;
  margin-left: 1rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.application .wrapper .application-content .application-right .application-right-btn a:hover {
  background-color: #901B0C;
}

@media screen and (max-width: 768px) {
  .application {
    height: 600px;
  }

  .application .wrapper {
    padding-top: 6rem;
  }

  .application .wrapper .application-content {
    display: block;
  }

  .application .wrapper .application-content .application-left {
    width: 100%;
  }

  .application .wrapper .application-content .application-right {
    width: 100%;
  }

  .application .wrapper .application-content .application-right .application-right-btn {
    width: 86%;
  }
}

@media screen and (max-width: 640px) {
  .application {
    background-image: url(../images/application-bg__sp.png);
    height: 520px;
    position: relative;
    top: -60px;
  }

  .application.bottom {
    top: -60px;
  }

  .application .wrapper {
    padding-top: 1rem;
  }
}

/* ------------------------------
video
---------------------------------- */
.video {
  padding: 10rem 0 18rem;
  position: relative;
}

.video::before {
  content: "";
  background-image: url(../images/video__1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 210px;
  height: 740px;
  position: absolute;
  top: 19rem;
  right: 0;
  z-index: -1;
}

.video::after {
  content: "";
  background-image: url(../images/video__2.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 250px;
  height: 440px;
  position: absolute;
  bottom: 22rem;
  left: 0;
  z-index: -1;
}

.video .wrapper {
  max-width: 880px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.video .wrapper h3 {
  text-align: center;
  padding-bottom: 3rem;
  position: relative;
}

.video .wrapper h3 p {
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.video .wrapper h3 p span {
  color: #CB3F2D;
}

.video .wrapper h3::after {
  content: "VIDEO";
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #F3F3F3;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}

.video .wrapper .video-text {
  text-align: center;
}

.video .wrapper .video-text dt {
  font-size: 18px;
  color: #77281E;
  font-weight: bold;
  padding-bottom: 2rem;
}

.video .wrapper .video-text dd {
  color: #946862;
  padding-bottom: 1rem;
  line-height: 1.8;
}

.video .wrapper .video-content {
  text-align: center;
  margin: 3rem auto 0;
}

@media screen and (max-width: 768px) {
  .video {
    padding: 12rem 0;
  }

  .video .wrapper .video-content {
    height: auto;
  }

  .video .wrapper .video-content iframe {
    width: 100%;
    height: 389px;
  }
}

@media screen and (max-width: 640px) {
  .video {
    padding: 7rem 0 12rem;
  }

  .video::before {
    background-image: url(../images/video__1__sp.png);
    width: 80px;
    height: 337px;
    top: auto;
    bottom: 7rem;
  }

  .video::after {
    background-image: url(../images/video__2__sp.png);
    width: 83px;
    height: 270px;
    position: absolute;
    bottom: 8rem;
  }

  .video .wrapper h3::after {
    font-size: 3.7rem;
    top: -2rem;
  }

  .video .wrapper .video-content {
    height: auto;
  }

  .video .wrapper .video-content iframe {
    width: 100%;
    height: 190px;
  }
}

/* ------------------------------
flow
---------------------------------- */
.flow {
  background-color: #F7F6F4;
  padding: 8rem 0 10rem;
  position: relative;
}

.flow::after {
  content: "";
  background-image: url(../images/flow-diagonal.png);
  background-size: cover;
  width: 100%;
  height: 155px;
  position: absolute;
  top: -155px;
}

.flow .wrapper h3 {
  text-align: center;
  padding-bottom: 3rem;
  position: relative;
}

.flow .wrapper h3 p {
  font-size: 2rem;
  color: #CB3F2D;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  margin-bottom: 2rem;
}

.flow .wrapper h3::after {
  content: "FLOW";
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #F1EDE5;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}

.flow .wrapper .flow-content {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
}

.flow .wrapper .flow-content li {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.flow .wrapper .flow-content li p {
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 2rem;
}

.flow .wrapper .flow-content li p span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  text-align: center;
}

.flow .wrapper .flow-content li:first-child p {
  background-image: url(../images/flow-polygon__1.png);
}

.flow .wrapper .flow-content li:first-child .flow-text dt {
  color: #D05A4B;
}

.flow .wrapper .flow-content li:nth-child(2) {
  margin-left: 8%;
}

.flow .wrapper .flow-content li:nth-child(2) p {
  background-image: url(../images/flow-polygon__2.png);
}

.flow .wrapper .flow-content li:nth-child(2) .flow-text dt {
  color: #CB3F2D;
}

.flow .wrapper .flow-content li:nth-child(3) {
  margin-left: 16%;
}

.flow .wrapper .flow-content li:nth-child(3) p {
  background-image: url(../images/flow-polygon__3.png);
}

.flow .wrapper .flow-content li:nth-child(3) .flow-text dt {
  color: #B53322;
}

.flow .wrapper .flow-content li:nth-child(4) {
  margin-left: 24%;
}

.flow .wrapper .flow-content li:nth-child(4) p {
  background-image: url(../images/flow-polygon__4.png);
}

.flow .wrapper .flow-content li:nth-child(4) .flow-text dt {
  color: #901B0C;
}

.flow .wrapper .flow-content li .flow-text {
  width: 75%;
  padding-left: 1.5rem;
}

.flow .wrapper .flow-content li .flow-text dt {
  font-size: 19px;
  font-weight: bold;
  padding-bottom: 1rem;
}

.flow .wrapper .flow-content li .flow-text dd {
  line-height: 1.8;
}

.flow .wrapper .flow-content li .flow-text dd a {
  color: #2D92CB;
}

@media screen and (max-width: 768px) {
  .flow .wrapper .flow-content {
    width: 90%;
    margin-top: 3rem;
  }

  .flow .wrapper .flow-content li {
    width: 100%;
    margin-bottom: 3rem;
  }

  .flow .wrapper .flow-content li p {
    margin-bottom: 0;
  }

  .flow .wrapper .flow-content li:nth-child(2) {
    margin-left: 0;
  }

  .flow .wrapper .flow-content li:nth-child(3) {
    margin-left: 0;
  }

  .flow .wrapper .flow-content li:nth-child(4) {
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .flow {
    padding: 8rem 0px 10rem;
  }

  .flow::after {
    background-image: url(../images/flow-diagonal__sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 70px;
    top: -65px;
  }

  .flow .wrapper h3::after {
    font-size: 3.7rem;
    top: -2rem;
  }

  .flow .wrapper .flow-content li {
    display: block;
  }

  .flow .wrapper .flow-content li p {
    margin: 0 auto 1.5rem;
  }

  .flow .wrapper .flow-content li:nth-child(2) {
    margin-left: 0;
  }

  .flow .wrapper .flow-content li:nth-child(3) {
    margin-left: 0;
  }

  .flow .wrapper .flow-content li:nth-child(4) {
    margin-left: 0;
  }

  .flow .wrapper .flow-content li .flow-text {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .flow .wrapper .flow-content li .flow-text dt {
    font-size: 19px;
    font-weight: bold;
    padding-bottom: 1rem;
  }

  .flow .wrapper .flow-content li .flow-text dd {
    line-height: 1.8;
  }

  .flow .wrapper .flow-content li .flow-text dd a {
    color: #2D92CB;
  }
}

/* ------------------------------
question
---------------------------------- */
.question {
  /*2025/08/19 padding: 1rem 0 8rem; */
  position: relative;
}

.question .wrapper {
  max-width: 1150px;
  width: 90%;
  margin: 0 auto;
}

.question .wrapper h3 {
  text-align: center;
  position: relative;
}

.question .wrapper h3 p {
  font-size: 2rem;
  font-weight: bold;
  color: #CB3F2D;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.question .wrapper h3::after {
  content: "Q&A";
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #F3F3F3;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}

.question .wrapper .question-content {
  padding: 6rem 0 3rem;
}

.question .wrapper .question-content .question-content__inner li {
  margin-bottom: 2rem;
}

.question .wrapper .question-content .question-content__inner li dl dt {
  color: #fff;
  background-color: #901B0C;
  padding: 1.5rem 2rem 1rem;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.question .wrapper .question-content .question-content__inner li dl dt span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  padding-right: 1rem;
  line-height: 1;
}

.question .wrapper .question-content .question-content__inner li dl dd {
  background-color: #F7F6F4;
  padding: 1.5rem 2rem 1rem;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.question .wrapper .question-content .question-content__inner li dl dd span {
  color: #901B0C;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  padding-right: 1rem;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  .question {
    /*2025/08/19 padding: 8rem 0 5rem; */
  }

  .question .wrapper .question-content .question-content__inner li dl dt {
    padding: 1.5rem 1rem 1rem;
  }

  .question .wrapper .question-content .question-content__inner li dl dd {
    padding: 1.5rem 1rem 1rem;
  }
}

/* ------------------------------
footer
---------------------------------- */
.footer {
  background-color: #EAD1CD;
  position: relative;
}

.footer::before {
  content: "";
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  width: 48%;
  height: 395px;
  position: absolute;
  right: 0;
  top: 0;
}

.footer .wrapper {
  max-width: 1150px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}

.footer .wrapper .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.footer .wrapper .footer-content .footer-left {
  width: 50%;
}

.footer .wrapper .footer-content .footer-left .footer-event-name {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1rem;
  line-height: 1.8;
}

.footer .wrapper .footer-content .footer-left .footer-event-name span {
  color: #CB3F2D;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li span {
  font-size: 0.8rem;
  color: #fff;
  background-color: #901B0C;
  padding: 0.2rem 1rem;
  text-align: center;
  border-radius: 4px;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:first-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:first-child p {
  font-weight: bold;
  padding-left: 0.8rem;
  line-height: 1.6;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) dl {
  line-height: 1.6;
  padding-left: 0.8rem;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) dl dt {
  font-weight: bold;
  padding-bottom: 0.5rem;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) dl dd a {
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) dl dd a:hover {
  text-decoration: underline;
}

.footer .wrapper .footer-content .footer-right {
  position: relative;
  z-index: 2;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 12px;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #901B0C;
  text-align: center;
  padding-bottom: 1rem;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info {
  line-height: 1.8;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info li {
  text-align: center;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info li:first-child {
  font-weight: bold;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-tel {
  background-color: #CB3F2D;
  border-radius: 50px;
  margin: 0.5rem 0;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-tel .footer-tel__inner {
  padding: 1rem;
  position: relative;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-tel .footer-tel__inner p {
  font-size: 0.9rem;
  color: #fff;
  padding-left: 0.8rem;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-tel .footer-tel__inner p::before {
  content: "";
  display: block;
  width: 18px;
  height: 16px;
  background-image: url(../images/tel-icon.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin: auto;
  left: 1.5rem;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-mail {
  background-color: #CB3F2D;
  border-radius: 50px;
  margin: 0.5rem 0;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-mail .footer-mail__inner {
  padding: 1rem;
  position: relative;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-mail .footer-mail__inner p {
  font-size: 0.9rem;
  color: #fff;
  padding-left: 0.8rem;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-mail .footer-mail__inner p::before {
  content: "";
  display: block;
  width: 17px;
  height: 14px;
  background-image: url(../images/mail-icon.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin: auto;
  left: 1.5rem;
}

.footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info .footer-small {
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .footer::before {
    content: "";
    background-image: url(../images/footer-bg__sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 480px;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .footer .wrapper .footer-content {
    display: block;
  }

  .footer .wrapper .footer-content .footer-left {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer .wrapper .footer-content .footer-left .footer-event-name {
    text-align: center;
  }

  .footer .wrapper .footer-content .footer-left .footer-left__info li {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .footer .wrapper .footer-content .footer-left .footer-left__info li:first-child {
    display: block;
  }

  .footer .wrapper .footer-content .footer-left .footer-left__info li:first-child p {
    margin-top: 0.8rem;
    padding-left: 0;
  }

  .footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) {
    display: block;
  }

  .footer .wrapper .footer-content .footer-left .footer-left__info li:nth-child(2) dl {
    margin-top: 0.8rem;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .footer::before {
    height: 270px;
  }

  .footer .wrapper .footer-content .footer-left .footer-event-name {
    padding-bottom: 3rem;
  }

  .footer .wrapper .footer-content .footer-right .footer-right__inner {
    padding: 1.5rem 1rem;
  }

  .footer .wrapper .footer-content .footer-right .footer-right__inner .footer-right__info li:first-child {
    font-size: 0.9rem;
  }
}

/* ------------------------------
job-list-page
---------------------------------- */
.heading-job-list {
  position: relative;
}

.heading-job-list .wrapper {
  padding: 12rem 0 6rem;
}

.heading-job-list .wrapper h2 {
  text-align: center;
  position: relative;
}

.heading-job-list .wrapper h2 p {
  font-size: 2rem;
  font-weight: bold;
  color: #CB3F2D;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.heading-job-list .wrapper h2::after {
  content: "RECRUIT";
  font-size: 5.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #F3F3F3;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}

.form .wrapper {
  max-width: 1150px;
  width: 85%;
  margin: 0 auto 3rem;
  padding: 3rem;
  background-color: #F7F6F4;
}

.form .wrapper #om-forms-container .om-forms-upside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-industry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60%;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-industry p {
  font-size: 1.1rem;
  margin-right: 1rem;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-industry .forms-industry__inner {
  position: relative;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-industry .forms-industry__inner::after {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-industry .forms-industry__inner select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  padding: 8px 38px 8px 8px;
  color: #666666;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-industry .forms-industry__inner select::-ms-expand {
  display: none;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-municipalities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40%;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-municipalities p {
  font-size: 1.1rem;
  margin-right: 1rem;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-municipalities .forms-municipalities__inner {
  position: relative;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-municipalities .forms-municipalities__inner::after {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-municipalities .forms-municipalities__inner select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  padding: 8px 38px 8px 8px;
  color: #666666;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}

.form .wrapper #om-forms-container .om-forms-upside .forms-municipalities .forms-municipalities__inner select::-ms-expand {
  display: none;
}

.form .wrapper #om-forms-container .forms-words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form .wrapper #om-forms-container .forms-words p {
  font-size: 1.1rem;
  margin-right: 1rem;
}

.form .wrapper #om-forms-container .forms-words .forms-words__inner {
  position: relative;
  width: 40%;
}

.form .wrapper #om-forms-container .forms-words .forms-words__inner input {
  width: 100%;
  padding: 8px;
  -webkit-transition: .3s;
  transition: .3s;
  letter-spacing: 1px;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  color: #666666;
}

.form .wrapper #om-forms-container .forms-words .forms-words__inner input::-webkit-input-placeholder {
  color: #e8e8e8;
}

.form .wrapper #om-forms-container .forms-words .forms-words__inner input:-ms-input-placeholder {
  color: #e8e8e8;
}

.form .wrapper #om-forms-container .forms-words .forms-words__inner input::-ms-input-placeholder {
  color: #e8e8e8;
}

.form .wrapper #om-forms-container .forms-words .forms-words__inner input::placeholder {
  color: #e8e8e8;
}

.form .wrapper #om-forms-container .forms-submit__btn {
  margin: 2rem auto 0;
  text-align: center;
}

.form .wrapper #om-forms-container .forms-submit__btn button {
  font-size: 1.2rem;
  font-weight: bold;
  border: 0;
  outline: 0;
  padding: .5em 4em;
  background: #CB3F2D;
  color: #fff;
  border-radius: 8px;
  -webkit-transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  letter-spacing: .5em;
  cursor: pointer;
}

.form .wrapper #om-forms-container .forms-submit__btn button:hover {
  background: #901B0C;
}

@media screen and (max-width: 768px) {
  .form .wrapper {
    padding: 2rem;
  }

  .form .wrapper #om-forms-container .om-forms-upside {
    display: block;
  }

  .form .wrapper #om-forms-container .om-forms-upside .forms-industry {
    width: 100%;
    margin-bottom: 2rem;
  }

  .form .wrapper #om-forms-container .om-forms-upside .forms-municipalities {
    width: 100%;
  }

  .form .wrapper #om-forms-container .forms-words .forms-words__inner {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .form .wrapper {
    width: 90%;
    margin: 0 auto 3rem;
    padding: 2rem 1.5rem;
  }

  .form .wrapper #om-forms-container .om-forms-upside {
    display: block;
  }

  .form .wrapper #om-forms-container .om-forms-upside .forms-industry {
    display: block;
  }

  .form .wrapper #om-forms-container .om-forms-upside .forms-industry p {
    padding-bottom: 1rem;
  }

  .form .wrapper #om-forms-container .om-forms-upside .forms-municipalities {
    display: block;
  }

  .form .wrapper #om-forms-container .om-forms-upside .forms-municipalities p {
    padding-bottom: 1rem;
  }

  .form .wrapper #om-forms-container .forms-words {
    display: block;
  }

  .form .wrapper #om-forms-container .forms-words p {
    padding-bottom: 1rem;
  }

  .form .wrapper #om-forms-container .forms-words .forms-words__inner {
    width: 100%;
  }
}

.other .wrapper {
  margin-top: 6rem;
  text-align: center;
}

.other .wrapper #om-jobs-result .result-number {
  font-size: 1.1rem;
  font-weight: bold;
  padding-bottom: 1.5rem;
}

.other .wrapper #om-jobs-result .result-number .number-text {
  font-size: 2rem;
  color: #CB3F2D;
}

.other .wrapper .page-number {
  margin-top: 4rem;
}

.job-list-content {
  margin: 5rem 0;
}

.job-list-content .wrapper {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.job-list-content .wrapper #om-jobs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.job-list-content .wrapper #om-jobs-container .job_container {
  width: 31%;
  margin: 0 auto 2rem;
  background-color: #F7F6F4;
  border: 1px solid #CB3F2D;
  padding: 2rem 1rem 1rem;
  position: relative;
}

.job-list-content .wrapper #om-jobs-container .job_container h4 {
  line-height: 1.8;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-company-name {
  font-size: 14px;
  line-height: 1.8;
  color: #CB3F2D;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-employment span {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #fff;
  padding: 0 0.5rem;
  display: inline-block;
  background-color: #CB3F2D;
  margin-bottom: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-salary {
  vertical-align: middle;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-salary span {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-salary::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/money-icon.png);
  background-size: cover;
  vertical-align: text-top;
  margin-right: 0.2rem;
  position: relative;
  top: 3px;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-location {
  vertical-align: middle;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-location span {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-location::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/location-icon.png);
  background-size: cover;
  vertical-align: text-top;
  margin-right: 0.2rem;
  position: relative;
  top: 3px;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-detail-btn {
  margin-top: 0.8rem;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-detail-btn a {
  font-weight: bold;
  color: #CB3F2D;
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-detail-btn a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/application-arrow__red.png);
  background-size: cover;
  vertical-align: text-top;
  margin-left: 1rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.job-list-content .wrapper #om-jobs-container .job_container .job-detail-btn a:hover {
  background-color: #ead1cd;
}

@media screen and (max-width: 768px) {
  .job-list-content .wrapper #om-jobs-container .job_container {
    width: 48%;
  }
}

@media screen and (max-width: 640px) {
  .job-list-content .wrapper #om-jobs-container {
    display: block;
  }

  .job-list-content .wrapper #om-jobs-container .job_container {
    width: 100%;
  }
}

/* 鹿児島高校生 */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  font-style: normal;
  line-height: inherit;
}

a {
  color: #901B0C;
  text-decoration: none;
  background-color: transparent;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

table {
  border-collapse: collapse;
}

.section b {
  font-weight: 600;
  color: #35bc63;
}

.list_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list_flow>li {
  width: 23%;
}

.list_flow>li+li {
  margin-top: 4rem;
}

.list_flow>li figure {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.list_flow>li p {
  font-size: 1.4rem;
}

.list_flow .list__num {
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  display: block;
  line-height: 1;
}

.list_flow .list__title {
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1em;
}

.btn--schedule {
  margin: 4rem auto;
  width: 40%;
  background: #35bc63;
}

#list .section__lead {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#list .section__lead::after,
#list .section__lead::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-top: 2px solid #901B0C;
}

#list .section__lead::before {
  -webkit-transform: translate(-0.5em, 1.5em) rotate(45deg);
  transform: translate(-0.5em, 1.5em) rotate(45deg);
}

#list .section__lead::after {
  -webkit-transform: translate(0.5em, 1.5em) rotate(-45deg);
  transform: translate(0.5em, 1.5em) rotate(-45deg);
}

#list .section__lead br {
  display: none;
}

.time-table {
  background: #fff;
  padding: 2rem 2rem;
  position: relative;
  width: 95%;
  max-width: 1150px;
  margin: 0 auto;
  z-index: 2;
}

.common-attention {
  font-family: Lato, sans-serif;
  margin: auto;
  background: #EAD1CE;
  padding: 1em;
  text-align: center;
  font-weight: 600;
}

.common-attention.opening {
  position: relative;
  z-index: 2;
}

.common-attention.opening p {
  color: #901B0C;
}

.common-attention.opening>span {
  background: #901B0C;
  color: #fff;
  padding: 0.3rem 1em;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

.common-attention.closing {
  margin-top: 0;
}

.common-attention.closing p {
  color: #901B0C;
  font-size: 1.2rem;
}

.tab-menu {
  position: relative;
  z-index: 3;
}

.tab--lane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.tab--lane::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1.96rem;
  width: 2rem;
  height: 100%;
  background: #901B0C;
  z-index: 3;
}

.tab--lane::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -1.96rem;
  width: 2rem;
  height: 100%;
  background: #901B0C;
  z-index: 3;
}

.tab--lane>li {
  background: #901B0C;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  cursor: pointer;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.3rem;
}

.tab--lane>li span {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #901B0C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 120%;
  border-radius: 50%;
  margin-right: 0.3em;
}

.scroll-box {
  margin-top: -4rem;
  padding-top: 4rem;
}

.scroll-box+p {
  margin-top: 1em;
}

.tab-contents {
  margin-top: -5rem;
}

.tab--body {
  font-family: Lato, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tab--body__child {
  width: calc(33% - 1px);
  background: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: initial !important;
}

.tab--body__child+.tab--body__child {
  border-left: 1px solid #eee;
}

.tab--body__child:nth-child(2) {
  padding-top: 4rem;
}

.tab--body__child:nth-child(3) {
  padding-top: 32rem;
}

.tab--body__child:nth-child(4) {
  padding-top: 8rem;
}

.list--company {
  width: 90%;
  margin: auto;
  padding-top: 3rem;
}

.list--company>li {
  border: 1px solid #901B0C;
  background-color: #F7F6F4;
  position: relative;
  overflow: hidden;
}

.list--company>li+li {
  margin-top: 2rem;
}

.list--company__inner {
  display: block;
  color: #901B0C;
  padding: 3rem 1rem 1rem;
}

.list--company__inner a {
  -webkit-transition: .3s;
  transition: .3s;
}

.list--company__inner a:hover {
  text-decoration: underline;
}

.list--company__inner .movie-btn {
  margin-top: 1rem;
}

.list--company__inner .movie-btn a {
  color: #fff;
  background-color: #CB3F2D;
  padding: 0.8rem;
  text-align: center;
  display: block;
  border-radius: 50px;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

.list--company__inner .movie-btn a:hover {
  background-color: #901B0C;
}

.list--company>li .c__time {
  background: #901B0C;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem 0.8rem;
  position: absolute;
  top: 0;
  left: 0;
}

.list--company>li .c__name {
  line-height: 1.6;
}

.list--company>li .c__body {
  margin-top: 1rem;
  padding: 1rem 0.5rem;
  width: 100%;
  background: #fff;
  position: relative;
}

.list--company>li .c__body span {
  font-size: 0.8rem;
  font-weight: bold;
  display: block;
  padding-bottom: 0.5rem;
}

.list--company>li .c__body p {
  font-size: 0.8rem;
  color: #222222;
  line-height: 1.8;
}

.list--company>li .c__information {
  margin-top: 1rem;
}

.list--company>li .c__information dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.4rem;
}

.list--company>li .c__information dl dt {
  font-size: 0.6rem;
  color: #fff;
  font-weight: bold;
  padding: 0.4rem 0.5rem;
  background-color: #901B0C;
  border-radius: 40px;
  margin-right: 0.4rem;
  width: 20%;
  text-align: center;
}

.list--company>li .c__information dl dd {
  font-size: 0.8rem;
  color: #222222;
  width: 80%;
  line-height: 1.6;
  text-align: justify;
}

.list--company>li .c__information .collaboration-text {
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.8;
  color: #222222;
  text-align: center;
}

.list--company>li .c__information .collaboration-text span {
  display: block;
  font-size: 1.2rem;
}

.section--sm {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.list--faq>li {
  padding: 2rem;
  border-radius: 2rem;
  background: #fff;
}

.list--faq>li+li {
  margin-top: 3rem;
}

.list--faq dl dd,
.list--faq dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1em 2em;
  line-height: 1.6;
}

.list--faq dl dt {
  background: #901B0C;
  color: #fff;
  border-radius: 1.5rem;
  font-weight: 400;
}

.list--faq dl dd {
  font-weight: 500;
}

.list--faq dl dd span {
  color: #35bc63;
}

.list--faq dl span {
  width: 1em;
  line-height: 1;
  margin-right: 0.5em;
  font-size: 3rem;
  font-weight: 900;
  font-family: Roboto, sans-serif;
}

#entry {
  text-align: center;
  background: #0f63b9;
  border-radius: 2rem;
  color: #fff;
  padding: 6rem;
  position: relative;
  overflow: hidden;
}

.title--entry {
  font-size: 3.6rem;
  margin-bottom: 1em;
}

.title--entry>span {
  font-size: 70%;
  font-weight: 500;
  display: block;
  letter-spacing: 0.05em;
  opacity: .8;
  margin-bottom: 0.2em;
}

.title--entry+p {
  width: 50%;
  margin: auto;
}

.btn--round {
  display: block;
  padding: 0.5em 1em;
  background: #fff;
  font-weight: 700;
  color: #0f63b9;
  border-radius: 40px;
  width: 12em;
  margin: 2rem auto auto;
}

.btn--round:focus,
.btn--round:hover {
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.text-center {
  text-align: center;
}

@media (max-width: 991.98px) {
  .list_flow>li {
    width: 48%;
  }

  .list_flow>li figure img {
    width: 90%;
  }
}

@media (max-width: 767.98px) {
  .list_flow .list__num {
    font-size: 4rem;
  }

  .btn--schedule {
    width: 80%;
  }

  #list {
    width: 100%;
  }

  #list .section__lead::before {
    -webkit-transform: translate(-0.5em, 2em) rotate(45deg);
    transform: translate(-0.5em, 2em) rotate(45deg);
  }

  #list .section__lead::after {
    -webkit-transform: translate(-0.5em, 2em) rotate(-45deg);
    transform: translate(-0.5em, 2em) rotate(-45deg);
  }

  #list .section__lead {
    font-size: 2rem;
    line-height: 1.5;
  }

  #list .section__lead br {
    display: block;
  }

  .common-attention {
    border-radius: 0;
  }

  .common-attention.opening>span {
    margin-bottom: 0.5em;
  }

  .common-attention.opening p {
    line-height: 1.6;
  }

  .common-attention.opening p span {
    display: block;
    font-size: 70%;
  }

  .tab-menu {
    width: calc(100% + 4rem) !important;
    margin-left: -2rem !important;
  }

  .tab--lane::before {
    display: none;
  }

  .tab--lane::after {
    display: none;
  }

  .tab--lane>li {
    background: #fff;
    color: #ddd;
    padding-bottom: 0.6em;
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
  }

  .tab--lane>li.swiper-slide-thumb-active {
    color: #901B0C;
    border-bottom: 3px solid #901B0C;
  }

  .tab--lane>li.swiper-slide-thumb-active span {
    color: #901B0C;
  }

  .tab--lane>li span {
    width: auto;
    height: auto;
    background: 0 0;
    color: #ddd;
    font-size: 2.4rem;
    margin-right: 0.1em;
  }

  .scroll-box {
    padding-top: 0;
    height: 70vh;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 0;
    margin-block: 2rem;
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }

  .scroll-box+p {
    font-size: 1rem;
  }

  .tab--body {
    margin-top: 0;
  }

  .tab--body__child+.tab--body__child {
    border-left: 0;
  }

  .tab--body__child {
    width: 80%;
  }

  .list--company {
    width: 90%;
  }

  #entry {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .title--entry {
    font-size: 3rem;
    margin-bottom: 0.5em;
  }

  .title--entry+p {
    width: 100%;
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .section__title>span {
    font-size: 1.6rem;
  }

  .section__title.title--about span {
    width: 178px;
    height: 42px;
  }

  .section__title.title--flow span {
    width: 207px;
    height: 42px;
  }

  .section__title.title--list span {
    width: 178px;
    height: 42px;
  }

  .section__title.title--movie span {
    width: 236px;
    height: 42px;
  }

  .section__title.title--faq span {
    width: 178px;
    height: 42px;
  }

  .list_flow>li {
    width: 82%;
    margin: auto;
  }

  #list .section__lead {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .time-table {
    padding-top: 1rem;
    margin-top: 1rem;
    width: 100%;
  }

  .tab--lane>li {
    font-size: 1.1rem;
  }

  .tab--lane>li span {
    font-size: 2rem;
  }

  .scroll-box+p {
    font-size: 0.85rem;
  }

  .section--sm {
    width: 100%;
  }

  .list--faq>li {
    padding: 1rem;
  }

  .list--faq dl dd,
  .list--faq dl dt {
    padding: 1em;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .list--faq dl span {
    font-size: 2.4rem;
  }

  .tab--body__child:nth-child(2) {
    padding-top: 2rem;
  }

  .tab--body__child:nth-child(3) {
    padding-top: 2rem;
  }
}

/* ------------------------------
job-list
---------------------------------- */
.om-jobs-pager>div {
  display: inline-block;
  border: 1px solid #901B0C;
  padding: 9px 12px;
}

.om-jobs-pager>div[data-jobs-page-status='current'] {
  background: #901B0C;
  color: #fff;
}

.om-job-label {
  border: 1px solid gainsboro;
  margin: 4px;
  padding: 4px 6px;
  display: inline-block;
}

div[data-jobs-loader] {
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  background: black;
  color: white;
}

div.om-jobs-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

div.om-jobs-pager>div {
  margin: 0px 12px;
  cursor: pointer;
}

.loding-bg {
  z-index: 10;
}

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

/* 支援プログラム */
.nagasaki-support-section-v2 {
  margin: 0 auto 90px auto;
  max-width: 1200px;
  text-align: center;
  padding: 0 20px;
}

.nagasaki-support-title-v2 {
  color: #a4351b;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 44px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.nagasaki-support-buttons-v2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

.nagasaki-support-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 3px solid #c8502e;
  border-radius: 0;
  background: #fff;
  padding: 32px 24px;
  width: 380px;
  font-size: 18px;
  font-weight: bold;
  color: #a4351b;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}

.nagasaki-support-btn-v2:hover {
  background: #fff3ee;
  border-color: #a4351b;
  box-shadow: 0 6px 24px rgba(200, 80, 46, 0.08);
}

.arrow-icon-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8502e;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nagasaki-support-btn-v2:hover .arrow-icon-v2 {
  background: #a4351b;
}

/* タブレット向け（1024px以下） */
@media (max-width: 1024px) {
  .nagasaki-support-section-v2 {
    margin: 0 auto 50px auto;
    padding: 0 30px;
  }

  .nagasaki-support-btn-v2 {
    width: 340px;
    font-size: 16px;
    padding: 28px 20px;
  }

  .arrow-icon-v2 {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

/* 中サイズタブレット向け（768px以下） */
@media (max-width: 768px) {
  .nagasaki-support-section-v2 {
    margin: 0 auto 40px auto;
  }

  .nagasaki-support-buttons-v2 {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .nagasaki-support-btn-v2 {
    width: 100%;
    max-width: 360px;
    font-size: 16px;
    padding: 26px 18px;
  }

  .arrow-icon-v2 {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .nagasaki-support-title-v2 {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

/* スマートフォン向け（480px以下） */
@media (max-width: 480px) {
  .nagasaki-support-section-v2 {
    margin: 0 auto 90px auto;
    padding: 0 15px;
  }

  .nagasaki-support-buttons-v2 {
    gap: 18px;
  }

  .nagasaki-support-btn-v2 {
    font-size: 15px;
    padding: 22px 16px;
    max-width: none;
  }

  .arrow-icon-v2 {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .nagasaki-support-title-v2 {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

/* 小さいスマートフォン向け（360px以下） */
@media (max-width: 360px) {
  .nagasaki-support-section-v2 {
    margin: 0 auto 25px auto;
  }

  .nagasaki-support-btn-v2 {
    font-size: 14px;
    padding: 18px 14px;
  }

  .arrow-icon-v2 {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .nagasaki-support-title-v2 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

/* 支援プログラムここまで */