@charset "UTF-8";
@font-face {
  font-family: DIN2014-NarrowBold;
  src: url(../font/DIN-2014_Narrow-Bold.otf) format("opentype");
}
@font-face {
  font-family: MyriadConceptRoman-Semibold;
  src: url(../font/MyriadProSemiCondensed.otf) format("opentype");
}
@font-face {
  font-family: MyriadRomanBold;
  src: url(../font/MYRIADPRO-BOLD.OTF) format("opentype");
}
@font-face {
  font-family: lineseed;
  src: url(../font/LINESeedJP_A_TTF_Bd.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

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

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

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

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

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

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
  scale: 0.7;
}
.anim.fadeInUp.is-animated {
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  opacity: 1;
  scale: 1;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  opacity: 1;
  scale: 1;
}
.anim.scaled_x_reserve.is-animated {
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  opacity: 1;
  scale: 1;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 40rem;
  transform: translate(-50%);
  z-index: 5;
}
header.fixed {
  position: fixed;
  top: 10rem;
  animation: fadeIn 0.3s forwards;
}
header.fixed .hambeg {
  top: -10rem;
}
header.fixed .hambeg .header__content {
  padding: 24rem 50rem;
}
header.job nav {
  max-width: 1500rem;
  width: 98%;
}
header.job nav ul li.job__btn:hover a {
  background: white;
}
header.job nav ul li.job__btn:hover a span {
  color: #0072FF;
}
header.job nav ul li.job__btn a {
  width: 200rem;
  background: #0072FF;
}
header.job nav ul li.job__btn a span {
  color: white;
}
header.job nav ul li.job__btn.logoin:hover a span {
  color: #06c755;
}
header.job nav ul li.job__btn.logoin a {
  width: 120rem;
  background: #06c755;
  border-color: #06c755;
}
header.job nav ul li.job__btn.logoin a span {
  color: white;
}
header .hambeg {
  width: 100%;
  height: 100vh;
  border-radius: 0;
  background: linear-gradient(to right, #0072ff 0%, #00c6ff 100%);
  position: absolute;
  left: 0;
  top: -40rem;
  display: none;
}
header .hambeg .footer__inner {
  width: 1310rem;
  margin: auto;
  margin-top: 90rem;
  display: flex;
  justify-content: space-between;
}
header .hambeg .footer__inner .footer__info .f__image {
  width: 268.71rem;
  display: flex;
  margin: auto;
  margin-top: 25rem;
}
header .hambeg .footer__inner .footer__info .f__lbl {
  font-weight: 900;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 70rem;
  margin-top: 0;
  text-align: left;
  color: #fff;
}
header .hambeg .footer__inner .footer__menu {
  width: 695rem;
  margin-top: 30rem;
  display: flex;
  justify-content: space-between;
}
header .hambeg .footer__inner .footer__menu .f__menu > li {
  font-family: MyriadRomanBold;
  font-weight: bold;
  font-size: 40rem;
  letter-spacing: 0.05em;
  line-height: 63rem;
  margin-bottom: 15rem;
  text-align: left;
  color: #fff;
}
header .hambeg .footer__inner .footer__menu .f__menu > li a {
  color: #fff;
}
header .hambeg .footer__inner .footer__menu .f__menu > li > ul li {
  line-height: 1;
  font-size: 8rem;
}
header .hambeg .footer__inner .footer__menu .f__menu > li > ul li > a {
  font-weight: 500;
  font-size: 13rem;
  letter-spacing: 0.05em;
  line-height: 3;
  text-align: left;
  color: #fff;
}
header .hambeg .footer__inner .footer__menu .f__menu > li > ul li > a:hover {
  color: #fff100;
}
header .hambeg .footer__inner .footer__menu .f__menu > li ul.other {
  width: 180rem;
  margin-top: 30rem;
  padding-top: 30rem;
  border-top: 1rem solid #fff;
}
header .hambeg .footer__inner .footer__menu .f__menu > li ul.other li a {
  font-weight: normal;
  font-size: 11rem;
  letter-spacing: 0.05em;
  line-height: 33rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
header .hambeg .footer__inner .footer__menu .f__menu > li ul.other li a:hover {
  color: #fff100;
}
header .hambeg .footer__inner .footer__menu .f__menu > li ul.other li a .icon {
  width: 10rem;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 4rem;
}
header .hambeg .header__content {
  padding: 54rem 50rem 35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2rem solid #fff;
}
header .hambeg .header__content .h__logo {
  width: 210rem;
  display: flex;
}
header .hambeg .header__content .h__btns {
  display: flex;
  align-items: center;
  margin-right: 55rem;
}
header .hambeg .header__content .h__btns .login__btn {
  width: 120rem;
  height: 45rem;
  border-radius: 5.32rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header .hambeg .header__content .h__btns .login__btn:hover {
  background: #0072FF;
}
header .hambeg .header__content .h__btns .login__btn:hover span {
  color: white;
}
header .hambeg .header__content .h__btns .login__btn span {
  font-weight: bold;
  font-size: 15rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: center;
  color: #0072ff;
  transition: 0.3s;
}
header .hambeg .header__content .h__btns .close__btn {
  width: 18rem;
  margin-left: 65rem;
  display: flex;
}
header nav {
  width: 92%;
  height: 70rem;
  border-radius: 10rem;
  background: #fff;
  box-shadow: 2rem 2rem 4rem rgba(198, 198, 198, 0.75);
  padding: 0 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .logo {
  width: 210rem;
  display: flex;
  transition: 0.3s;
}
header nav .logo:hover {
  opacity: 0.7;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  padding: 0 20rem;
}
header nav ul li a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 105rem;
  text-align: left;
  color: #000;
}
header nav ul li.job__btn {
  padding: 0 20rem 0 30rem;
}
header nav ul li.job__btn:hover a {
  background: #0072FF;
}
header nav ul li.job__btn:hover a span {
  color: white;
}
header nav ul li.job__btn.contact {
  padding-left: 0;
}
header nav ul li.job__btn.contact:hover a {
  background: #fff;
}
header nav ul li.job__btn.contact:hover a span {
  color: #0072FF;
}
header nav ul li.job__btn.contact a {
  background: #0072ff;
}
header nav ul li.job__btn.contact a span {
  color: white;
}
header nav ul li.job__btn.logoin {
  padding-left: 0;
}
header nav ul li.job__btn.logoin:hover a {
  background: #fff;
}
header nav ul li.job__btn.logoin:hover a span {
  color: #000;
}
header nav ul li.job__btn.logoin a {
  background: #000;
  border-color: #000;
}
header nav ul li.job__btn.logoin a span {
  color: white;
}
header nav ul li.job__btn:last-child {
  padding-right: 0;
}
header nav ul li.job__btn a {
  width: 120rem;
  height: 45rem;
  border-radius: 5.32rem;
  background: transparent;
  border: 1.5rem solid #0072ff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
header nav ul li.job__btn a span {
  font-weight: bold;
  font-size: 15rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: center;
  color: #0072ff;
  transition: 0.3s;
}
header .sp-menu {
  width: 70rem;
  height: 70rem;
  margin-left: 20rem;
  border-radius: 10rem;
  background: #fff;
  box-shadow: 2rem 2rem 4rem rgba(198, 198, 198, 0.75);
  position: relative;
  cursor: pointer;
}
header .sp-menu.open {
  z-index: 2;
  background: transparent;
  box-shadow: unset;
}
header .sp-menu.open span {
  border-color: white;
}
header .sp-menu.open span:nth-child(1) {
  top: 35rem;
  transform: translate(-50%) rotate(45deg);
}
header .sp-menu.open span:nth-child(2) {
  width: 0;
}
header .sp-menu.open span:nth-child(3) {
  top: 35rem;
  transform: translate(-50%) rotate(-45deg);
}
header .sp-menu span {
  width: 20rem;
  height: 0rem;
  background: transparent;
  border-top: 2rem solid #000;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 27rem;
  transition: 0.3s;
}
header .sp-menu span + span {
  top: 35rem;
}
header .sp-menu span + span + span {
  top: 43rem;
}

.frontview {
  max-width: 1600rem;
  width: 100%;
  padding: 85rem 100rem 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.frontview .contact__content {
  position: absolute;
  left: 100rem;
  bottom: 0;
}
.frontview .contact__content .contact__inner {
  width: 560rem;
  height: auto;
  padding: 15rem 28rem;
  border-radius: 10rem;
  background: #fafafa;
  display: flex;
  justify-content: space-between;
}
.frontview .contact__content .contact__inner .c__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.frontview .contact__content .contact__inner .c__btn.new_register:hover {
  background: white;
}
.frontview .contact__content .contact__inner .c__btn.new_register:hover span {
  color: #00c6ff;
}
.frontview .contact__content .contact__inner .c__btn.new_register:hover .arrow svg path {
  fill: #00c6ff;
}
.frontview .contact__content .contact__inner .c__btn.new_register a {
  background: #00c6ff;
  border-color: #00c6ff;
}
.frontview .contact__content .contact__inner .c__btn .c__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #000;
  position: relative;
  display: inline-block;
}
.frontview .contact__content .contact__inner .c__btn .c__lbl:after {
  content: "";
  width: 0;
  height: 13rem;
  border-left: 2rem solid #000;
  position: absolute;
  left: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
.frontview .contact__content .contact__inner .c__btn .c__lbl:before {
  content: "";
  width: 0;
  height: 13rem;
  border-left: 2rem solid #000;
  position: absolute;
  right: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
.frontview .contact__content .contact__inner .c__btn a {
  width: 220rem;
  height: 60rem;
  margin-top: 12rem;
  border-radius: 30rem;
  background: #14dca0;
  border: 1rem solid #14dca0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.frontview .contact__content .contact__inner .c__btn a:hover {
  background: white;
}
.frontview .contact__content .contact__inner .c__btn a:hover span {
  color: #14dca0;
}
.frontview .contact__content .contact__inner .c__btn a:hover .arrow svg path {
  fill: #14dca0;
}
.frontview .contact__content .contact__inner .c__btn a .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
.frontview .contact__content .contact__inner .c__btn a .arrow svg {
  width: 100%;
  height: 100%;
}
.frontview .contact__content .contact__inner .c__btn a .arrow svg path {
  transition: 0.3s;
}
.frontview .contact__content .contact__inner .c__btn a span {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.frontview .contact__content .contact__inner .h__line {
  width: 0rem;
  height: auto;
  background: transparent;
  border-left: 1rem solid #c9caca;
}
.frontview .contact__content .note__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 34rem;
  margin-top: 10rem;
  text-align: left;
  color: #000;
}
.frontview .contact__content .note__txt a {
  color: #0072ff;
  text-decoration: underline;
  transition: 0.3s;
}
.frontview .contact__content .note__txt a:hover {
  opacity: 0.7;
}
.frontview .content__text {
  margin-top: -95rem;
}
.frontview .content__text .t__lbl {
  font-weight: 500;
  font-size: 22rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #000;
}
.frontview .content__text .catchcopy__text {
  font-weight: 900;
  font-size: 70rem;
  letter-spacing: 0.05em;
  line-height: 100rem;
  text-align: left;
  color: #000;
}
.frontview .catch__image {
  width: 570rem;
  display: flex;
}

.scroll__down {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  transition: 0.3s;
}
.scroll__down:hover {
  opacity: 0.7;
}
.scroll__down .icon {
  width: 14rem;
  display: flex;
  margin-bottom: 7rem;
}
.scroll__down .lbl {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #000;
}

.section-title.job .en__txt {
  color: #06c755;
}
.section-title.job .en__txt .line {
  border-color: #06c755;
}
.section-title.job .ja__txt {
  color: black;
}
.section-title.job .ja__txt .gap {
  color: black;
}
.section-title.--center .en__txt {
  justify-content: center;
}
.section-title.--center .ja__txt {
  justify-content: center;
}
.section-title.--white .en__txt {
  color: white;
}
.section-title.--white .en__txt .line {
  border-color: white;
}
.section-title.--white .ja__txt {
  color: white;
}
.section-title.--black .en__txt {
  color: #000;
}
.section-title.--black .en__txt .line {
  border-color: #000;
}
.section-title.--black .ja__txt {
  color: #000;
}
.section-title .en__txt {
  font-weight: bold;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #0072ff;
  display: flex;
  align-items: center;
}
.section-title .en__txt .line {
  width: 100rem;
  height: 0rem;
  background: transparent;
  border-top: 1rem solid #0072ff;
  margin-left: 20rem;
}
.section-title .ja__txt {
  font-weight: bold;
  font-size: 34rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 21rem;
  text-align: left;
  color: #0072ff;
  display: flex;
  align-items: center;
}
.section-title .ja__txt .gap {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-left: 20rem;
  margin-left: 20rem;
  border-left: 1rem solid #000;
  text-align: left;
  color: #0072ff;
}

.detail__btn {
  width: 250rem;
  height: 60rem;
  border-radius: 30rem;
  background: #0072ff;
  border: 1rem solid #0072ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.detail__btn:hover {
  background: white;
}
.detail__btn:hover span {
  color: #0072FF;
}
.detail__btn:hover svg path {
  fill: #0072FF;
}
.detail__btn.--black {
  background: #000;
  border-color: #000;
}
.detail__btn.--black:hover {
  background: white;
}
.detail__btn.--black:hover span {
  color: #000;
}
.detail__btn.--black:hover svg path {
  fill: #000;
}
.detail__btn.--small {
  width: 180rem;
  height: 40rem;
  margin-top: 25rem;
}
.detail__btn span {
  font-weight: 600;
  font-size: 15rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.detail__btn .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 20rem;
  transform: translateY(-50%);
}
.detail__btn .arrow svg {
  width: 100%;
  height: 100%;
}
.detail__btn .arrow svg path {
  transition: 0.3s;
}

.section-about {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 215rem 0 200rem;
}
.section-about.job .about__content {
  align-items: flex-end;
}
.section-about.job .about__content .content__text p span {
  color: #06C755;
}
.section-about.job .about__content .content__text .detail__btn {
  background: #06C755;
  border-color: #06C755;
}
.section-about.job .about__content .content__text .detail__btn:hover {
  background: white;
}
.section-about.job .about__content .content__text .detail__btn:hover span {
  color: #06C755;
}
.section-about.job .about__content .content__text .detail__btn:hover .arrow svg path {
  fill: #06C755;
}
.section-about.job .about__content .about__image {
  width: 480rem;
}
.section-about .about__content {
  width: 100%;
  margin-top: 25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-about .about__content .content__text {
  width: 612rem;
}
.section-about .about__content .content__text p {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  margin-bottom: 47rem;
  text-align: left;
  color: #000;
}
.section-about .about__content .content__text p span {
  font-weight: 600;
  color: #0072FF;
}
.section-about .about__content .about__image {
  width: 500rem;
  margin-top: 20rem;
  display: flex;
}

.section-reason .link__content {
  width: 100%;
  height: auto;
  padding: 100rem 0;
  background: linear-gradient(to right, #0072ff 0%, #00c6ff 100%);
}
.section-reason .link__content .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
.section-reason .link__content .content__inner .link__items {
  width: 100%;
  height: 150rem;
  margin-top: 60rem;
  display: flex;
}
.section-reason .link__content .content__inner .link__items li {
  width: 25%;
}
.section-reason .link__content .content__inner .link__items li:last-child a {
  border-right: 2rem solid #fff;
}
.section-reason .link__content .content__inner .link__items li a {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2rem solid #fff;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}
.section-reason .link__content .content__inner .link__items li a:hover {
  opacity: 0.7;
}
.section-reason .link__content .content__inner .link__items li a .num {
  font-family: DIN2014-NarrowBold;
  font-weight: normal;
  font-size: 30rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.section-reason .link__content .content__inner .link__items li a .en__txt {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-top: 5rem;
  text-align: center;
  color: #fff;
}
.section-reason .link__content .content__inner .link__items li a .ja__txt {
  font-weight: bold;
  font-size: 28rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 5rem;
  text-align: center;
  color: #fff;
}
.section-reason .link__content .content__inner .link__items li a .arrow__down {
  width: 14rem;
  margin-top: 15rem;
  display: flex;
}
.section-reason .reason__content {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding-bottom: 130rem;
}
.section-reason .reason__content .c__item {
  width: 100%;
  padding-top: 130rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-reason .reason__content .c__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.section-reason .reason__content .c__item:nth-child(2n) .c__image {
  margin-left: 185rem;
  margin-right: 0;
}
.section-reason .reason__content .c__item:nth-child(2n) .c__image.c02 {
  width: 450rem;
}
.section-reason .reason__content .c__item:nth-child(2n) .c__image.c03 {
  width: 380rem;
}
.section-reason .reason__content .c__item:nth-child(2n) .c__image.c04 {
  width: 350rem;
}
.section-reason .reason__content .c__item .c__image {
  width: 420rem;
  margin-right: 185rem;
  display: flex;
}
.section-reason .reason__content .c__item .content__text {
  width: 500rem;
}
.section-reason .reason__content .c__item .content__text .num {
  font-family: DIN2014-NarrowBold;
  font-weight: normal;
  font-size: 40rem;
  margin-bottom: 20rem;
  line-height: 1;
  text-align: left;
  color: #0072ff;
}
.section-reason .reason__content .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  margin-top: 30rem;
  text-align: left;
  color: #000;
}
.section-reason .reason__content .c__item .content__text .c__txt span {
  font-weight: 600;
  color: #0072FF;
}
.section-reason .reason__content .c__item .content__text .c__txt span span {
  font-size: 10rem;
}
.section-reason .reason__content .c__item .content__text .note__txt {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  padding-top: 25rem;
  margin-top: 25rem;
  border-top: 1rem solid #000;
  text-align: left;
  color: #000;
}
.section-reason .reason__content .c__item .content__text .note__txt span {
  color: #0072ff;
}

.section-plan {
  width: 100%;
  height: auto;
  background: linear-gradient(to right, #f2f2ff 0%, #d9e0ea 100%);
  padding: 90rem 0;
}
.section-plan .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
.section-plan .content__inner .price__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-plan .content__inner .price__content .content__text {
  width: 500rem;
}
.section-plan .content__inner .price__content .content__text .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  margin-top: 40rem;
  margin-bottom: 64rem;
  text-align: left;
  color: #000;
}
.section-plan .content__inner .price__content .content__text .c__txt span {
  font-weight: 600;
  color: #0072ff;
}
.section-plan .content__inner .price__content .price__image {
  width: 630rem;
  display: flex;
}
.section-plan .content__inner .fee__content {
  width: 100%;
  margin-top: 65rem;
  display: flex;
  justify-content: space-between;
}
.section-plan .content__inner .fee__content .fee__text:last-child {
  width: 630rem;
}
.section-plan .content__inner .fee__content .fee__text .t__lbl {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #000;
}
.section-plan .content__inner .fee__content .fee__text .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 25rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.section-plan .content__inner .fee__content .fee__text .p__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 48rem;
  text-align: left;
  color: #000;
  margin-top: 20rem;
}
.section-plan .content__inner .note__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 28rem;
  margin-top: 20rem;
  text-align: left;
  color: #000;
}

.section-flow {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 150rem 0;
}
.section-flow .detail__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-flow .detail__content .content__text {
  width: 440rem;
}
.section-flow .detail__content .content__text .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  margin-top: 50rem;
  text-align: left;
  color: #000;
}
.section-flow .detail__content .c__image {
  width: 405rem;
  margin-right: 60rem;
  display: flex;
}
.section-flow .flow__content {
  width: 100%;
  margin-top: 150rem;
}
.section-flow .flow__content .c__item {
  display: flex;
  justify-content: left;
  padding-bottom: 64rem;
}
.section-flow .flow__content .c__item:last-child {
  padding-bottom: 0;
}
.section-flow .flow__content .c__item:last-child .image__inner:after {
  content: unset;
}
.section-flow .flow__content .c__item .image__inner {
  width: 170rem;
  height: auto;
  margin-right: 100rem;
  position: relative;
}
.section-flow .flow__content .c__item .image__inner:after {
  content: "";
  width: 0;
  height: calc(100% + 64rem);
  border-left: 2rem dashed #d1d2d2;
  position: absolute;
  left: 50%;
  top: 30rem;
  transform: translate(-50%);
  z-index: -1;
}
.section-flow .flow__content .c__item .image__inner .c__image {
  width: 100%;
  display: flex;
}
.section-flow .flow__content .c__item .content__text {
  width: calc(100% - 270rem);
}
.section-flow .flow__content .c__item .content__text .step__lbl {
  display: flex;
  align-items: center;
}
.section-flow .flow__content .c__item .content__text .step__lbl .__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  color: #0072ff;
}
.section-flow .flow__content .c__item .content__text .step__lbl .line {
  width: 50rem;
  height: 0rem;
  margin-left: 20rem;
  background: transparent;
  border-top: 1rem solid #0072ff;
}
.section-flow .flow__content .c__item .content__text h2 {
  font-weight: bold;
  font-size: 30rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 12rem;
  text-align: left;
  color: #000;
}
.section-flow .flow__content .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  margin-top: 10rem;
  text-align: left;
  color: #000;
}

.section-contact {
  width: 100%;
  background: linear-gradient(to right, #0072ff 0%, #00c6ff 100%);
  padding: 45rem 0 65rem;
}
.section-contact .note__txt {
  font-weight: normal;
  font-size: 17rem;
  letter-spacing: 0.15em;
  line-height: 30rem;
  margin-top: 22rem;
  text-align: center;
  color: #fff;
}
.section-contact .contact__items {
  margin-top: 30rem;
  display: flex;
  justify-content: center;
}
.section-contact .contact__items .c__item {
  width: 350rem;
  height: auto;
  margin: 0 15rem;
  padding: 26rem 0 30rem;
  border-radius: 10rem;
  background: #fff;
  position: relative;
}
.section-contact .contact__items .c__item:nth-child(2) .c__icon img {
  height: 54rem;
}
.section-contact .contact__items .c__item:nth-child(2) .b__btn {
  background: #00c6ff;
  border-color: #00c6ff;
}
.section-contact .contact__items .c__item:nth-child(2) .b__btn:hover {
  background: white;
}
.section-contact .contact__items .c__item:nth-child(2) .b__btn:hover span {
  color: #00c6ff;
}
.section-contact .contact__items .c__item:nth-child(2) .b__btn:hover .arrow path {
  fill: #00c6ff;
}
.section-contact .contact__items .c__item:nth-child(3) .c__icon img {
  height: 40rem;
}
.section-contact .contact__items .c__item:nth-child(3) .b__btn {
  background: #0072ff;
  border-color: #0072ff;
}
.section-contact .contact__items .c__item:nth-child(3) .b__btn:hover {
  background: white;
}
.section-contact .contact__items .c__item:nth-child(3) .b__btn:hover span {
  color: #0072ff;
}
.section-contact .contact__items .c__item:nth-child(3) .b__btn:hover .arrow path {
  fill: #0072ff;
}
.section-contact .contact__items .c__item .c__lbl {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 27rem;
  text-align: center;
  color: #000;
}
.section-contact .contact__items .c__item .c__icon {
  width: auto;
  height: 60rem;
  margin: 30rem auto 50rem;
  display: flex;
  align-items: center;
}
.section-contact .contact__items .c__item .c__icon img {
  height: 46rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-contact .contact__items .c__item .b__btn {
  width: 200rem;
  height: 40rem;
  margin: auto;
  background: #14dca0;
  border: 1rem solid #14dca0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.section-contact .contact__items .c__item .b__btn:hover {
  background: white;
}
.section-contact .contact__items .c__item .b__btn:hover span {
  color: #14dca0;
}
.section-contact .contact__items .c__item .b__btn:hover .arrow svg path {
  fill: #14dca0;
}
.section-contact .contact__items .c__item .b__btn span {
  font-weight: 600;
  font-size: 15rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.section-contact .contact__items .c__item .b__btn .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 20rem;
  transform: translateY(-50%);
}
.section-contact .contact__items .c__item .b__btn .arrow svg {
  width: 100%;
  height: 100%;
}
.section-contact .contact__items .c__item .note__txt {
  width: 100%;
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 34rem;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -35rem;
  transform: translate(-50%);
}
.section-contact .contact__items .c__item .note__txt a {
  color: white;
  text-decoration: underline;
}

footer {
  padding: 100rem 0 80rem;
}
footer a {
  transition: 0.3s;
}
footer .footer__inner {
  max-width: 1230rem;
  width: 98%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
footer .footer__inner .footer__info .logo {
  width: 315rem;
  display: flex;
}
footer .footer__inner .footer__info .f__lbl {
  font-weight: 900;
  font-size: 40rem;
  letter-spacing: 0.05em;
  line-height: 60rem;
  margin-top: 40rem;
  text-align: left;
  color: #000;
}
footer .footer__inner .footer__menu {
  width: 695rem;
  display: flex;
  justify-content: space-between;
}
footer .footer__inner .footer__menu .f__menu > li {
  font-family: MyriadRomanBold;
  font-weight: bold;
  font-size: 40rem;
  letter-spacing: 0.05em;
  line-height: 63rem;
  margin-bottom: 15rem;
  text-align: left;
  color: #000;
}
footer .footer__inner .footer__menu .f__menu > li a {
  color: #000;
}
footer .footer__inner .footer__menu .f__menu > li > ul li {
  line-height: 1;
  font-size: 8rem;
}
footer .footer__inner .footer__menu .f__menu > li > ul li > a {
  font-weight: 500;
  font-size: 13rem;
  letter-spacing: 0.05em;
  line-height: 3;
  text-align: left;
  color: #000;
}
footer .footer__inner .footer__menu .f__menu > li > ul li > a:hover {
  color: #0072ff;
}
footer .footer__inner .footer__menu .f__menu > li ul.other {
  width: 180rem;
  margin-top: 30rem;
  padding-top: 30rem;
  border-top: 1rem solid #000;
}
footer .footer__inner .footer__menu .f__menu > li ul.other li a {
  font-weight: normal;
  font-size: 11rem;
  letter-spacing: 0.05em;
  line-height: 33rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
footer .footer__inner .footer__menu .f__menu > li ul.other li a:hover {
  color: #0072FF;
}
footer .footer__inner .footer__menu .f__menu > li ul.other li a .icon {
  width: 10rem;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 4rem;
}
footer .copyright {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.05em;
  line-height: 35rem;
  margin-top: 50rem;
  text-align: center;
  color: #000;
}

.fixed__btns {
  display: flex;
  align-items: center;
  position: fixed;
  right: 50rem;
  bottom: 50rem;
  z-index: 2;
}
.fixed__btns .c__btn {
  width: 150rem;
  height: 150rem;
  margin: 0 10rem;
  border-radius: 75rem;
  background: #14dca0;
  border: 2rem solid #14dca0;
  box-shadow: 2rem 2rem 4rem rgba(198, 198, 198, 0.75);
  outline: 1rem solid white;
  outline-offset: -5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}
.fixed__btns .c__btn:hover {
  opacity: 0.7;
}
.fixed__btns .c__btn:last-child {
  background: #00c6ff;
  border-color: #00c6ff;
}
.fixed__btns .c__btn .c__lbl {
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 14rem;
  text-align: center;
  color: #fff;
}
.fixed__btns .c__btn .t__lbl {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  margin: 13rem 0 25rem;
  text-align: center;
  color: #fff;
}
.fixed__btns .c__btn .c__txt {
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.frontview__job {
  width: 100%;
  display: flex;
  position: relative;
}
.frontview__job .frontview__content {
  max-width: 1600rem;
  width: 100%;
  padding: 0 50rem 0 100rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.frontview__job .frontview__content .content__text .gap__txt {
  display: inline-block;
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 3rem 15rem;
  background: #fff;
  text-align: center;
  color: #000;
}
.frontview__job .frontview__content .content__text h1 {
  font-weight: 900;
  font-size: 75rem;
  letter-spacing: 0.05em;
  line-height: 100rem;
  margin-top: 10rem;
  text-align: left;
  color: #fff;
}
.frontview__job .frontview__content .register__form {
  width: 450rem;
  height: auto;
  padding: 30rem 0;
  border-radius: 10.53rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.frontview__job .frontview__content .register__form .logo {
  width: 210rem;
  display: flex;
}
.frontview__job .frontview__content .register__form .g__lbl {
  font-weight: bold;
  font-size: 22rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 24rem;
  text-align: center;
  color: #000;
}
.frontview__job .frontview__content .register__form .line__phone {
  width: 200rem;
  margin-top: 20rem;
  display: flex;
}
.frontview__job .frontview__content .register__form .g__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 24rem;
  text-align: center;
  color: #000;
  display: inline-block;
  position: relative;
}
.frontview__job .frontview__content .register__form .g__txt:after {
  content: "";
  width: 0;
  height: 16rem;
  border-left: 2rem solid #000;
  position: absolute;
  left: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
.frontview__job .frontview__content .register__form .g__txt:before {
  content: "";
  width: 0;
  height: 16rem;
  border-left: 2rem solid #000;
  position: absolute;
  right: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
.frontview__job .frontview__content .register__form .line__btn {
  width: 350rem;
  height: 60rem;
  border-radius: 10rem;
  background: #06c755;
  border: 1rem solid #06C755;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 10rem;
  transition: 0.3s;
}
.frontview__job .frontview__content .register__form .line__btn:hover {
  background: white;
}
.frontview__job .frontview__content .register__form .line__btn:hover span {
  color: #06C755;
}
.frontview__job .frontview__content .register__form .line__btn:hover .arrow svg path {
  fill: #06C755;
}
.frontview__job .frontview__content .register__form .line__btn:hover .icon svg path {
  fill: #06C755;
}
.frontview__job .frontview__content .register__form .line__btn:hover .icon svg #Group_5 path {
  fill: white;
}
.frontview__job .frontview__content .register__form .line__btn:hover .icon svg #Group_5 rect {
  fill: white;
}
.frontview__job .frontview__content .register__form .line__btn span {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.frontview__job .frontview__content .register__form .line__btn .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
.frontview__job .frontview__content .register__form .line__btn .arrow svg {
  width: 100%;
  height: 100%;
}
.frontview__job .frontview__content .register__form .line__btn .arrow svg path {
  transition: 0.3s;
}
.frontview__job .frontview__content .register__form .line__btn .arrow svg rect {
  transition: 0.3s;
}
.frontview__job .frontview__content .register__form .line__btn .icon {
  width: 30rem;
  display: flex;
  position: absolute;
  left: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
.frontview__job .frontview__content .register__form .line__btn .icon svg {
  width: 100%;
  height: 100%;
}
.frontview__job .frontview__content .register__form .line__btn .icon svg path {
  transition: 0.3s;
}
.frontview__job .frontview__content .register__form .p__lbl {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 15rem;
  text-align: center;
  color: #000;
}
.frontview__job .frontview__content .register__form .p__lbl a {
  color: #0072ff;
  text-decoration: underline;
}
.frontview__job .scroll__down {
  bottom: 30rem;
}
.frontview__job .scroll__down .lbl {
  color: white;
}

.job-reason {
  width: 100%;
  height: auto;
  padding: 65rem 0;
  background: linear-gradient(to right, #f2f2ff 0%, #d9e0ea 100%);
}
.job-reason .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
.job-reason .content__inner .content__items {
  margin-top: 45rem;
  display: flex;
  justify-content: space-between;
}
.job-reason .content__inner .content__items .c__item {
  width: 285rem;
  height: auto;
  border-radius: 10rem;
  background: #fff;
  padding: 30rem 0;
  text-align: center;
}
.job-reason .content__inner .content__items .c__item .c__lbl {
  font-weight: 600;
  font-size: 12rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding: 4rem 10rem;
  border-radius: 10rem;
  background: #06c755;
  text-align: center;
  color: #fff;
  display: inline-block;
}
.job-reason .content__inner .content__items .c__item h3 {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  margin-top: 15rem;
  text-align: center;
  color: #000;
}
.job-reason .content__inner .content__items .c__item .c__txt {
  width: 245rem;
  height: 123.96rem;
  margin: auto;
  margin-top: 15rem;
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 28rem;
  text-align: left;
  color: #000;
}
.job-reason .content__inner .content__items .c__item .icon {
  width: auto;
  height: 120rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job-reason .content__inner .content__items .c__item .icon.c03 img {
  height: 104rem;
}
.job-reason .content__inner .content__items .c__item .icon.c04 img {
  height: 104rem;
}
.job-reason .content__inner .content__items .c__item .icon img {
  height: 100rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.job-feature {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 90rem 0;
}
.job-feature .feature__content {
  margin-top: 80rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job-feature .feature__content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40rem;
  position: relative;
}
.job-feature .feature__content ul li:last-child {
  margin-bottom: 0;
}
.job-feature .feature__content ul li .num {
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: #06c755;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: DIN2014-NarrowBold;
  font-weight: normal;
  font-size: 22rem;
  line-height: 50rem;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.job-feature .feature__content ul li .content__text {
  width: 550rem;
  border-radius: 10rem;
  padding: 20rem 20rem 20rem 40rem;
  background: #f5f5f5;
  margin-left: 0;
}
.job-feature .feature__content ul li .content__text h3 {
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: left;
  color: #06c755;
}
.job-feature .feature__content ul li .content__text p {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 24rem;
  margin-top: 7rem;
  text-align: left;
  color: #000;
}
.job-feature .feature__content .f__image {
  width: 500rem;
  display: flex;
}
.job-feature .trouble__content {
  margin-top: 150rem;
}
.job-feature .trouble__content .t__item.c01 .icon {
  width: 105rem;
}
.job-feature .trouble__content .t__item.c01 .content__text li .num {
  background: #ffbe1e;
}
.job-feature .trouble__content .t__item .icon {
  width: 140rem;
  display: flex;
  margin: auto;
}
.job-feature .trouble__content .t__item h3 {
  font-weight: bold;
  font-size: 30rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 15rem;
  text-align: center;
  color: #000;
}
.job-feature .trouble__content .t__item .content__text {
  width: 100%;
  height: auto;
  margin-top: 20rem;
  padding: 20rem 0;
  border-radius: 20rem;
  background: #f5f5fa;
  display: flex;
}
.job-feature .trouble__content .t__item .content__text li {
  width: 16.6666666667%;
  padding: 10rem 0;
  border-left: 1rem solid #000;
}
.job-feature .trouble__content .t__item .content__text li:first-child {
  border-left: 0;
}
.job-feature .trouble__content .t__item .content__text li .num {
  width: 35rem;
  height: 35rem;
  margin: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: DIN2014-NarrowBold;
  font-weight: normal;
  font-size: 20rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #06c755;
}
.job-feature .trouble__content .t__item .content__text li .txt {
  font-weight: bold;
  font-size: 13rem;
  letter-spacing: 0.05em;
  line-height: 26rem;
  margin-top: 20rem;
  text-align: center;
  color: #000;
}
.job-feature .trouble__content .arrow__down {
  width: 60rem;
  margin: auto;
  margin-top: 30rem;
  margin-bottom: 30rem;
  display: flex;
}

.job-voice {
  width: 1200rem;
  margin: auto;
  padding: 100rem 0 60rem;
  margin-top: 50rem;
}
.job-voice .voice__items {
  width: 100%;
  margin-top: 80rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.job-voice .voice__items .v__item {
  width: 370rem;
  margin-bottom: 50rem;
}
.job-voice .voice__items .v__item .image {
  width: 100%;
  display: flex;
}
.job-voice .voice__items .v__item .c__text {
  padding: 25rem 20rem;
  font-weight: 600;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  text-align: left;
  color: #000;
}
.job-voice .voice__items .v__item .p__lbl {
  font-weight: 500;
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 5rem 0;
  background: #06c755;
}

.job-faq {
  padding: 100rem 0;
  background: linear-gradient(to right, #f2f2ff 0%, #d9e0ea 100%);
}
.job-faq .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 80rem;
}
.job-faq .content__inner .faq__items {
  width: 1050rem;
  margin: auto;
  margin-top: 80rem;
}
.job-faq .content__inner .faq__items .f__item {
  width: 100%;
  height: auto;
  margin-bottom: 30rem;
  border-radius: 10rem;
  padding: 30rem;
  background: #fff;
  cursor: pointer;
}
.job-faq .content__inner .faq__items .f__item:last-child {
  margin-bottom: 0;
}
.job-faq .content__inner .faq__items .f__item .q__title {
  display: flex;
}
.job-faq .content__inner .faq__items .f__item .q__title.open .sign:after {
  opacity: 0;
}
.job-faq .content__inner .faq__items .f__item .q__title .q__lbl {
  font-family: lineseed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: #06c755;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 32rem;
  text-align: center;
  color: #fff;
}
.job-faq .content__inner .faq__items .f__item .q__title .txt {
  width: 90%;
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 27rem;
  margin-left: 30rem;
  text-align: left;
  color: #000;
}
.job-faq .content__inner .faq__items .f__item .q__title .sign {
  width: 20rem;
  height: 20rem;
  margin-top: 5rem;
  position: relative;
}
.job-faq .content__inner .faq__items .f__item .q__title .sign:before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 3rem solid #06c755;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.job-faq .content__inner .faq__items .f__item .q__title .sign:after {
  content: "";
  height: 100%;
  width: 0;
  border-left: 3rem solid #06c755;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  transition: 0.3s;
}
.job-faq .content__inner .faq__items .f__item .a__box {
  margin-top: 20rem;
  display: none;
}
.job-faq .content__inner .faq__items .f__item .a__box .inner {
  display: flex;
}
.job-faq .content__inner .faq__items .f__item .a__box .inner .a__lbl {
  font-family: lineseed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: #06c755;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 32rem;
  text-align: center;
  color: #fff;
}
.job-faq .content__inner .faq__items .f__item .a__box .inner .a__txt {
  width: 80%;
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.1em;
  line-height: 30rem;
  margin-left: 30rem;
  text-align: left;
  color: #000;
}

footer.job {
  padding: 100rem 0 20rem;
}
footer.job .footer__inner {
  width: 1200rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
footer.job .footer__inner .footer__info {
  width: 350rem;
  height: auto;
  border-radius: 10.53rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer.job .footer__inner .footer__info .logo {
  width: 100%;
  display: flex;
}
footer.job .footer__inner .footer__info .g__lbl {
  font-weight: bold;
  font-size: 18.33rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 17rem;
  text-align: center;
  color: #000;
}
footer.job .footer__inner .footer__info .line__phone {
  width: 170rem;
  margin: auto;
  margin-top: 18rem;
}
footer.job .footer__inner .footer__info .gap__txt {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.1em;
  line-height: 28.33rem;
  margin-top: 5rem;
  text-align: center;
  color: #000000;
}
footer.job .footer__inner .footer__info .gap__txt a {
  color: #0072FF;
  text-decoration: underline;
}
footer.job .footer__inner .footer__info .g__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 45rem;
  text-align: center;
  color: #000;
  display: inline-block;
  position: relative;
}
footer.job .footer__inner .footer__info .g__txt:after {
  content: "";
  width: 0;
  height: 16rem;
  border-left: 2rem solid #000;
  position: absolute;
  left: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
footer.job .footer__inner .footer__info .g__txt:before {
  content: "";
  width: 0;
  height: 16rem;
  border-left: 2rem solid #000;
  position: absolute;
  right: -15rem;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}
footer.job .footer__inner .footer__info .line__btn {
  width: 100%;
  height: 60rem;
  border-radius: 10rem;
  background: #06c755;
  border: 1rem solid #06C755;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20rem;
}
footer.job .footer__inner .footer__info .line__btn:hover {
  background: white;
}
footer.job .footer__inner .footer__info .line__btn:hover span {
  color: #06C755;
}
footer.job .footer__inner .footer__info .line__btn:hover .arrow svg path {
  fill: #06C755;
}
footer.job .footer__inner .footer__info .line__btn:hover .icon svg path {
  transition: 0.3s;
}
footer.job .footer__inner .footer__info .line__btn:hover .icon svg rect {
  transition: 0.3s;
}
footer.job .footer__inner .footer__info .line__btn:hover .icon svg path {
  fill: #06C755;
}
footer.job .footer__inner .footer__info .line__btn:hover .icon svg #Group_5 path {
  fill: white;
}
footer.job .footer__inner .footer__info .line__btn:hover .icon svg #Group_5 rect {
  fill: white;
}
footer.job .footer__inner .footer__info .line__btn span {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: center;
  color: #fff;
}
footer.job .footer__inner .footer__info .line__btn .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
footer.job .footer__inner .footer__info .line__btn .arrow svg {
  width: 100%;
  height: 100%;
}
footer.job .footer__inner .footer__info .line__btn .arrow svg path {
  transition: 0.3s;
}
footer.job .footer__inner .footer__info .line__btn .icon {
  width: 30rem;
  display: flex;
  position: absolute;
  left: 20rem;
  top: 50%;
  transform: translateY(-50%);
}
footer.job .footer__inner .footer__info .line__btn .icon svg {
  width: 100%;
  height: 100%;
}
footer.job .footer__inner .footer__info .line__btn .icon svg path {
  transition: 0.3s;
}
footer.job .footer__inner .footer__info .p__lbl {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 15rem;
  text-align: center;
  color: #000;
}
footer.job .footer__inner .footer__info .p__lbl a {
  color: #0072ff;
  text-decoration: underline;
}
footer.job .footer__inner .line {
  width: 0;
  height: auto;
  border-left: 1rem solid #000;
}
footer.job .footer__inner .footer__menu {
  width: 420rem;
  height: 230.85rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
footer.job .footer__inner .footer__menu li {
  margin: 8rem 0;
}
footer.job .footer__inner .footer__menu li a {
  font-weight: 500;
  font-size: 14rem;
  line-height: 1.5;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
footer.job .footer__inner .footer__menu li a:hover {
  color: #06C755;
}
footer.job .footer__inner .footer__menu li a .icon {
  width: 12rem;
  display: inline-flex;
  margin-left: 6rem;
}
footer.job .copyright {
  margin-top: 100rem;
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.05em;
  line-height: 35rem;
  text-align: center;
  color: #000;
}

.subfrontview {
  width: 1200rem;
  margin: 170rem auto 75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subfrontview .section-title .ja__txt {
  font-size: 40rem;
}
.subfrontview .about__image {
  width: 525rem;
  margin-left: 150rem;
  display: flex;
}
.subfrontview .about__image.contact {
  width: 350rem;
}

.breadcrumb {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
.breadcrumb a, .breadcrumb span {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  color: #000;
}

.about__detail {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 110rem;
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 45rem;
  text-align: left;
  color: #000;
}
.about__detail span {
  font-weight: 600;
  color: #0072FF;
}

.about__wrapper .point__content {
  background: linear-gradient(to right, #f2f2ff 0%, #d9e0ea 100%);
  padding: 70rem 0 20rem;
  margin-top: 100rem;
}
.about__wrapper .point__content .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
.about__wrapper .point__content .content__inner .point__items {
  margin-top: 70rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about__wrapper .point__content .content__inner .point__items .p__item {
  width: 370rem;
  height: 415rem;
  margin-bottom: 50rem;
  border-radius: 20rem;
  background: #fff;
  border: 3rem solid #0072ff;
  position: relative;
  padding: 55rem 15rem 0;
}
.about__wrapper .point__content .content__inner .point__items .p__item .point {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #0072ff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.about__wrapper .point__content .content__inner .point__items .p__item .point .lbl {
  font-weight: bold;
  font-size: 10rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.about__wrapper .point__content .content__inner .point__items .p__item .point .num {
  font-family: DIN2014-NarrowBold;
  font-weight: normal;
  font-size: 30rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.about__wrapper .point__content .content__inner .point__items .p__item .p__lbl {
  font-weight: bold;
  font-size: 20rem;
  line-height: 19rem;
  text-align: center;
  color: #0072ff;
}
.about__wrapper .point__content .content__inner .point__items .p__item .p__icon {
  width: auto;
  height: 150rem;
  margin: 15rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__wrapper .point__content .content__inner .point__items .p__item .p__icon img {
  height: 130rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__wrapper .point__content .content__inner .point__items .p__item .p__txt {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.05em;
  line-height: 24rem;
  text-align: left;
  color: #000;
}
.about__wrapper .point__content .content__inner .point__items .p__item .p__txt span {
  font-weight: 600;
  color: #0072ff;
}
.about__wrapper .problem__content {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 120rem 0;
}
.about__wrapper .problem__content .content__text {
  margin-top: 30rem;
  display: flex;
  align-items: center;
}
.about__wrapper .problem__content .content__text p {
  width: 600rem;
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  text-align: left;
  color: #000;
}
.about__wrapper .problem__content .content__text p span {
  font-weight: 600;
  color: #0072FF;
}
.about__wrapper .problem__content .content__text .c__image {
  width: 450rem;
  margin-left: 74rem;
  display: flex;
}
.about__wrapper .solution__content {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
.about__wrapper .solution__content .content__items {
  width: 100%;
  margin-top: 25rem;
  display: flex;
  justify-content: space-between;
}
.about__wrapper .solution__content .content__items .c__item {
  width: 277.5rem;
  height: auto;
  padding: 21rem 16rem 30rem;
  border-radius: 15rem;
  background: #f5f5fa;
  text-align: center;
}
.about__wrapper .solution__content .content__items .c__item .c__lbl {
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  border-radius: 10rem;
  padding: 3rem 6rem;
  display: inline-block;
  background: #0072ff;
  border: 1rem solid #0072ff;
}
.about__wrapper .solution__content .content__items .c__item .c__lbl.red {
  background: #ff5096;
  border: 1rem solid #ff5096;
}
.about__wrapper .solution__content .content__items .c__item h3 {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.05em;
  line-height: 26rem;
  margin-top: 15rem;
  text-align: center;
  color: #000;
}
.about__wrapper .solution__content .content__items .c__item .c__txt {
  height: 135rem;
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 28rem;
  margin-top: 17rem;
  text-align: left;
  color: #000;
}
.about__wrapper .solution__content .content__items .c__item .arrow__down {
  width: 30rem;
  display: flex;
  margin: 16rem auto 25rem;
}
.about__wrapper .solution__content .content__items .c__item .icon {
  width: 170rem;
  margin: auto;
  margin-top: 20rem;
}
.about__wrapper .solution__content .content__items .c__item .icon.c02 {
  width: 155rem;
}
.about__wrapper .solution__content .content__items .c__item .icon.c03 {
  width: 140rem;
}
.about__wrapper .solution__content .content__items .c__item .icon.c04 {
  width: 130rem;
}
.about__wrapper .voice__content {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 150rem 0 0;
}
.about__wrapper .voice__content .content__items {
  width: calc(100% + 46rem);
  margin-left: -23rem;
  margin-right: -23rem;
  margin-top: 30rem;
  display: flex;
  flex-wrap: wrap;
}
.about__wrapper .voice__content .content__items .c__item {
  width: 33.3333333333%;
  padding: 0 23rem;
  margin-bottom: 50rem;
}
.about__wrapper .voice__content .content__items .c__item .image {
  width: 100%;
  display: flex;
}
.about__wrapper .voice__content .content__items .c__item .content__text {
  padding: 22rem 15rem 0;
}
.about__wrapper .voice__content .content__items .c__item .content__text .c__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  text-align: left;
  color: #000;
}
.about__wrapper .voice__content .content__items .c__item .content__text .cats {
  margin-top: 20rem;
  display: flex;
  flex-wrap: wrap;
}
.about__wrapper .voice__content .content__items .c__item .content__text .cats span {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.05em;
  margin: 0 10rem 10rem 0;
  line-height: 1.2;
  padding: 2rem 5rem;
  text-align: center;
  color: #000;
  border: 1rem solid #000;
}
.about__wrapper .function__content {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding-bottom: 170rem;
  padding-top: 100rem;
}
.about__wrapper .function__content .link__items {
  width: 100%;
  height: 60rem;
  margin-top: 30rem;
  display: flex;
}
.about__wrapper .function__content .link__items li {
  width: 50%;
  height: 100%;
}
.about__wrapper .function__content .link__items li:last-child a {
  border-left: 0;
}
.about__wrapper .function__content .link__items li:last-child a.active {
  border-left: 0;
}
.about__wrapper .function__content .link__items li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1rem solid #000;
  border-top: 0;
  transition: 0.3s;
}
.about__wrapper .function__content .link__items li a.active {
  border: 1rem solid #000;
  border-bottom: 0;
}
.about__wrapper .function__content .link__items li a.active span {
  color: #0072ff;
}
.about__wrapper .function__content .link__items li a span {
  font-weight: 500;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  color: #ccc;
  transition: 0.3s;
}
.about__wrapper .function__content .content__item {
  margin-top: 60rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  display: none;
}
.about__wrapper .function__content .content__item.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}
.about__wrapper .function__content .content__item .c__item {
  width: 20%;
  padding: 10rem;
}
.about__wrapper .function__content .content__item .c__item .c__inner {
  width: 100%;
  height: 160rem;
  border-radius: 20rem;
  background: #f5f5fa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about__wrapper .function__content .content__item .c__item .c__inner .image {
  height: 100rem;
  padding-top: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__wrapper .function__content .content__item .c__item .c__inner .image.c32 img {
  height: 32rem;
}
.about__wrapper .function__content .content__item .c__item .c__inner .image.c45 img {
  height: 45rem;
}
.about__wrapper .function__content .content__item .c__item .c__inner .image.c18 img {
  height: 18rem;
}
.about__wrapper .function__content .content__item .c__item .c__inner .image.c40 img {
  height: 40rem;
}
.about__wrapper .function__content .content__item .c__item .c__inner .image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 50rem;
}
.about__wrapper .function__content .content__item .c__item .c__inner p {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 36rem;
  text-align: center;
  color: #000;
}

.faq__wrapper {
  margin-top: 140rem;
}
.faq__wrapper .faq__links {
  max-width: 1200rem;
  width: 95%;
  height: 80rem;
  margin: auto;
  display: flex;
}
.faq__wrapper .faq__links li {
  width: 33.3333333333%;
  border-left: 1rem solid #595757;
}
.faq__wrapper .faq__links li:last-child {
  border-right: 1rem solid #595757;
}
.faq__wrapper .faq__links li a {
  width: 100%;
  height: 100%;
  padding-bottom: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.faq__wrapper .faq__links li a span {
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #0072ff;
}
.faq__wrapper .faq__links li a .arrow {
  width: 14rem;
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 10rem;
  transform: translate(-50%);
}
.faq__wrapper .faq__content {
  margin-top: 115rem;
  background: linear-gradient(to left bottom, #f2f2ff 0%, #d9e0ea 100%);
  padding: 50rem 0 150rem;
}
.faq__wrapper .faq__content .faq__item {
  width: 1050rem;
  margin: auto;
  margin-bottom: 90rem;
}
.faq__wrapper .faq__content .faq__item:last-child {
  margin-bottom: 0;
}
.faq__wrapper .faq__content .faq__item .f__lbl {
  font-weight: bold;
  font-size: 34rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #000;
}
.faq__wrapper .faq__content .faq__item .item__content {
  width: 100%;
  margin-top: 40rem;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item {
  width: 100%;
  height: auto;
  margin-bottom: 30rem;
  border-radius: 10rem;
  padding: 30rem;
  background: #fff;
  cursor: pointer;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item:last-child {
  margin-bottom: 0;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title {
  display: flex;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title.open .sign:after {
  opacity: 0;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .q__lbl {
  font-family: lineseed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: #0072ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 32rem;
  text-align: center;
  color: #fff;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .txt {
  width: 90%;
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 27rem;
  margin-left: 30rem;
  text-align: left;
  color: #000;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .sign {
  width: 20rem;
  height: 20rem;
  margin-top: 5rem;
  position: relative;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .sign:before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 3rem solid #0072ff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .sign:after {
  content: "";
  height: 100%;
  width: 0;
  border-left: 3rem solid #0072ff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  transition: 0.3s;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .a__box {
  margin-top: 20rem;
  display: none;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .a__box .inner {
  display: flex;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .a__box .inner .a__lbl {
  font-family: lineseed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: #00c6ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 32rem;
  text-align: center;
  color: #fff;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .a__box .inner .a__txt {
  width: 90%;
  font-weight: normal;
  font-size: 14rem;
  line-height: 26rem;
  margin-left: 30rem;
  text-align: left;
  color: #000;
}
.faq__wrapper .faq__content .faq__item .item__content .f__item .a__box .inner .a__txt span {
  color: #0072FF;
  font-weight: 600;
}

.contact__wrapper {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 40rem;
  padding: 90rem 50rem;
  border-top: 1rem solid #000;
  border-bottom: 1rem solid #000;
}
.contact__wrapper .detail__txt {
  font-weight: normal;
  font-size: 15rem;
  letter-spacing: 0.15em;
  line-height: 35rem;
  text-align: left;
  color: #000;
}
.contact__wrapper .contact__form {
  width: 100%;
  margin-top: 85rem;
}
.contact__wrapper .contact__form table {
  width: 100%;
}
.contact__wrapper .contact__form table tr.top td:first-child {
  padding-top: 30rem;
  vertical-align: top;
}
.contact__wrapper .contact__form table tr td {
  padding: 15rem 0;
}
.contact__wrapper .contact__form table tr td .names {
  display: flex;
  justify-content: space-between;
}
.contact__wrapper .contact__form table tr td .names input[type=text] {
  width: 400rem;
}
.contact__wrapper .contact__form table tr td select {
  width: 100%;
  height: 60rem;
  border-radius: 5rem;
  background: #f2f2f1;
  font-weight: normal;
  font-size: 16rem;
  line-height: 36rem;
  padding-left: 30rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: left;
  border: 0;
  outline: 0;
  background-image: url(../img/select_down.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}
.contact__wrapper .contact__form table tr td select option {
  color: #3c3c3c;
}
.contact__wrapper .contact__form table tr td select.placeholder {
  color: #d3d3d3; /* 薄いグレー */
}
.contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
  width: 100%;
  height: 60rem;
  border-radius: 5rem;
  background: #f2f2f1;
  border: 0;
  outline: 0;
  font-size: 16rem;
  font-weight: normal;
  line-height: 36rem;
  padding-left: 30rem;
  text-align: left;
  color: #3c3c3c;
}
.contact__wrapper .contact__form table tr td input[type=text]::-moz-placeholder, .contact__wrapper .contact__form table tr td input[type=email]::-moz-placeholder {
  color: #d3d3d3; /* 薄いグレー */
}
.contact__wrapper .contact__form table tr td input[type=text]::placeholder, .contact__wrapper .contact__form table tr td input[type=email]::placeholder {
  color: #d3d3d3; /* 薄いグレー */
}
.contact__wrapper .contact__form table tr td textarea {
  width: 100%;
  height: 200rem;
  border-radius: 5rem;
  background: #f2f2f1;
  border: 0;
  outline: 0;
  font-size: 16rem;
  font-weight: normal;
  line-height: 36rem;
  padding: 15rem;
  padding-left: 30rem;
  text-align: left;
  color: #3c3c3c;
}
.contact__wrapper .contact__form table tr td textarea::-moz-placeholder {
  color: #d3d3d3; /* 薄いグレー */
}
.contact__wrapper .contact__form table tr td textarea::placeholder {
  color: #d3d3d3; /* 薄いグレー */
}
.contact__wrapper .contact__form table tr td .privacy__content {
  width: 100%;
  height: 250rem;
  border-radius: 5rem;
  padding: 15rem 30rem;
  background: transparent;
  border: 1rem solid #aaaaab;
  overflow: auto;
}
.contact__wrapper .contact__form table tr td .privacy__content p {
  font-weight: normal;
  font-size: 14rem;
  line-height: 21rem;
  text-align: left;
  color: #3c3c3c;
}
.contact__wrapper .contact__form table tr td .privacy__content p span {
  font-weight: bold;
}
.contact__wrapper .contact__form table tr td .pck__content {
  width: 100%;
  height: 60rem;
  margin-top: 25rem;
  border-radius: 2.74rem;
  padding-left: 30rem;
  background: #f2f2f1;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 16rem;
  line-height: 36rem;
  text-align: left;
  color: #3c3c3c;
}
.contact__wrapper .contact__form table tr td .pck__content.c01 {
  height: 20rem;
  background: transparent;
  color: #00C6FF;
}
.contact__wrapper .contact__form table tr td .pck__content input {
  margin-right: 30rem;
}
.contact__wrapper .contact__form table tr td .submit__btn {
  width: 250rem;
  height: 60rem;
  margin-top: 50rem;
  border-radius: 30rem;
  background: #0072ff;
  border: 2rem solid #0072ff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.contact__wrapper .contact__form table tr td .submit__btn:disabled {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  cursor: not-allowed;
}
.contact__wrapper .contact__form table tr td .submit__btn:disabled:hover {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.contact__wrapper .contact__form table tr td .submit__btn:disabled:hover span {
  color: #fff;
}
.contact__wrapper .contact__form table tr td .submit__btn:disabled:hover .arrow svg path {
  fill: #fff;
}
.contact__wrapper .contact__form table tr td .submit__btn:hover {
  background: white;
}
.contact__wrapper .contact__form table tr td .submit__btn:hover span {
  color: #0072FF;
}
.contact__wrapper .contact__form table tr td .submit__btn:hover .arrow svg path {
  fill: #0072FF;
}
.contact__wrapper .contact__form table tr td .submit__btn span {
  font-weight: 600;
  font-size: 15rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.contact__wrapper .contact__form table tr td .submit__btn .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 18rem;
  top: 50%;
  transform: translateY(-50%);
}
.contact__wrapper .contact__form table tr td .submit__btn .arrow svg {
  width: 100%;
  height: 100%;
}
.contact__wrapper .contact__form table tr td .submit__btn .arrow svg path {
  transition: 0.3s;
}
.contact__wrapper .contact__form table tr td:first-child {
  width: 270rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.5;
  text-align: left;
  color: #3c3c3c;
}
.contact__wrapper .contact__form table tr td:first-child .required {
  font-weight: bold;
  font-size: 10rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 3rem 4rem;
  margin-left: 15rem;
  text-align: center;
  color: #fff;
  display: inline-block;
  background: #0072ff;
}

.news__wrapper {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 40rem;
  padding: 75rem 0;
  border-top: 1rem solid #000;
}
.news__wrapper .news__content {
  display: flex;
  justify-content: space-between;
}
.news__wrapper .news__content .cats {
  padding-left: 20rem;
}
.news__wrapper .news__content .cats li {
  margin-bottom: 20rem;
}
.news__wrapper .news__content .cats li.active a {
  color: #0072FF;
}
.news__wrapper .news__content .cats li.active a:after {
  opacity: 1;
}
.news__wrapper .news__content .cats li a {
  font-weight: 500;
  font-size: 16rem;
  line-height: 1.4;
  text-align: left;
  color: #ccc;
  position: relative;
}
.news__wrapper .news__content .cats li a:after {
  content: "";
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #0072ff;
  position: absolute;
  left: -17rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
}
.news__wrapper .news__content .news__items {
  width: 900rem;
}
.news__wrapper .news__content .news__items .n__item {
  display: flex;
  justify-content: space-between;
  padding: 25rem 0;
  border-bottom: 1.04rem solid #ccc;
  transition: 0.3s;
}
.news__wrapper .news__content .news__items .n__item:hover {
  opacity: 0.7;
}
.news__wrapper .news__content .news__items .n__item .image {
  width: 220rem;
  height: 120rem;
  border-radius: 10rem;
  background: #f2f2f1;
}
.news__wrapper .news__content .news__items .n__item .content__text {
  width: 580rem;
  padding-top: 10rem;
}
.news__wrapper .news__content .news__items .n__item .content__text .cat {
  width: 130rem;
  height: 20rem;
  border-radius: 9.93rem;
  margin-right: 30rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0072ff;
  font-weight: 500;
  font-size: 14rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.news__wrapper .news__content .news__items .n__item .content__text .date {
  font-weight: 500;
  font-size: 14rem;
  line-height: 28rem;
  text-align: left;
  color: #969696;
}
.news__wrapper .news__content .news__items .n__item .content__text h3 {
  font-weight: 500;
  font-size: 18rem;
  line-height: 27rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.news__wrapper .pagination {
  margin-top: 52rem;
  margin-bottom: 100rem;
}
.news__wrapper .pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.news__wrapper .pagination .wp-pagenavi span.current {
  background: #0072FF;
  color: white;
}
.news__wrapper .pagination .wp-pagenavi a, .news__wrapper .pagination .wp-pagenavi span {
  font-weight: 500;
  font-size: 18rem;
  line-height: 27rem;
  margin: 0 10rem;
  text-align: center;
  color: #000;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagination ul {
  display: flex;
  justify-content: center;
}
.news__wrapper .pagination ul li {
  font-weight: 500;
  font-size: 18rem;
  line-height: 27rem;
  margin: 0 10rem;
  text-align: center;
  color: #000;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagination ul li.active {
  background: #0072FF;
  color: white;
}

.terms__wrapper {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 40rem;
  padding: 90rem 0;
  border-top: 1rem solid #000;
}
.terms__wrapper.privacy table {
  margin-top: 0;
}
.terms__wrapper .detail__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  text-align: left;
  color: #000;
}
.terms__wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 75rem;
}
.terms__wrapper table tr td {
  padding: 18rem 0;
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  text-align: left;
  color: #3c3c3c;
}
.terms__wrapper table tr td .note__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  text-align: left;
  color: #3c3c3c;
}
.terms__wrapper table tr td:last-child {
  width: calc(100% - 410rem);
}
.terms__wrapper table tr td ol {
  list-style-type: decimal;
  padding-left: 20rem;
  margin: 0;
}
.terms__wrapper table tr td ol li {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin: 15rem;
  text-align: left;
  color: #3c3c3c;
}
.terms__wrapper table tr td ol li:first-child {
  margin-top: 0;
}
.terms__wrapper table tr td ol li::marker {
  color: #0072FF;
  font-weight: 600;
}
.terms__wrapper table tr td:first-child {
  width: 410rem;
  font-weight: bold;
  font-size: 20rem;
  line-height: 39rem;
  text-align: left;
  color: #000;
  vertical-align: top;
}
.terms__wrapper .end__lbl {
  font-weight: normal;
  font-size: 16rem;
  line-height: 32rem;
  margin-top: 40rem;
  text-align: right;
  color: #3c3c3c;
}

.act__wrapper {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 40rem;
  padding: 150rem 0 100rem;
  border-top: 1rem solid #000;
}
.act__wrapper .content__text {
  width: 1000rem;
  margin: auto;
}
.act__wrapper .content__text table {
  width: 100%;
  border-collapse: collapse;
}
.act__wrapper .content__text table tr {
  border-top: 1rem solid #000;
}
.act__wrapper .content__text table tr:last-child {
  border-bottom: 1rem solid #000;
}
.act__wrapper .content__text table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.7;
  padding: 24rem 0;
  text-align: left;
  color: #000;
}
.act__wrapper .content__text table tr td:first-child {
  width: 300rem;
  font-weight: 600;
  vertical-align: top;
}

header.job .footer__menu {
  display: none;
}

.job__fixed {
  display: none;
}

.news-detail__wrapper {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 60rem;
  padding: 80rem 0;
  border-top: 1px solid #000;
  text-align: center;
}
.news-detail__wrapper .content__inner {
  width: 950rem;
  margin: auto;
}
.news-detail__wrapper .content__inner .cat {
  width: 130rem;
  height: 20rem;
  border-radius: 9.93rem;
  margin-right: 30rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0072ff;
  font-weight: 500;
  font-size: 14rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.news-detail__wrapper .content__inner .date {
  font-weight: 500;
  font-size: 14rem;
  line-height: 28rem;
  text-align: left;
  color: #969696;
}
.news-detail__wrapper .content__inner h3 {
  font-weight: 500;
  font-size: 30rem;
  line-height: 45rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.news-detail__wrapper .content__inner .c__image {
  width: 660rem;
  display: flex;
  margin-top: 40rem;
}
.news-detail__wrapper .content__inner .content__text {
  margin-top: 40rem;
}
.news-detail__wrapper .content__inner .content__text p {
  font-weight: normal;
  font-size: 18rem;
  line-height: 36rem;
  text-align: left;
  color: #000;
}
.news-detail__wrapper .content__inner .content__text p span {
  color: #0072ff;
  font-weight: bold;
}
.news-detail__wrapper .news__btn {
  margin-top: 90rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.news-detail__wrapper .news__btn:hover .icon {
  transform: translate(-10rem);
}
.news-detail__wrapper .news__btn .icon {
  width: 15rem;
  margin-right: 20rem;
  display: flex;
  transition: 0.3s;
}
.news-detail__wrapper .news__btn .lbl {
  font-weight: bold;
  font-size: 18rem;
  color: #0072ff;
}

.thanks__wrapper {
  margin: 300rem 0 200rem;
}
.thanks__wrapper .txt {
  font-weight: normal;
  font-size: 22rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 0.9px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.8px;
  }
  .frontview .catch__image {
    width: 48%;
  }
  .frontview {
    padding: 85rem 50rem 0;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 0.7px;
  }
}
@media screen and (max-width: 950px) {
  html {
    font-size: 0.6px;
  }
  header nav ul li {
    padding: 0 10rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.266666vw;
  }
  header {
    width: 345rem;
    top: 15rem;
  }
  header.job nav {
    position: relative;
    z-index: 6;
  }
  header.job .sp-menu {
    position: relative;
    z-index: 6;
  }
  header.job .footer__menu {
    background: white;
  }
  header nav .logo {
    width: 157rem;
  }
  header nav {
    width: 86%;
    height: 50rem;
    border-radius: 5rem 0 0 5rem;
    padding: 15rem 10rem;
  }
  header .sp-menu {
    width: 50rem;
    height: 50rem;
    margin-left: -1rem;
    border-radius: 0 5rem 5rem 0;
  }
  header .sp-menu span {
    width: 15rem;
    top: 19rem;
  }
  header .sp-menu span + span {
    top: 25rem;
  }
  header .sp-menu span + span + span {
    top: 31rem;
  }
  .frontview {
    width: 345rem;
    padding: 100rem 0 0;
    margin: auto;
    display: block;
  }
  .frontview .content__text .t__lbl {
    font-weight: 500;
    font-size: 15rem;
  }
  .frontview .content__text .catchcopy__text {
    font-size: 44rem;
    letter-spacing: 0;
    margin-top: 4rem;
    line-height: 60rem;
  }
  .frontview .catch__image {
    width: 210rem;
    margin: auto;
    margin-top: 15rem;
  }
  .frontview .contact__content {
    position: relative;
    left: auto;
    bottom: auto;
  }
  .frontview .contact__content .contact__inner {
    width: 345rem;
    height: auto;
    padding: 12rem 14rem 10rem;
    margin-top: 30rem;
  }
  .frontview .contact__content .contact__inner .c__btn .c__lbl {
    font-size: 11rem;
  }
  .frontview .contact__content .contact__inner .c__btn .c__lbl:before {
    height: 11rem;
  }
  .frontview .contact__content .contact__inner .c__btn .c__lbl:after {
    height: 11rem;
  }
  .frontview .contact__content .contact__inner .c__btn a {
    width: 150rem;
    height: 40rem;
    margin-top: 10rem;
  }
  .frontview .contact__content .contact__inner .c__btn a span {
    font-size: 14rem;
  }
  .frontview .contact__content .contact__inner .c__btn a .arrow {
    width: 10rem;
    display: flex;
    position: absolute;
    right: 10rem;
  }
  .frontview .contact__content .note__txt {
    font-size: 12rem;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-top: 10rem;
    text-align: center;
  }
  .scroll__down {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 30rem;
    transform: unset;
  }
  .section-about {
    width: 345rem;
    margin: auto;
    padding: 80rem 0 60rem;
  }
  .section-title .ja__txt {
    display: block;
    font-size: 28rem;
  }
  .section-title .ja__txt .gap {
    font-size: 14rem;
    display: block;
    letter-spacing: 0.1em;
    line-height: 2;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
    margin-top: 5rem;
  }
  .section-about .about__content {
    width: 100%;
    margin-top: 40rem;
    display: block;
  }
  .section-about .about__content .content__text {
    width: 100%;
  }
  .section-about .about__content .content__text p {
    font-weight: normal;
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 30rem;
    margin-bottom: 35rem;
    text-align: justify;
  }
  .detail__btn {
    width: 200rem;
    height: 60rem;
  }
  .detail__btn span {
    font-size: 14rem;
  }
  .section-about .about__content .about__image {
    width: 260rem;
    margin: auto;
    margin-top: 75rem;
  }
  .section-about.job .about__content .about__image {
    width: 260rem;
  }
  .section-reason .link__content {
    padding: 45rem 0;
  }
  .section-reason .link__content .content__inner {
    width: 345rem;
  }
  .section-reason .link__content .content__inner .link__items {
    width: 100%;
    height: auto;
    margin-top: 40rem;
    flex-wrap: wrap;
    border: 1rem solid #fff;
  }
  .section-reason .link__content .content__inner .link__items li {
    width: 50%;
    height: 100rem;
  }
  .section-reason .link__content .content__inner .link__items li a .num {
    font-size: 22rem;
  }
  .section-reason .link__content .content__inner .link__items li a .en__txt {
    font-size: 12rem;
  }
  .section-reason .link__content .content__inner .link__items li a .ja__txt {
    font-size: 16rem;
  }
  .section-reason .link__content .content__inner .link__items li a .arrow__down {
    width: 8rem;
    margin-top: 9rem;
  }
  .section-reason .link__content .content__inner .link__items li a {
    border: 1rem solid #fff;
  }
  .section-reason .link__content .content__inner .link__items li:last-child a {
    border-right: 1rem solid #fff;
  }
  .section-reason .reason__content .c__item {
    width: 100%;
    padding-top: 80rem;
    flex-direction: column-reverse;
  }
  .section-reason .reason__content {
    width: 345rem;
    margin: auto;
    padding-bottom: 80rem;
  }
  .section-reason .reason__content .c__item .content__text {
    width: 100%;
  }
  .section-reason .reason__content .c__item .content__text .num {
    font-size: 32rem;
    margin-bottom: 10rem;
  }
  .section-reason .reason__content .c__item .content__text .c__txt {
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 30rem;
    margin-top: 25rem;
    text-align: justify;
  }
  .section-reason .reason__content .c__item .c__image {
    width: 210rem;
    margin: auto;
    margin-top: 38rem;
  }
  .section-reason .reason__content .c__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .section-reason .reason__content .c__item:nth-child(2n) .c__image.c02 {
    width: 225rem;
    margin: auto;
    margin-top: 40rem;
  }
  .section-reason .reason__content .c__item .content__text .note__txt {
    font-size: 11rem;
    letter-spacing: 0.1em;
    line-height: 22rem;
  }
  .section-reason .reason__content .c__item:nth-child(2n) .c__image.c04 {
    width: 180rem;
    margin: auto;
    margin-top: 40rem;
  }
  .section-plan {
    padding: 50rem 0;
  }
  .section-plan .content__inner {
    width: 345rem;
  }
  .section-plan .content__inner .price__content {
    display: block;
  }
  .section-plan .content__inner .price__content .content__text {
    width: 100%;
  }
  .section-plan .content__inner .price__content .content__text .detail__btn {
    margin: auto;
  }
  .section-plan .content__inner .price__content .content__text .c__txt {
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 30rem;
    margin-top: 40rem;
    margin-bottom: 45rem;
    text-align: justify;
  }
  .section-plan .content__inner .price__content .price__image {
    width: 100%;
    margin-bottom: 50rem;
  }
  .section-plan .content__inner .fee__content {
    width: 100%;
    margin-top: 90rem;
    display: block;
  }
  .section-plan .content__inner .fee__content .fee__text:last-child {
    width: 100%;
    margin-top: 32rem;
  }
  .section-plan .content__inner .note__txt {
    font-weight: normal;
    font-size: 14rem;
    letter-spacing: 0.1em;
    line-height: 28rem;
  }
  .section-flow {
    width: 345rem;
    margin: auto;
    padding: 80rem 0;
  }
  .section-flow .detail__content {
    display: block;
  }
  .section-flow .detail__content .content__text {
    width: 100%;
  }
  .section-flow .detail__content .content__text .c__txt {
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 30rem;
    margin-top: 35rem;
    text-align: justify;
  }
  .section-flow .flow__content {
    width: 100%;
    margin-top: 35rem;
  }
  .section-flow .flow__content .c__item .image__inner {
    width: 110rem;
    height: auto;
    margin-right: 20rem;
  }
  .section-flow .flow__content .c__item .content__text {
    width: 210rem;
  }
  .section-flow .flow__content .c__item .content__text .step__lbl .__lbl {
    font-size: 12rem;
  }
  .section-flow .flow__content .c__item .content__text .step__lbl .line {
    width: 40rem;
  }
  .section-flow .flow__content .c__item .content__text h2 {
    font-size: 18rem;
    letter-spacing: 0.1em;
    line-height: 23rem;
    margin-top: 13rem;
  }
  .section-flow .flow__content .c__item .content__text .c__txt {
    font-weight: normal;
    font-size: 12rem;
    letter-spacing: 0.15em;
    line-height: 18rem;
    margin-top: 11rem;
  }
  .section-flow .flow__content .c__item {
    padding-bottom: 50rem;
  }
  .detail__btn.--small {
    width: 160rem;
    height: 40rem;
  }
  .section-contact .section-title.--white .ja__txt {
    text-align: center;
  }
  .section-contact .note__txt {
    width: 300rem;
    margin: auto;
    font-weight: normal;
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 28rem;
    margin-top: 22rem;
    text-align: justify;
  }
  .section-contact .contact__items {
    width: 300rem;
    margin: auto;
    margin-top: 30rem;
    display: block;
  }
  .section-contact .contact__items .c__item {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 18rem 0 20rem;
    border-radius: 10rem;
    margin-bottom: 25rem;
  }
  .section-contact .contact__items .c__item .c__lbl {
    font-weight: bold;
    font-size: 14rem;
    letter-spacing: 0.1em;
    line-height: 21rem;
  }
  .section-contact .contact__items .c__item .c__icon {
    width: auto;
    height: 45rem;
    margin: 10rem auto 15rem;
  }
  .section-contact .contact__items .c__item:nth-child(2) .c__icon img {
    height: 100%;
  }
  .section-contact .contact__items .c__item:nth-child(3) .c__icon img {
    height: 80%;
  }
  .section-contact .contact__items .c__item .b__btn {
    width: 180rem;
  }
  .section-contact .contact__items .c__item .b__btn .arrow {
    width: 10rem;
    right: 15rem;
  }
  .section-contact .contact__items .c__item .note__txt {
    font-size: 12rem;
  }
  footer .footer__inner {
    width: 325rem;
    margin: auto;
    display: block;
  }
  footer .footer__inner .footer__menu {
    width: 100%;
    display: block;
    margin-top: 15rem;
  }
  footer {
    padding: 32rem 0 60rem;
  }
  footer .footer__inner .footer__info .logo {
    width: 210rem;
    margin: auto;
  }
  footer .footer__inner .footer__info .f__lbl {
    font-size: 18rem;
    letter-spacing: 0;
    line-height: 1.8;
    margin-top: 13rem;
    text-align: center;
  }
  footer .footer__inner .footer__menu .f__menu > li {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 12rem 10rem;
    border-top: 1rem solid #000;
  }
  footer .footer__inner .footer__menu .f__menu > li.parent span {
    position: relative;
    display: block;
  }
  footer .footer__inner .footer__menu .f__menu > li.parent span.open:before {
    opacity: 0;
  }
  footer .footer__inner .footer__menu .f__menu > li.parent span:after {
    content: "";
    width: 15rem;
    height: 0;
    border-top: 3rem solid #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  footer .footer__inner .footer__menu .f__menu > li.parent span:before {
    content: "";
    width: 0;
    height: 15rem;
    border-left: 3rem solid #000;
    position: absolute;
    right: 6.4rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  footer .footer__inner .footer__menu .f__menu > li.parent > ul.child {
    display: none;
  }
  footer .footer__inner .footer__menu .f__menu > li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer__inner .footer__menu .f__menu > li a span {
    font-size: 13rem;
    font-weight: 600;
  }
  footer .footer__inner .footer__menu .f__menu > li ul.other {
    width: 100%;
    margin-top: 0;
    padding-top: 5rem;
    border-top: unset;
  }
  footer .footer__inner .footer__menu .f__menu > li ul.other li a {
    font-size: 12rem;
    font-weight: 600;
    display: inline-flex;
  }
  footer .copyright {
    font-size: 12rem;
    margin-top: 20rem;
    text-align: center;
  }
  header .hambeg .header__content {
    padding: 25rem 30rem 15rem;
    border-bottom: unset;
  }
  header .hambeg .header__content .h__logo {
    width: 157rem;
  }
  header .hambeg .header__content .h__btns .close__btn {
    width: 10rem;
    margin-left: 0;
  }
  header .hambeg .footer__inner .footer__info .f__lbl {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 0;
    text-align: center;
  }
  header .hambeg .footer__inner {
    width: 325rem;
    margin: auto;
    margin-top: 30rem;
    display: block;
  }
  header .hambeg .footer__inner .footer__menu {
    width: 100%;
    margin-top: 30rem;
    display: block;
  }
  header .hambeg {
    width: 375rem;
    height: 100vh;
    overflow: auto;
    position: absolute;
    border-radius: 0;
    left: 50%;
    top: -16rem;
    transform: translate(-50%);
  }
  header.fixed .hambeg {
    top: -10rem;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 12rem 10rem;
    border-top: 1rem solid #fff;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li.parent span {
    position: relative;
    display: block;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li.parent span.open:before {
    opacity: 0;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li.parent span:after {
    content: "";
    width: 15rem;
    height: 0;
    border-top: 2.4rem solid #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li.parent span:before {
    content: "";
    width: 0;
    height: 15rem;
    border-left: 2.4rem solid #fff;
    position: absolute;
    right: 6.4rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li.parent > ul.child {
    display: none;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li a span {
    font-size: 13rem;
    font-weight: 600;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li ul.other {
    width: 100%;
    margin-top: 0;
    padding-top: 5rem;
    border-top: unset;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li ul.other li a {
    font-size: 12rem;
    font-weight: 600;
    display: inline-flex;
  }
  .fixed__btns {
    width: 100%;
    right: 0;
    bottom: 0;
    display: none;
  }
  .fixed__btns.fixed {
    display: flex;
    animation: fadeIn 0.3s forwards;
  }
  .fixed__btns .c__btn {
    width: 50%;
    height: 50rem;
    margin: 0;
    border-radius: 0;
    background: #14dca0;
    border: 0;
    box-shadow: 2rem 2rem 4rem rgba(198, 198, 198, 0.75);
    outline: 0;
    outline-offset: 0;
    position: relative;
  }
  .fixed__btns .c__btn .arrow {
    width: 10rem;
    display: flex;
    position: absolute;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .fixed__btns .c__btn .arrow svg {
    width: 100%;
    height: 100%;
  }
  .fixed__btns .c__btn .t__lbl {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0;
  }
  .fixed__btns .c__btn .c__lbl {
    width: 100%;
    font-size: 11rem;
    letter-spacing: 0.05em;
    line-height: 14rem;
    margin-bottom: 4rem;
  }
  .fixed__btns .c__btn .c__txt {
    display: none;
  }
  .frontview__job .frontview__content .content__text .gap__txt {
    font-size: 13rem;
    padding: 3rem 5rem;
  }
  .frontview__job .frontview__content .content__text h1 {
    font-size: 44rem;
    letter-spacing: 0;
    line-height: 62rem;
    margin-top: 10rem;
  }
  .frontview__job .frontview__content {
    width: 345rem;
    padding: 0;
    display: block;
  }
  .frontview__job .frontview__content .register__form {
    width: 345rem;
    height: auto;
    padding: 8rem 0;
    border-radius: 5rem;
    margin-top: 215rem;
  }
  .frontview__job .frontview__content .register__form .g__txt {
    font-size: 13rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 4rem;
  }
  .frontview__job .frontview__content .register__form .g__txt:before {
    width: 0;
    height: 14rem;
  }
  .frontview__job .frontview__content .register__form .g__txt:after {
    width: 0;
    height: 14rem;
  }
  .frontview__job .frontview__content .register__form .line__btn {
    width: 280rem;
    height: 45rem;
  }
  .frontview__job .frontview__content .register__form .line__btn span {
    font-size: 16rem;
  }
  .frontview__job .frontview__content .register__form .line__btn .icon {
    width: 22rem;
  }
  .frontview__job .frontview__content .register__form .line__btn .arrow {
    right: 15rem;
  }
  .frontview__job .frontview__content .register__form .p__lbl {
    font-size: 12rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-top: 7rem;
  }
  .frontview__job {
    width: 100%;
    display: block;
  }
  .frontview__job .scroll__down {
    bottom: 70rem;
  }
  .section-about.job {
    padding-top: 50rem;
  }
  .job-reason {
    height: auto;
    padding: 50rem 0;
  }
  .job-reason .content__inner {
    width: 345rem;
  }
  .job-reason .content__inner .content__items {
    margin-top: 38rem;
    display: block;
  }
  .job-reason .content__inner .content__items .c__item {
    width: 325rem;
    height: auto;
    margin: auto;
    border-radius: 10rem;
    background: #fff;
    padding: 20rem 0;
    margin-bottom: 20rem;
  }
  .job-reason .content__inner .content__items .c__item:last-child {
    margin-bottom: 0;
  }
  .job-reason .content__inner .content__items .c__item .c__txt {
    width: 280rem;
    height: auto;
    font-size: 12rem;
    letter-spacing: 0.05em;
    line-height: 24rem;
  }
  .job-reason .content__inner .content__items .c__item .icon {
    margin-top: 20rem;
    width: auto;
    height: auto;
  }
  .job-reason .content__inner .content__items .c__item .icon img {
    height: 102rem;
  }
  .job-feature {
    width: 345rem;
    margin: auto;
    padding: 50rem 0;
  }
  .job-feature .feature__content {
    margin-top: 40rem;
    display: block;
  }
  .job-feature .feature__content ul li {
    width: 325rem;
    margin: 0 0 0 auto;
    position: relative;
    margin-bottom: 20rem;
  }
  .job-feature .feature__content ul li .content__text {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 10rem;
    padding: 21rem 15rem 21rem 32rem;
    background: #f5f5f5;
  }
  .job-feature .feature__content ul li .content__text h3 {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 22rem;
  }
  .job-feature .feature__content ul li .content__text p {
    font-size: 14rem;
    letter-spacing: 0.05em;
    line-height: 21rem;
  }
  .job-feature .feature__content ul li .num {
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: #06c755;
    font-size: 20rem;
    line-height: 1;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .job-feature .feature__content .f__image {
    width: 250rem;
    margin: auto;
    margin-top: 40rem;
  }
  .job-feature .trouble__content {
    margin-top: 75rem;
  }
  .job-feature .trouble__content .t__item h3 {
    font-size: 22rem;
    letter-spacing: 0.1em;
    line-height: 27rem;
    margin-top: 10rem;
  }
  .job-feature .trouble__content .t__item {
    width: 275rem;
    margin: auto;
  }
  .job-feature .trouble__content .t__item .content__text li .txt {
    font-weight: bold;
    font-size: 16rem;
  }
  .job-feature .trouble__content .t__item .content__text li {
    border: 0;
  }
  .job-feature .trouble__content .t__item .content__text .arrow__left {
    width: 7.5rem;
    height: 25rem;
    background: url(../img/s_left.png);
    background-size: 100% 100%;
    position: absolute;
    left: -20rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
  }
  .job-feature .trouble__content .t__item .content__text .arrow__right {
    width: 7.5rem;
    height: 25rem;
    background: url(../img/s_right.png);
    background-size: 100% 100%;
    position: absolute;
    right: -20rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
  }
  .job-feature .trouble__content .t__item .content__text .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    position: absolute;
    left: 50%;
    bottom: -25rem;
    transform: translate(-50%);
  }
  .job-feature .trouble__content .t__item .content__text .slick-dots li {
    margin: 0 3.5rem;
  }
  .job-feature .trouble__content .t__item .content__text .slick-dots button {
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background: #dbdcdc;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #dbdcdc;
    text-indent: -9999px;
  }
  .job-feature .trouble__content .t__item .content__text .slick-dots li.slick-active button {
    background-color: #06c755;
  }
  .job-feature .trouble__content .arrow__down {
    width: 45rem;
    margin: auto;
    margin-top: 50rem;
  }
  .job-feature .trouble__content .t__item.c01 .content__text .slick-dots li.slick-active button {
    background: #ffbe1e;
    background-color: #ffbe1e;
  }
  .job-feature .trouble__content .t__item.c01 .content__text .arrow__left {
    background: url(../img/c_left.png);
    background-size: 100% 100%;
  }
  .job-feature .trouble__content .t__item.c01 .content__text .arrow__right {
    background: url(../img/c_right.png);
    background-size: 100% 100%;
  }
  .job-voice {
    width: 345rem;
    margin: auto;
    padding: 50rem 0 40rem;
    margin-top: 20rem;
  }
  .job-voice .voice__items {
    width: 300rem;
    margin: auto;
    margin-top: 38rem;
  }
  .job-voice .voice__items .v__item {
    width: 100%;
  }
  .job-voice .voice__items .v__item .c__text {
    padding: 15rem 0;
    font-size: 14rem;
    letter-spacing: 0.05em;
    line-height: 28rem;
  }
  .job-faq {
    padding: 50rem 0;
  }
  .job-faq .content__inner {
    width: 345rem;
    margin: auto;
    margin-top: 30rem;
  }
  .job-faq .content__inner .faq__items {
    width: 100%;
    margin: auto;
    margin-top: 30rem;
  }
  .job-voice .voice__items .v__item .p__lbl {
    letter-spacing: 0;
  }
  .job-faq .content__inner .faq__items .f__item {
    border-radius: 15rem;
    padding: 25rem 20rem;
    margin-bottom: 15rem;
  }
  .job-faq .content__inner .faq__items .f__item .q__title .q__lbl {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    font-size: 14rem;
    line-height: 1;
  }
  .job-faq .content__inner .faq__items .f__item .q__title .txt {
    width: 80%;
    font-size: 14rem;
    letter-spacing: 0.1em;
    line-height: 21rem;
    margin-left: 10rem;
  }
  .job-faq .content__inner .faq__items .f__item .q__title .sign {
    width: 12rem;
    height: 12rem;
    margin-left: 10rem;
    margin-top: 5rem;
  }
  .job-faq .content__inner .faq__items .f__item .a__box .inner .a__lbl {
    width: 25rem;
    height: 25rem;
    font-size: 14rem;
  }
  .job-faq .content__inner .faq__items .f__item .a__box .inner .a__txt {
    width: 80%;
    font-weight: normal;
    font-size: 12rem;
    letter-spacing: 0.1em;
    line-height: 24rem;
    margin-left: 10rem;
  }
  footer.job .footer__inner {
    width: 325rem;
    margin: auto;
    display: block;
  }
  footer.job .footer__inner .footer__info .logo {
    width: 190rem;
  }
  footer.job {
    padding: 50rem 0 60rem;
  }
  footer.job .footer__inner .footer__info .g__txt {
    font-size: 14rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 20rem;
  }
  footer.job .footer__inner .footer__info .g__txt:before {
    height: 14rem;
  }
  footer.job .footer__inner .footer__info .g__txt:after {
    height: 14rem;
  }
  footer.job .footer__inner .footer__info {
    width: 100%;
  }
  footer.job .footer__inner .footer__info .line__btn span {
    font-size: 16rem;
  }
  footer.job .footer__inner .footer__info .line__btn .icon {
    width: 25rem;
    left: 15rem;
  }
  footer.job .footer__inner .footer__menu {
    width: 100%;
    height: auto;
    margin-top: 30rem;
    display: block;
  }
  footer.job .footer__inner .f__logo {
    width: 184rem;
    display: flex;
    margin: auto;
    margin-top: 60rem;
  }
  footer.job .footer__inner .footer__menu li {
    margin: 0;
    padding: 14rem 8rem;
    border-top: 1px solid #000;
  }
  footer.job .footer__inner .footer__menu li.item {
    width: -moz-max-content;
    width: max-content;
    display: inline-block;
    border-top: 0;
    padding: 14rem;
  }
  footer.job .footer__inner .footer__menu li.login {
    margin-top: 0;
  }
  footer.job .footer__inner .footer__menu li.login.recruit {
    border-top: 0;
  }
  footer.job .footer__inner .footer__menu li.login.recruit a {
    background: #0072ff;
    margin-top: 0;
  }
  footer.job .footer__inner .footer__menu li.login a {
    width: 100%;
    height: 50rem;
    margin-top: 10rem;
    border-radius: 7.5rem;
    background: #06c755;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    color: #fff;
  }
  footer.job .footer__inner .footer__menu li a {
    font-size: 12rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer.job .footer__inner .footer__menu li a span {
    font-weight: bold;
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: left;
    color: #000;
  }
  footer.job .copyright {
    margin-top: 20rem;
    font-weight: normal;
    font-size: 12rem;
  }
  header.job .footer__menu {
    width: 375rem;
    height: 100%;
    height: 100vh;
    margin-top: 0;
    padding: 75rem 25rem;
    background: white;
    position: fixed;
    top: -15rem;
    z-index: 4;
  }
  header.job .footer__menu li {
    margin: 0;
    padding: 14rem 8rem;
    border-top: 1px solid #000;
  }
  header.job .footer__menu li.item {
    width: -moz-max-content;
    width: max-content;
    display: inline-block;
    border-top: 0;
    padding: 14rem;
  }
  header.job .footer__menu li.login {
    margin-top: 0;
  }
  header.job .footer__menu li.login.recruit {
    border-top: 0;
  }
  header.job .footer__menu li.login.recruit a {
    background: #0072ff;
    margin-top: 0;
  }
  header.job .footer__menu li.login a {
    width: 100%;
    height: 50rem;
    margin-top: 10rem;
    border-radius: 7.5rem;
    background: #06c755;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    color: #fff;
  }
  header.job .footer__menu li a {
    font-size: 12rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
  }
  header.job .footer__menu li a span {
    font-weight: bold;
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: left;
    color: #000;
  }
  header.job .footer__menu li a .icon {
    width: 12rem;
    display: flex;
    margin-left: 4rem;
  }
  header.job.fixed .footer__menu {
    top: -10rem;
  }
  header.job.open nav {
    background: transparent;
    box-shadow: none;
  }
  header.job.open .sp-menu {
    background: transparent;
    box-shadow: none;
  }
  header.job.open .sp-menu.open span:nth-child(1) {
    top: 25rem;
    transform: translate(-50%) rotate(45deg);
  }
  header.job.open .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  header.job.open .sp-menu.open span:nth-child(3) {
    top: 25rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .subfrontview {
    width: 345rem;
    margin: 140rem auto 65rem;
    display: block;
  }
  .subfrontview .section-title .ja__txt {
    font-size: 28rem;
  }
  .subfrontview .section-title .ja__txt.c01 {
    font-size: 25rem;
  }
  .subfrontview .about__image {
    width: 300rem;
    margin: auto;
    margin-top: 40rem;
  }
  .breadcrumb {
    width: 345rem;
    margin-top: 10rem;
    margin-bottom: 20rem;
  }
  .about__detail {
    width: 345rem;
    margin: auto;
    margin-top: 65rem;
    font-weight: normal;
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 30rem;
    text-align: justify;
  }
  .about__wrapper .point__content {
    padding: 65rem 0 20rem;
    margin-top: 65rem;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item {
    width: 100%;
    height: auto;
    margin-bottom: 45rem;
    border-radius: 20rem;
    padding: 45rem 15rem 45rem;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item.open .p__lbl:before {
    opacity: 0;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item .sub__item {
    display: none;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item .p__lbl {
    position: relative;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item .p__lbl:after {
    content: "";
    width: 15rem;
    height: 0;
    border-top: 3rem solid #0072FF;
    position: absolute;
    top: -25rem;
    right: 0;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item .p__lbl:before {
    content: "";
    width: 0;
    height: 15rem;
    border-left: 3rem solid #0072FF;
    position: absolute;
    top: -31rem;
    right: 6rem;
  }
  .about__wrapper .problem__content {
    width: 345rem;
    margin: auto;
    padding: 68rem 0;
  }
  .about__wrapper .problem__content .content__text {
    display: block;
  }
  .about__wrapper .problem__content .content__text p {
    width: 100%;
    font-weight: normal;
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 30rem;
    text-align: justify;
  }
  .about__wrapper .problem__content .content__text .c__image {
    width: 225rem;
    margin-left: 24rem;
    margin-top: 35rem;
  }
  .about__wrapper .solution__content {
    width: 345rem;
  }
  .about__wrapper .solution__content .content__items {
    margin-top: 25rem;
    display: block;
  }
  .about__wrapper .solution__content .content__items .c__item {
    width: 315rem;
    height: auto;
    margin: auto;
    margin-bottom: 15rem;
    padding: 21rem 16rem 30rem;
    position: relative;
  }
  .about__wrapper .solution__content .content__items .c__item.open:before {
    opacity: 0;
  }
  .about__wrapper .solution__content .content__items .c__item:after {
    content: "";
    width: 15rem;
    height: 0;
    border-top: 3rem solid #000;
    position: absolute;
    top: 20rem;
    right: 20rem;
  }
  .about__wrapper .solution__content .content__items .c__item:before {
    content: "";
    width: 0;
    height: 15rem;
    border-left: 3rem solid #000;
    position: absolute;
    top: 14rem;
    right: 26rem;
  }
  .about__wrapper .solution__content .content__items .c__item .sub__item {
    display: none;
  }
  .about__wrapper .solution__content .content__items .c__item .c__txt {
    height: auto;
  }
  .about__wrapper .voice__content {
    width: 345rem;
    margin: auto;
    padding: 50rem 0 0;
  }
  .about__wrapper .voice__content .content__items {
    width: 300rem;
    margin: auto;
    margin-top: 30rem;
  }
  .about__wrapper .voice__content .content__items .c__item {
    width: 100%;
    padding: 0;
    margin-bottom: 45rem;
  }
  .about__wrapper .voice__content .content__items .c__item .content__text {
    padding: 15rem 0 0;
  }
  .about__wrapper .voice__content .content__items .c__item .content__text .c__txt {
    font-size: 14rem;
    letter-spacing: 0.05em;
    line-height: 28rem;
  }
  .about__wrapper .function__content {
    width: 345rem;
    margin: auto;
    padding-bottom: 100rem;
    padding-top: 60rem;
  }
  .about__wrapper .function__content .link__items {
    height: 50rem;
  }
  .about__wrapper .function__content .link__items li a span {
    font-size: 14rem;
  }
  .about__wrapper .function__content .content__item {
    margin-top: 25rem;
    justify-content: space-between;
  }
  .about__wrapper .function__content .content__item .c__item {
    width: 165rem;
    padding: 0;
    margin-bottom: 15rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner .image {
    height: 50rem;
    padding-top: 0rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner p {
    font-size: 12rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner .image img {
    height: 40rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner p {
    line-height: 1.6;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner .image.c32 img {
    height: 26rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner .image.c45 img {
    height: 36rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner .image.c18 img {
    height: 15rem;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner .image.c40 img {
    height: 31rem;
  }
  .faq__wrapper {
    margin-top: 50rem;
  }
  .faq__wrapper .faq__content {
    margin-top: 50rem;
    padding: 70rem 0 80rem;
  }
  .faq__wrapper .faq__links {
    max-width: 1200rem;
    width: 345rem;
    height: auto;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq__wrapper .faq__links li a {
    width: 165rem;
    height: 70rem;
    border-radius: 5rem;
    background: white;
    padding-bottom: 15rem;
  }
  .faq__wrapper .faq__links li {
    width: auto;
    border-left: 0;
  }
  .faq__wrapper .faq__links li a span {
    font-size: 13rem;
    line-height: 1.3;
  }
  .faq__wrapper .faq__links li a .arrow {
    width: 11rem;
    left: 50%;
    bottom: 13rem;
  }
  .faq__wrapper .faq__links li:last-child {
    border-right: 0;
    margin-top: 14rem;
  }
  .faq__wrapper .faq__content .faq__item {
    width: 345rem;
    margin: auto;
    margin-top: 65rem;
    margin-bottom: 65rem;
  }
  .faq__wrapper .faq__content .faq__item .f__lbl {
    font-size: 24rem;
    line-height: 1.3;
  }
  .faq__wrapper .faq__content .faq__item .item__content {
    margin-top: 24rem;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item {
    width: 100%;
    height: auto;
    margin-bottom: 15rem;
    border-radius: 15rem;
    padding: 25rem 20rem;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .q__lbl {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    font-size: 14rem;
    line-height: 1;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .txt {
    width: 85%;
    padding-right: 11rem;
    font-size: 14rem;
    letter-spacing: 0.1em;
    line-height: 21rem;
    margin-left: 10rem;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .sign {
    width: 13rem;
    height: 13rem;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .sign:before {
    border-bottom: 2rem solid #0072ff;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .q__title .sign:after {
    border-left: 2rem solid #0072ff;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .a__box .inner .a__lbl {
    width: 25rem;
    height: 25rem;
    font-size: 14rem;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .a__box .inner .a__txt {
    width: 83%;
    font-weight: normal;
    font-size: 13rem;
    line-height: 26rem;
    margin-left: 10rem;
  }
  .faq__wrapper .faq__content .faq__item .item__content .f__item .a__box {
    margin-top: 15rem;
  }
  .subfrontview .about__image.contact {
    width: 220rem;
  }
  .contact__wrapper {
    width: 345rem;
    margin: auto;
    margin-top: 0;
    padding: 46rem 0;
  }
  .contact__wrapper .detail__txt {
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 28rem;
    text-align: justify;
  }
  .contact__wrapper .contact__form {
    width: 100%;
    margin-top: 35rem;
  }
  .contact__wrapper .contact__form table tr {
    display: grid;
  }
  .contact__wrapper .contact__form table tr td:first-child {
    width: 100%;
    font-weight: normal;
    font-size: 14rem;
    padding-bottom: 0;
  }
  .contact__wrapper .contact__form table tr td .names input[type=text] {
    width: 165rem;
  }
  .contact__wrapper .contact__form table tr td select {
    width: 100%;
    height: 60rem;
    font-size: 14rem;
    line-height: 36rem;
    padding-left: 15rem;
  }
  .contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
    height: 60rem;
    border-radius: 5rem;
    font-size: 14rem;
    line-height: 36rem;
    padding-left: 15rem;
  }
  .contact__wrapper .contact__form table tr td textarea {
    font-size: 14rem;
    line-height: 1.6;
    padding: 15rem;
  }
  .contact__wrapper .contact__form table tr td .privacy__content {
    height: 250rem;
    border-radius: 5rem;
    padding: 15rem 15rem;
  }
  .contact__wrapper .contact__form table tr td .pat {
    display: none;
  }
  .contact__wrapper .contact__form table tr td .pck__content {
    width: 100%;
    height: 60rem;
    margin-top: 25rem;
    border-radius: 2.74rem;
    padding-left: 15rem;
    background: #f2f2f1;
    font-size: 13rem;
  }
  .contact__wrapper .contact__form table tr td .pck__content input {
    margin-right: 10rem;
  }
  .contact__wrapper .contact__form table tr td .submit__btn {
    width: 100%;
    height: 60rem;
    margin-top: 40rem;
  }
  .contact__wrapper .contact__form table tr td .pck__content.c01 {
    height: 20rem;
  }
  .news__wrapper {
    width: 345rem;
    margin: auto;
    margin-top: 50rem;
    padding: 30rem 0;
  }
  .news__wrapper .news__content {
    display: block;
  }
  .news__wrapper .news__content .cats {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .news__wrapper .news__content .cats li {
    margin-bottom: 20rem;
    margin-left: 32rem;
  }
  .news__wrapper .news__content .news__items {
    width: 100%;
  }
  .news__wrapper .news__content .news__items .n__item {
    display: block;
    padding: 30rem 15rem;
    border-top: 1.04rem solid #000;
    border-bottom: 0;
  }
  .news__wrapper .news__content .news__items .n__item .image {
    width: 100%;
    height: 170rem;
    border-radius: 15rem;
  }
  .news__wrapper .news__content .news__items .n__item .content__text {
    width: 100%;
    padding-top: 20rem;
  }
  .news__wrapper .news__content .news__items .n__item .content__text .cat {
    width: 120rem;
    height: 20rem;
    margin-right: 20rem;
    font-size: 12rem;
  }
  .news__wrapper .news__content .news__items .n__item .content__text h3 {
    font-size: 16rem;
    line-height: 24rem;
  }
  .terms__wrapper table tr {
    display: grid;
  }
  .terms__wrapper {
    width: 345rem;
    padding: 50rem 0;
  }
  .terms__wrapper table tr td:first-child {
    width: 100%;
    font-size: 18rem;
    line-height: 1.4;
    padding-top: 50rem;
  }
  .terms__wrapper table tr td {
    padding: 10rem 0;
    font-weight: normal;
    font-size: 14rem;
    line-height: 28rem;
  }
  .terms__wrapper table tr td:last-child {
    width: 100%;
  }
  .terms__wrapper .detail__txt {
    font-size: 14rem;
    line-height: 28rem;
  }
  .terms__wrapper table tr td ol li {
    font-weight: normal;
    font-size: 14rem;
    line-height: 28rem;
  }
  .terms__wrapper table tr td ol {
    padding-left: 5rem;
  }
  .terms__wrapper .end__lbl {
    font-size: 14rem;
  }
  .section-title .en__txt {
    letter-spacing: 0.05em;
  }
  .act__wrapper {
    width: 345rem;
    margin: auto;
    margin-top: 40rem;
    padding: 90rem 0 40rem;
  }
  .act__wrapper .content__text table tr {
    display: grid;
  }
  .act__wrapper .content__text table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .act__wrapper .content__text {
    width: 100%;
  }
  .act__wrapper .content__text table tr td:last-child {
    padding-top: 5rem;
  }
  .act__wrapper .content__text table tr td {
    font-size: 14rem;
  }
  .job__fixed {
    width: 100%;
    height: 50rem;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: #06c755;
  }
  .job__fixed.fixed {
    display: flex;
    animation: fadeIn 0.3s forwards;
  }
  .job__fixed .line__icon {
    width: 22rem;
    display: flex;
    position: absolute;
    left: 20rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .job__fixed .line__icon svg {
    width: 100%;
    height: 100%;
  }
  .job__fixed span {
    font-weight: bold;
    font-size: 16rem;
    color: white;
  }
  .frontview .content__text {
    margin-top: 0;
  }
  header .sp-menu.open span:nth-child(3) {
    top: 25rem;
  }
  header .sp-menu.open span:nth-child(1) {
    top: 25rem;
  }
  header .sp-menu.open {
    background: transparent;
  }
  header.job .sp-menu.open span {
    border-color: black;
  }
  .about__wrapper .voice__content .content__items .c__item .content__text .cats span {
    border: 2rem solid #000;
    margin: 0 5rem 10rem 0;
  }
  .about__wrapper .voice__content .content__items .c__item .content__text .cats span:last-child {
    margin-right: 0;
  }
  .about__wrapper .function__content .link__items li a {
    border: 2rem solid #000;
    border-top: 0;
  }
  .about__wrapper .function__content .link__items li a.active {
    border: 2rem solid #000;
    border-bottom: 0;
  }
  .about__wrapper .function__content .content__item .c__item .c__inner {
    width: 100%;
    height: 100rem;
    border-radius: 10rem;
  }
  .about__wrapper .point__content .content__inner .point__items .p__item .p__txt {
    font-size: 13rem;
  }
  header .hambeg .footer__inner .footer__menu .f__menu > li > ul li > a {
    font-weight: 600;
  }
  header.fixed .hambeg .header__content.sp {
    padding: 10rem 0 50rem;
    justify-content: center;
  }
  header .hambeg .header__content .h__btns {
    margin-right: 0;
  }
  header .hambeg .header__content .h__btns .login__btn {
    width: 325rem;
    height: 45rem;
  }
  footer .footer__inner .footer__menu .f__menu > li > ul li > a {
    font-weight: 600;
  }
  .breadcrumb a, .breadcrumb span {
    font-size: 12rem;
  }
  .news-detail__wrapper .content__inner {
    width: 305rem;
  }
  .news-detail__wrapper {
    width: 345rem;
    margin: auto;
    margin-top: 50rem;
    padding: 50rem 0 100rem;
  }
  .news-detail__wrapper .content__inner .cat {
    width: 120rem;
    height: 20rem;
    font-size: 12rem;
  }
  .news-detail__wrapper .content__inner h3 {
    font-size: 16rem;
    line-height: 24rem;
  }
  .news-detail__wrapper .content__inner .c__image {
    width: 100%;
    display: flex;
    margin-top: 30rem;
  }
  .news-detail__wrapper .content__inner .content__text p {
    font-size: 14rem;
    line-height: 28rem;
    text-align: justify;
  }
  .news-detail__wrapper .news__btn .lbl {
    font-size: 15rem;
  }
  .news-detail__wrapper .news__btn .icon {
    width: 12rem;
    margin-right: 14rem;
  }
  .thanks__wrapper {
    margin: 200rem 0 100rem;
  }
  .thanks__wrapper .txt {
    font-size: 16rem;
  }
}/*# sourceMappingURL=style.css.map */