@charset "UTF-8";
@font-face {
  font-family: Helvetica-Bold;
  src: url(../font/Helvetica-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Helvetica-Light;
  src: url(../font/HelveticaLight.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Zen Kaku Gothic Antique", 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;
  background-color: #fff;
}

* {
  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(50px);
  }
  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(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.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 {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.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 {
  max-width: 1400rem;
  width: 100%;
  height: 100rem;
  margin: auto;
  padding: 0 20rem 0 80rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  z-index: 3;
}
header.fixed {
  position: fixed;
  background: white;
  animation: fadeIn 0.5s forwards;
}
header .logo {
  width: 226.91rem;
  display: flex;
  transition: 0.3s;
}
header .logo:hover {
  opacity: 0.7;
}
header ul {
  display: flex;
  align-items: center;
}
header ul li {
  padding: 0 15rem;
}
header ul li.contact:hover a {
  background: white;
}
header ul li.contact:hover a span {
  color: #00A0E9;
}
header ul li.contact a {
  width: 220rem;
  height: 60rem;
  border-radius: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #00a0e9 0%, #00bfe9 100%);
  border: 1rem solid #00A0E9;
  transition: 0.3s;
}
header ul li.contact a span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
header ul li a {
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: right;
  color: #232323;
  transition: 0.3s;
}
header ul li a:hover {
  color: #00a0e9;
}

.frontview {
  max-width: 1240rem;
  width: 95vw;
  margin: auto;
  padding-top: 100rem;
  display: flex;
  position: relative;
  opacity: 1;
}
.frontview.visible img {
  clip-path: inset(0);
}
.frontview.visible .catchcopy__text {
  opacity: 1;
}
.frontview img {
  transition: 1s;
  clip-path: inset(0 100% 0 0);
}
.frontview .catchcopy__text {
  width: 726rem;
  display: flex;
  position: absolute;
  left: 0;
  bottom: 20rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}

.well-detail {
  margin-top: 170rem;
}
.well-detail .detail__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.well-detail .detail__content .c__image {
  width: 600rem;
  margin-right: 80rem;
  display: flex;
  border-radius: 20rem;
  overflow: hidden;
}
.well-detail .detail__content .content__text {
  width: 400rem;
}
.well-detail .detail__content .content__text h2 {
  font-weight: 900;
  font-size: 40rem;
  line-height: 54rem;
  text-align: justify;
  color: #00a0e9;
}
.well-detail .detail__content .content__text .c__txt {
  width: 100%;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  margin-bottom: 42rem;
  text-align: justify;
  color: #232323;
}
.well-detail .detail__content .content__text .detail__btn {
  margin: 0 0 0 auto;
}
.well-detail .service__content {
  max-width: 1320rem;
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 115rem;
  border-radius: 12rem;
  padding: 90rem;
  background: linear-gradient(to right, #00a0e9 0%, #00bfe9 100%);
}
.well-detail .service__content .content__inner {
  width: 100%;
  display: flex;
  position: relative;
  opacity: 1;
}
.well-detail .service__content .content__inner.is-animated img {
  clip-path: inset(0);
}
.well-detail .service__content .content__inner img {
  clip-path: inset(100% 100% 0 0);
  transition: 1.5s;
  transition-delay: 0.5s;
}
.well-detail .service__content .content__inner .content__text {
  position: absolute;
  padding: 20rem;
  left: 0;
  top: 0;
}
.well-detail .service__content .content__inner .content__text.right-bottom {
  left: auto;
  right: 0;
  top: 540rem;
}
.well-detail .service__content .content__inner .content__text.right-bottom p {
  width: 300rem;
}
.well-detail .service__content .content__inner .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 1.5;
  text-align: justify;
  color: #fff;
}
.well-detail .service__content .content__inner .content__text p {
  width: 220rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  margin-bottom: 25rem;
  text-align: justify;
  color: #fff;
}
.well-detail .service__content .train__content {
  margin-top: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.well-detail .service__content .train__content .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 1.5;
  text-align: justify;
  color: #fff;
}
.well-detail .service__content .train__content .content__text p {
  width: 400rem;
  margin-top: 28rem;
  margin-bottom: 40rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #fff;
}
.well-detail .service__content .train__content .c__image {
  width: 600rem;
  border-radius: 20rem;
  overflow: hidden;
}
.well-detail .well__flow {
  margin-top: 140rem;
}
.well-detail .well__flow .content__items {
  width: 1090rem;
  margin: auto;
}
.well-detail .well__flow .content__items .c__item {
  width: 100%;
  margin-bottom: 120rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.well-detail .well__flow .content__items .c__item:last-child {
  margin-bottom: 0;
  flex-direction: row-reverse;
}
.well-detail .well__flow .content__items .c__item .c__image {
  width: 600rem;
  display: flex;
  border-radius: 20rem;
  overflow: hidden;
}
.well-detail .well__flow .content__items .c__item .content__text {
  width: 400rem;
}
.well-detail .well__flow .content__items .c__item .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 54rem;
  text-align: justify;
  color: #00a0e9;
}
.well-detail .well__flow .content__items .c__item .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin: 30rem 0 40rem;
  text-align: justify;
  color: #232323;
}

.detail__btn {
  width: 220rem;
  height: 60rem;
  border-radius: 30rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.detail__btn:hover {
  background: #96d8f6;
}
.detail__btn:hover span {
  color: white;
}
.detail__btn:hover .icon svg path {
  stroke: white;
}
.detail__btn .icon {
  width: 6rem;
  display: flex;
  position: absolute;
  right: 40rem;
  top: 50%;
  transform: translateY(-50%);
}
.detail__btn .icon svg {
  width: 100%;
  height: 100%;
}
.detail__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
  transition: 0.3s;
}

.section-title .en__txt {
  font-family: Helvetica-Bold;
  font-weight: normal;
  font-size: 20rem;
  line-height: 1.5;
  text-align: center;
  color: #00a0e9;
}
.section-title .ja__txt {
  font-weight: 900;
  font-size: 40rem;
  line-height: 54rem;
  margin-top: 10rem;
  text-align: center;
  color: #00a0e9;
}

.section-voice {
  max-width: 1320rem;
  width: 100%;
  height: auto;
  margin: auto;
  margin-top: 120rem;
  border-radius: 12rem;
  background: #f5fafa;
  padding: 130rem 0 30rem;
}
.section-voice .no__text {
  font-weight: normal;
  font-size: 20rem;
  line-height: 28.8rem;
  margin-top: 50rem;
  margin-bottom: 70rem;
  text-align: center;
  color: #232323;
}
.section-voice .voice__slider {
  width: 100%;
  margin-top: 75rem;
  padding-bottom: 70rem;
  display: flex;
}
.section-voice .voice__slider .swiper-button-next {
  width: 50rem;
  height: 100rem;
  background: url(../img/arrow_right.webp);
  background-size: 100% 100%;
  position: absolute;
  top: 18%;
  right: 0;
  bottom: auto;
}
.section-voice .voice__slider .swiper-button-next:after {
  content: unset;
}
.section-voice .voice__slider .swiper-button-prev {
  width: 50rem;
  height: 100rem;
  background: url(../img/arrow_left.webp);
  background-size: 100% 100%;
  position: absolute;
  top: 18%;
  left: 0;
  bottom: auto;
}
.section-voice .voice__slider .swiper-button-prev:after {
  content: unset;
}
.section-voice .voice__slider .swiper-pagination {
  bottom: 10rem;
}
.section-voice .voice__slider .c__item {
  width: 300rem;
}
.section-voice .voice__slider .c__item .c__image {
  width: 100%;
  display: flex;
}
.section-voice .voice__slider .c__item .content__text {
  padding-top: 25rem;
}
.section-voice .voice__slider .c__item .content__text .company__name {
  font-weight: bold;
  font-size: 16rem;
  line-height: 26.4rem;
  text-align: justify;
  color: #232323;
}
.section-voice .voice__slider .c__item .content__text h3 {
  font-weight: 500;
  font-size: 18rem;
  line-height: 32.4rem;
  margin-top: 10rem;
  text-align: justify;
  color: #00a0e9;
}
.section-voice .voice__slider .c__item .content__text .more__btn {
  margin-top: 20rem;
  display: flex;
  justify-content: right;
  align-items: center;
}
.section-voice .voice__slider .c__item .content__text .more__btn .lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: right;
  color: #00a0e9;
}
.section-voice .voice__slider .c__item .content__text .more__btn .arrow {
  width: 10rem;
  margin-left: 12rem;
  display: flex;
}

.section-belong {
  margin-top: 120rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-belong .c__image {
  width: 600rem;
  border-radius: 20rem;
  overflow: hidden;
  display: flex;
}
.section-belong .content__text {
  width: 400rem;
  margin-left: 90rem;
}
.section-belong .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 54rem;
  text-align: justify;
  color: #00a0e9;
}
.section-belong .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  margin-bottom: 40rem;
  text-align: justify;
  color: #232323;
}
.section-belong .content__text .detail__btn {
  margin: auto;
}

.bottom__links {
  margin-top: 120rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom__links .detail__btn {
  width: 360rem;
  height: 100rem;
  margin: 0 10rem;
  border-radius: 50rem;
}

.section-contact {
  max-width: 1320rem;
  width: 95%;
  margin: auto;
  margin-top: 120rem;
  display: flex;
  position: relative;
}
.section-contact .content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-contact .content__inner .contact__items {
  display: flex;
  justify-content: center;
  margin-top: 70rem;
}
.section-contact .content__inner .contact__items .c__btn {
  width: 360rem;
  height: 100rem;
  margin: 0 13rem;
  border-radius: 50rem;
  background: #00a0e9;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.section-contact .content__inner .contact__items .c__btn:hover {
  background: white;
}
.section-contact .content__inner .contact__items .c__btn:hover span {
  color: #00A0E9;
}
.section-contact .content__inner .contact__items .c__btn:hover .arrow svg path {
  stroke: #00A0E9;
}
.section-contact .content__inner .contact__items .c__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.section-contact .content__inner .contact__items .c__btn .arrow {
  width: 6rem;
  display: flex;
  position: absolute;
  right: 40rem;
  top: 50%;
  transform: translateY(-50%);
}
.section-contact .content__inner .contact__items .c__btn .arrow svg {
  width: 100%;
  height: 100%;
}

footer {
  max-width: 1320rem;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 90rem 0 65rem;
  margin-top: 40rem;
  border-radius: 12rem;
  background: #f5fafa;
}
footer a {
  transition: 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
footer .footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__menu .f__info .f__logo {
  width: 87rem;
  display: flex;
  margin: auto;
}
footer .footer__menu .f__info .info__txt {
  font-weight: bold;
  font-size: 16rem;
  line-height: 28rem;
  margin-top: 25rem;
  text-align: center;
  color: #232323;
}
footer .footer__menu .f__menu {
  display: flex;
  margin-left: 120rem;
}
footer .footer__menu .f__menu ul {
  margin-right: 90rem;
}
footer .footer__menu .f__menu ul li {
  margin-bottom: 15rem;
}
footer .footer__menu .f__menu ul li a {
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.5;
  text-align: justify;
  color: #232323;
  transition: 0.3s;
}
footer .footer__menu .f__menu ul li a:hover {
  color: #00a0e9;
}

.copyright {
  font-weight: normal;
  font-size: 14rem;
  line-height: 25.2rem;
  margin-top: 90rem;
  text-align: center;
  color: #232323;
}

.subfrontview {
  max-width: 1240rem;
  width: 95vw;
  padding-top: 100rem;
  display: flex;
  margin: auto;
  position: relative;
  opacity: 1;
}
.subfrontview.visible img {
  clip-path: inset(0);
}
.subfrontview.visible .sub__content {
  opacity: 1;
}
.subfrontview img {
  transition: 1s;
  clip-path: inset(0 100% 0 0);
}
.subfrontview .sub__content {
  width: 620rem;
  height: 250rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}
.subfrontview .sub__content .breadcrumb {
  position: absolute;
  left: 20rem;
  top: 10rem;
}
.subfrontview .sub__content .breadcrumb a, .subfrontview .sub__content .breadcrumb span {
  font-weight: normal;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: justify;
  color: #505050;
}
.subfrontview .sub__content .s__title .en__txt {
  font-family: Helvetica-Bold;
  font-weight: bold;
  font-size: 20rem;
  line-height: 54rem;
  text-align: center;
  color: #00a0e9;
}
.subfrontview .sub__content .s__title .ja__txt {
  font-weight: 900;
  font-size: 40rem;
  line-height: 54rem;
  margin-top: 7rem;
  text-align: center;
  color: #00a0e9;
}

.sub-detail__content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sub-detail__content .c__image {
  width: 360rem;
  display: flex;
  margin-right: 90rem;
}
.sub-detail__content .content__text {
  width: 650rem;
  position: relative;
}
.sub-detail__content .content__text .w__man {
  width: 180rem;
  display: flex;
  position: absolute;
  right: 35rem;
  top: -130rem;
}
.sub-detail__content .content__text h3 {
  font-weight: 900;
  font-size: 28rem;
  line-height: 46.2rem;
  text-align: justify;
  color: #00a0e9;
}
.sub-detail__content .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  text-align: justify;
  color: #232323;
}
.sub-detail__content .content__text .p__links {
  margin-top: 40rem;
  display: flex;
  align-items: center;
}
.sub-detail__content .content__text .p__links .p__link {
  width: 300rem;
  height: 60rem;
  margin-right: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30rem;
  background: #00a0e9;
  border: 1rem solid #96d8f6;
  position: relative;
  transition: 0.3s;
}
.sub-detail__content .content__text .p__links .p__link:hover {
  background: white;
}
.sub-detail__content .content__text .p__links .p__link:hover span {
  color: #00A0E9;
}
.sub-detail__content .content__text .p__links .p__link:hover .icon svg path, .sub-detail__content .content__text .p__links .p__link:hover .icon svg rect {
  stroke: #00A0E9;
}
.sub-detail__content .content__text .p__links .p__link .icon {
  width: 6rem;
  display: flex;
  position: absolute;
  right: 30rem;
  top: 50%;
  transform: translateY(-50%);
}
.sub-detail__content .content__text .p__links .p__link .icon svg {
  width: 100%;
  height: 100%;
}
.sub-detail__content .content__text .p__links .p__link span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.sub__line {
  max-width: 1320rem;
  width: 95%;
  height: 0rem;
  margin: 105rem auto;
  background: transparent;
  border-bottom: 1rem solid #96d8f6;
}

.sub__title.--white .en__txt {
  color: white;
}
.sub__title.--white .ja__txt {
  color: white;
}
.sub__title .en__txt {
  font-family: Helvetica-Bold;
  font-size: 16rem;
  line-height: 1.4;
  text-align: center;
  color: #00a0e9;
}
.sub__title .ja__txt {
  font-weight: bold;
  font-size: 28rem;
  line-height: 44rem;
  margin-top: 15rem;
  text-align: center;
  color: #00a0e9;
}

.about__wrapper {
  margin-top: 120rem;
}
.about__wrapper .feature__content {
  width: 100%;
  position: relative;
}
.about__wrapper .feature__content .gap {
  width: 400rem;
  display: flex;
  position: absolute;
  top: -200rem;
  right: 10%;
  z-index: 2;
}
.about__wrapper .feature__content .content__items {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  margin-top: 60rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about__wrapper .feature__content .content__items .c__item {
  width: 540rem;
  height: auto;
  margin-bottom: 60rem;
  padding: 70rem 60rem;
  border-radius: 12rem;
  background: #f5fafa;
  position: relative;
}
.about__wrapper .feature__content .content__items .c__item:nth-child(2n) {
  animation-delay: 0.3s;
}
.about__wrapper .feature__content .content__items .c__item .num {
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 90rem;
  line-height: 1;
  text-align: justify;
  color: #b2e2f8;
  position: absolute;
  left: 15rem;
  top: -35rem;
}
.about__wrapper .feature__content .content__items .c__item h3 {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: center;
  color: #00a0e9;
}
.about__wrapper .feature__content .content__items .c__item .p__line {
  width: 100%;
  display: flex;
  margin: 35rem 0;
}
.about__wrapper .feature__content .content__items .c__item .c__image {
  width: 100%;
  display: flex;
}
.about__wrapper .feature__content .content__items .c__item .t__txt {
  font-weight: bold;
  font-size: 20rem;
  line-height: 33rem;
  margin-top: 30rem;
  text-align: justify;
  color: #232323;
}
.about__wrapper .feature__content .content__items .c__item .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  text-align: justify;
  color: #232323;
}
.about__wrapper .well__introduce {
  max-width: 1320rem;
  width: 95%;
  height: auto;
  margin: auto;
  padding: 110rem 90rem;
  margin-top: 120rem;
  border-radius: 12rem;
  background: #00a0e9;
  text-align: center;
}
.about__wrapper .well__introduce .t__txt {
  font-weight: bold;
  font-size: 36rem;
  line-height: 59.4rem;
  text-align: center;
  color: #fff;
  display: inline-block;
  position: relative;
}
.about__wrapper .well__introduce .t__txt .gap {
  width: 90rem;
  display: flex;
  position: absolute;
  left: 70rem;
  top: -60rem;
  opacity: 1;
  transform: scale(0);
  transform-origin: 0% 0%;
  transition: transform 0.3s;
}
.about__wrapper .well__introduce .t__txt .gap.is-animated {
  transform: scale(1);
}
.about__wrapper .well__introduce .content__items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about__wrapper .well__introduce .content__items .c__item {
  width: 350rem;
  margin-top: 90rem;
}
.about__wrapper .well__introduce .content__items .c__item:nth-child(3n+2) {
  animation-delay: 0.3s;
}
.about__wrapper .well__introduce .content__items .c__item:nth-child(3n) {
  animation-delay: 0.6s;
}
.about__wrapper .well__introduce .content__items .c__item h3 {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  letter-spacing: -0.05em;
  text-align: center;
  color: #ff0;
}
.about__wrapper .well__introduce .content__items .c__item .p__line {
  width: 100%;
  display: flex;
  margin: 33rem 0;
}
.about__wrapper .well__introduce .content__items .c__item p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #fff;
}
.about__wrapper .well__introduce .content__items .c__item p.c01 {
  height: 260rem;
}
.about__wrapper .well__introduce .content__items .c__item .link__btn {
  width: 300rem;
  height: 60rem;
  margin: auto;
  margin-top: 10rem;
  border-radius: 30rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
  position: relative;
  transition: 0.3s;
}
.about__wrapper .well__introduce .content__items .c__item .link__btn:hover {
  background: #00A0E9;
  color: white;
}
.about__wrapper .well__introduce .content__items .c__item .link__btn:hover .icon svg path, .about__wrapper .well__introduce .content__items .c__item .link__btn:hover .icon svg rect {
  fill: white;
}
.about__wrapper .well__introduce .content__items .c__item .link__btn .icon {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 30rem;
  top: 50%;
  transform: translateY(-50%);
}
.about__wrapper .well__introduce .content__items .c__item .link__btn .icon svg {
  width: 100%;
  height: 100%;
}

.sub__links {
  margin-top: 120rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub__links .p__link {
  width: 300rem;
  height: 100rem;
  margin: 0 10rem;
  border-radius: 50rem;
  padding-left: 34rem;
  background: linear-gradient(to right, #ff5a46 0%, #ff7864 100%);
  border: 1rem solid #ffa078;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.sub__links .p__link:hover {
  background: white;
}
.sub__links .p__link:hover .lbl {
  color: #ff5a46;
}
.sub__links .p__link .c__icon {
  width: 80rem;
  display: flex;
  position: absolute;
  left: 10rem;
  top: 50%;
  transform: translateY(-50%);
}
.sub__links .p__link .arrow {
  width: 6rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 40rem;
  transform: translateY(-50%);
}
.sub__links .p__link .arrow svg {
  width: 100%;
  height: 100%;
}
.sub__links .p__link .lbl {
  font-weight: 500;
  font-size: 16rem;
  line-height: 22rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.other__gap {
  margin-top: 50rem;
}
.other__gap .c__lbl {
  font-weight: 900;
  font-size: 28rem;
  line-height: 1.2;
  text-align: center;
  color: #ff5a46;
}
.other__gap .b__line {
  width: 700rem;
  display: flex;
  margin: auto;
}

.service__wrapper {
  margin-top: 120rem;
}
.service__wrapper .service__content .content__items {
  max-width: 1320rem;
  width: 95%;
  margin: auto;
  margin-top: 55rem;
  display: flex;
  flex-wrap: wrap;
}
.service__wrapper .service__content .content__items .c__item {
  width: 25%;
  height: auto;
  padding: 0 6rem;
}
.service__wrapper .service__content .content__items .c__item:nth-child(2) {
  animation-delay: 0.3s;
}
.service__wrapper .service__content .content__items .c__item:nth-child(3) {
  animation-delay: 0.6s;
}
.service__wrapper .service__content .content__items .c__item:nth-child(4) {
  animation-delay: 0.9s;
}
.service__wrapper .service__content .content__items .c__item .c__inner {
  width: 100%;
  height: 100%;
  padding: 10rem;
  border-radius: 12rem;
  background: #00a0e9;
}
.service__wrapper .service__content .content__items .c__item .c__inner .c__image {
  width: 100%;
  display: flex;
}
.service__wrapper .service__content .content__items .c__item .c__inner .content__text {
  padding: 30rem 20rem 10rem;
}
.service__wrapper .service__content .content__items .c__item .c__inner .content__text h3 {
  width: 100%;
  height: 80rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #fff;
}
.service__wrapper .service__content .content__items .c__item .c__inner .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  text-align: justify;
  color: #fff;
}

.c__links {
  margin-top: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c__links .link {
  width: 360rem;
  height: 100rem;
  margin: 0 10rem;
  border-radius: 50rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c__links .link .icon {
  width: 6rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 40rem;
  transform: translateY(-50%);
}
.c__links .link .icon svg {
  width: 100%;
  height: 100%;
}
.c__links .link span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 22rem;
  text-align: center;
  color: #00a0e9;
}

.difference__wrapper {
  margin-top: 120rem;
}
.difference__wrapper .difference__content {
  width: 100%;
}
.difference__wrapper .difference__content .content__detail {
  max-width: 1130rem;
  width: 95%;
  margin: auto;
  margin-top: 70rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.difference__wrapper .difference__content .content__detail .content__text {
  width: 570rem;
  padding: 60rem 75rem;
  background: #f5fafa;
}
.difference__wrapper .difference__content .content__detail .content__text h3 {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__detail .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__detail .c__image {
  width: 520rem;
  display: flex;
}
.difference__wrapper .difference__content .content__table {
  width: 1130rem;
  height: auto;
  margin: auto;
  margin-top: 60rem;
  border-radius: 12rem;
  padding: 75rem;
  background: #f5fafa;
}
.difference__wrapper .difference__content .content__table .t__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__table .n__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__table .table__inner {
  width: 100%;
}
.difference__wrapper .difference__content .content__table table {
  width: 100%;
  margin-top: 10rem;
  border-collapse: collapse;
}
.difference__wrapper .difference__content .content__table table tr {
  border-bottom: 1rem solid #a7a7a7;
}
.difference__wrapper .difference__content .content__table table tr.base td {
  vertical-align: baseline;
}
.difference__wrapper .difference__content .content__table table tr.c01 td {
  text-align: justify;
  color: #232323 !important;
}
.difference__wrapper .difference__content .content__table table tr:nth-child(9) {
  border-bottom: 0;
}
.difference__wrapper .difference__content .content__table table tr:nth-child(9) td:last-child {
  vertical-align: baseline;
}
.difference__wrapper .difference__content .content__table table tr:first-child {
  border-bottom: 0;
}
.difference__wrapper .difference__content .content__table table tr:first-child td {
  padding-bottom: 0;
}
.difference__wrapper .difference__content .content__table table tr td {
  width: 33.3333333333%;
  padding: 20rem 0;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
}
.difference__wrapper .difference__content .content__table table tr td ul {
  width: 240rem;
  margin: auto;
}
.difference__wrapper .difference__content .content__table table tr td ul li {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
  padding-left: 20rem;
  text-indent: -8rem;
  margin-bottom: 8rem;
}
.difference__wrapper .difference__content .content__table table tr td ul li span {
  color: #00A0E9;
  display: inline-block;
}
.difference__wrapper .difference__content .content__table table tr td span {
  font-weight: normal;
  font-size: 14rem;
  color: #232323;
  display: block;
}
.difference__wrapper .difference__content .content__table table tr td:last-child {
  color: #ff5a46;
}
.difference__wrapper .difference__content .content__table table tr td:last-child ul li span {
  color: #ff5a46;
}
.difference__wrapper .difference__content .content__table table tr td .ct__lbl {
  width: 95%;
  height: 40rem;
  margin: auto;
  border-radius: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00a0e9;
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
}
.difference__wrapper .difference__content .content__table table tr td .ct__lbl.c01 {
  background: #ff5a46;
}
.difference__wrapper .difference__content .content__table table tr td .c__lbl {
  width: 310rem;
  height: 40rem;
  border-radius: 6rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #505050;
}
.difference__wrapper .difference__content .content__table table tr td:first-child {
  width: 320rem;
  text-align: center;
}
.difference__wrapper .difference__content .content__member {
  width: 1130rem;
  height: auto;
  margin: auto;
  margin-top: 60rem;
  padding: 75rem 65rem 20rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.difference__wrapper .difference__content .content__member .dt__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.difference__wrapper .difference__content .content__member .dt__content .content__text {
  width: 300rem;
}
.difference__wrapper .difference__content .content__member .dt__content .content__text .t__txt {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__member .dt__content .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 28rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__member .dt__content .c__image {
  width: 600rem;
  display: flex;
}
.difference__wrapper .difference__content .content__member .note__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__term {
  width: 1130rem;
  height: auto;
  margin: auto;
  padding: 65rem 75rem;
  margin-top: 60rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.difference__wrapper .difference__content .content__term .c__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__term .term__detail {
  width: 100%;
  margin-top: 20rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.difference__wrapper .difference__content .content__term .term__detail .cp__image {
  width: 640rem;
}
.difference__wrapper .difference__content .content__term .term__detail .cp__image .c__image {
  width: 100%;
  display: flex;
}
.difference__wrapper .difference__content .content__term .term__detail .cp__image .cap__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 40rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .content__term .term__detail .c__text {
  width: 270rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .note__detail {
  width: 970rem;
  margin: auto;
  margin-top: 60rem;
  display: flex;
}
.difference__wrapper .difference__content .note__detail .n__item {
  width: 50%;
  padding: 50rem 85rem 50rem 0;
  border-right: 1rem dashed #a7a7a7;
}
.difference__wrapper .difference__content .note__detail .n__item:last-child {
  padding: 50rem 0 50rem 85rem;
  border-right: 0;
}
.difference__wrapper .difference__content .note__detail .n__item .n__lbl {
  font-weight: bold;
  font-size: 20rem;
  line-height: 33rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .note__detail .n__item .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 30rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .case__detail {
  width: 1080rem;
  height: auto;
  margin: auto;
  margin-top: 60rem;
  padding: 80rem 0;
  border-radius: 305rem;
  background: #fff;
  border: 1rem solid #80cff4;
}
.difference__wrapper .difference__content .case__detail .cd__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: center;
  color: #00a0e9;
}
.difference__wrapper .difference__content .case__detail .cd__items {
  margin-top: 45rem;
  display: flex;
  justify-content: center;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item {
  width: 300rem;
  margin: 0 40rem;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item:last-child .cp__btn {
  background: #ff5a46;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item:last-child ul li span {
  color: #ff5a46;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item .cp__btn {
  width: 100%;
  height: auto;
  padding: 7rem 0;
  border-radius: 6rem;
  background: #00a0e9;
  font-weight: bold;
  font-size: 20rem;
  line-height: 36rem;
  text-align: center;
  color: #fff;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item ul {
  margin-top: 35rem;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item ul li {
  font-weight: normal;
  font-size: 18rem;
  line-height: 32.4rem;
  padding-left: 20rem;
  text-indent: -16rem;
  text-align: justify;
  color: #232323;
}
.difference__wrapper .difference__content .case__detail .cd__items .c__item ul li span {
  color: #00a0e9;
}
.difference__wrapper .difference__content .detail__text {
  width: 680rem;
  margin: auto;
  margin-top: 55rem;
}
.difference__wrapper .difference__content .detail__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}

.flow__wrapper {
  margin-top: 120rem;
}
.flow__wrapper .flow__content {
  width: 1090rem;
  height: auto;
  margin: auto;
  padding: 50rem 60rem;
  margin-top: 120rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.flow__wrapper .flow__content table {
  width: 100%;
  border-collapse: collapse;
}
.flow__wrapper .flow__content table tr {
  border-bottom: 1rem dashed #a7a7a7;
}
.flow__wrapper .flow__content table tr:last-child {
  border-bottom: 0;
}
.flow__wrapper .flow__content table tr:last-child td .step {
  background: #ff5a46;
}
.flow__wrapper .flow__content table tr:last-child td h3 {
  color: #ff5a46;
}
.flow__wrapper .flow__content table tr td {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
  padding: 45rem 0;
}
.flow__wrapper .flow__content table tr td span {
  color: #00a0e9;
}
.flow__wrapper .flow__content table tr td:first-child {
  width: 350rem;
  vertical-align: top;
}
.flow__wrapper .flow__content table tr td h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 54rem;
  margin-bottom: 25rem;
  text-align: justify;
  color: #00a0e9;
}
.flow__wrapper .flow__content table tr td .step {
  width: 300rem;
  height: 40rem;
  margin: auto;
  margin-top: 10rem;
  border-radius: 6rem;
  background: #00a0e9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
}

.training__wrapper {
  margin-top: 120rem;
  overflow: hidden;
}
.training__wrapper .program__content {
  position: relative;
  width: 100%;
}
.training__wrapper .program__content .program__gap {
  width: 400rem;
  display: flex;
  position: absolute;
  top: -145rem;
  right: -45rem;
  z-index: 1;
}
.training__wrapper .program__content .content__items {
  max-width: 1140rem;
  width: 95%;
  margin: auto;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.training__wrapper .program__content .content__items .c__item {
  width: 540rem;
  height: auto;
  margin-top: 60rem;
  padding: 45rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.training__wrapper .program__content .content__items .c__item:nth-child(2n) {
  animation-delay: 0.3s;
}
.training__wrapper .program__content .content__items .c__item h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 36.3rem;
  letter-spacing: -0.05em;
  text-align: center;
  color: #00a0e9;
}
.training__wrapper .program__content .content__items .c__item .p__line {
  width: 100%;
  margin: 35rem 0;
  display: flex;
}
.training__wrapper .program__content .content__items .c__item .c__image {
  width: 100%;
  display: flex;
}
.training__wrapper .program__content .content__items .c__item p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 31rem;
  text-align: justify;
  color: #232323;
}
.training__wrapper .program__content .content__items .c__item .p__link {
  width: 300rem;
  height: 60rem;
  margin: auto;
  margin-top: 25rem;
  border-radius: 30rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.training__wrapper .program__content .content__items .c__item .p__link:hover {
  background: #00a0e9;
}
.training__wrapper .program__content .content__items .c__item .p__link:hover span {
  color: white;
}
.training__wrapper .program__content .content__items .c__item .p__link:hover .icon svg path, .training__wrapper .program__content .content__items .c__item .p__link:hover .icon svg rect {
  fill: #fff;
}
.training__wrapper .program__content .content__items .c__item .p__link span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
}
.training__wrapper .program__content .content__items .c__item .p__link .icon {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 30rem;
  top: 50%;
  transform: translateY(-50%);
}
.training__wrapper .program__content .content__items .c__item .p__link .icon svg {
  width: 100%;
  height: 100%;
}

.ssw__wrapper {
  margin-top: 120rem;
  text-align: center;
}
.ssw__wrapper .ssw__txt {
  width: auto;
  margin: auto;
  margin-bottom: 100rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
  display: inline-block;
}
.ssw__wrapper .merits__content {
  margin-top: 120rem;
  background: linear-gradient(to right, #00a0e9 0%, #00bfe9 100%);
  padding: 110rem 0 60rem;
  margin-bottom: 100rem;
}
.ssw__wrapper .merits__content .content__items {
  max-width: 1320rem;
  width: 95%;
  margin: auto;
  margin-top: 55rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.ssw__wrapper .merits__content .content__items .gap {
  width: 460rem;
  display: flex;
  position: absolute;
  right: 15rem;
  top: -275rem;
}
.ssw__wrapper .merits__content .content__items .c__item {
  width: 320rem;
  height: auto;
  border-radius: 12rem;
  padding: 10rem;
  background: #fff;
}
.ssw__wrapper .merits__content .content__items .c__item:nth-child(3) {
  animation-delay: 0.3s;
}
.ssw__wrapper .merits__content .content__items .c__item:nth-child(4) {
  animation-delay: 0.6s;
}
.ssw__wrapper .merits__content .content__items .c__item:nth-child(5) {
  animation-delay: 0.9s;
}
.ssw__wrapper .merits__content .content__items .c__item .c__image {
  width: 100%;
  display: flex;
}
.ssw__wrapper .merits__content .content__items .c__item .content__text {
  padding: 20rem;
}
.ssw__wrapper .merits__content .content__items .c__item .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 36.3rem;
  letter-spacing: -0.05em;
  text-align: justify;
  color: #00a0e9;
}
.ssw__wrapper .merits__content .content__items .c__item .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 20rem;
  text-align: justify;
  color: #00a0e9;
}
.ssw__wrapper .start__flow {
  width: 1130rem;
  height: auto;
  margin: auto;
  padding: 60rem;
  margin-top: 60rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.ssw__wrapper .start__flow .c__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .start__flow .c__image {
  width: 100%;
  display: flex;
  margin-top: 15rem;
}
.ssw__wrapper .accept__step {
  width: 1130rem;
  height: auto;
  margin: auto;
  margin-top: 60rem;
  padding: 60rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.ssw__wrapper .accept__step .c__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .accept__step .n__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .accept__step .step__items {
  width: 100%;
  margin-top: 50rem;
}
.ssw__wrapper .accept__step .step__items .s__item {
  width: 100%;
  margin-bottom: 25rem;
}
.ssw__wrapper .accept__step .step__items .s__item .t__title {
  width: 100%;
  height: 40rem;
  border-radius: 6rem;
  padding: 0 10rem 0 20rem;
  background: #00a0e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ssw__wrapper .accept__step .step__items .s__item .t__title.open span {
  background: #99d9f6;
}
.ssw__wrapper .accept__step .step__items .s__item .t__title.open span:after {
  opacity: 0;
}
.ssw__wrapper .accept__step .step__items .s__item .t__title .t__lbl {
  font-weight: bold;
  font-size: 18rem;
  line-height: 32.4rem;
  text-align: justify;
  color: #fff;
}
.ssw__wrapper .accept__step .step__items .s__item .t__title span {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: 0.3s;
}
.ssw__wrapper .accept__step .step__items .s__item .t__title span:before {
  content: "";
  width: 12rem;
  height: 0rem;
  background: #b2e2f8;
  border-top: 2rem solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ssw__wrapper .accept__step .step__items .s__item .t__title span:after {
  content: "";
  width: 0rem;
  height: 12rem;
  background: transparent;
  border-left: 2rem solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.ssw__wrapper .accept__step .step__items .s__item .a__box {
  padding: 20rem 0 0 30rem;
  display: none;
}
.ssw__wrapper .accept__step .step__items .s__item .a__box p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .accept__step .contact__part {
  margin-top: 40rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ssw__wrapper .accept__step .contact__part .c__txt {
  width: 610rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .accept__step .contact__part .detail__btn {
  width: 300rem;
  height: 100rem;
  border-radius: 50rem;
}
.ssw__wrapper .want__list {
  width: 1130rem;
  height: auto;
  margin: auto;
  padding: 75rem;
  margin-top: 60rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.ssw__wrapper .want__list .c__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .want__list .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .want__list .table__inner {
  width: 100%;
  margin-top: 25rem;
}
.ssw__wrapper .want__list .table__inner .c__image {
  width: 100%;
  display: flex;
}
.ssw__wrapper .want__list .table__inner table {
  width: 100%;
  border-collapse: collapse;
  border-collapse: separate; /* 必要に応じて */
  border-spacing: 10rem; /* セル間の間隔 */
}
.ssw__wrapper .want__list .table__inner table tr:nth-child(2n) td {
  background: #e5f5fd;
}
.ssw__wrapper .want__list .table__inner table tr:nth-child(2n+1) td {
  background: #ccecfb;
}
.ssw__wrapper .want__list .table__inner table tr th {
  background: #00a0e9;
  font-weight: 500;
  font-size: 14rem;
  line-height: 20rem;
  padding: 8rem 25rem;
  text-align: center;
  color: #fff;
}
.ssw__wrapper .want__list .table__inner table tr th:first-child {
  border-radius: 6rem 0 0 6rem;
}
.ssw__wrapper .want__list .table__inner table tr th:last-child {
  border-radius: 0 6rem 6rem 0;
}
.ssw__wrapper .want__list .table__inner table tr td {
  font-weight: normal;
  font-size: 14rem;
  line-height: 20rem;
  padding: 15rem 0;
  text-align: center;
  color: #000;
}
.ssw__wrapper .want__list .contact__part {
  margin-top: 65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ssw__wrapper .want__list .contact__part .c__txt {
  width: 610rem;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}
.ssw__wrapper .want__list .contact__part .detail__btn {
  width: 300rem;
  height: 100rem;
  border-radius: 50rem;
}
.ssw__wrapper .list__content {
  width: 970rem;
  margin: auto;
  margin-top: 85rem;
}
.ssw__wrapper .list__content .c__item {
  width: 100%;
  margin-bottom: 25rem;
}
.ssw__wrapper .list__content .c__item .t__title {
  width: 100%;
  height: 40rem;
  border-radius: 6rem;
  padding: 0 10rem 0 20rem;
  background: #00a0e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ssw__wrapper .list__content .c__item .t__title.open span {
  background: #99d9f6;
}
.ssw__wrapper .list__content .c__item .t__title.open span:after {
  opacity: 0;
}
.ssw__wrapper .list__content .c__item .t__title .t__lbl {
  font-weight: bold;
  font-size: 18rem;
  line-height: 32.4rem;
  text-align: justify;
  color: #fff;
}
.ssw__wrapper .list__content .c__item .t__title span {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: 0.3s;
}
.ssw__wrapper .list__content .c__item .t__title span:before {
  content: "";
  width: 12rem;
  height: 0rem;
  background: #b2e2f8;
  border-top: 2rem solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ssw__wrapper .list__content .c__item .t__title span:after {
  content: "";
  width: 0rem;
  height: 12rem;
  background: transparent;
  border-left: 2rem solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.ssw__wrapper .list__content .c__item .a__box {
  padding: 20rem 0 0 30rem;
  display: none;
}
.ssw__wrapper .list__content .c__item .a__box h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 1.4;
  text-align: justify;
  color: #00A0E9;
}
.ssw__wrapper .list__content .c__item .a__box p {
  font-size: 16rem;
  font-weight: normal;
  text-align: justify;
  line-height: 1.8;
  margin-top: 12rem;
  color: #232323;
}
.ssw__wrapper .list__content .c__item .a__box .list__items {
  width: 100%;
  margin-top: 35rem;
  display: flex;
  justify-content: space-between;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item {
  width: 450rem;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item:last-child .t__lbl {
  background: #ff5a46;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item:last-child ul li span {
  color: #ff5a46;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item .t__lbl {
  width: 100%;
  border-radius: 6rem;
  padding: 5rem 0;
  background: #33b3ed;
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item ul {
  padding: 30rem 15rem 0;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item ul li {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
  padding-left: 20rem;
  text-indent: -17rem;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item ul li span {
  color: #33b3ed;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item ul li p {
  font-size: 14rem;
  margin-top: 1rem;
  padding-left: 5rem;
  text-indent: 0;
}
.ssw__wrapper .list__content .c__item .a__box .list__items .item .n__txt {
  font-size: 14rem;
  margin-top: 5rem;
  padding-left: 16rem;
  text-indent: 0;
}

.interview__wrapper {
  margin-top: 120rem;
}
.interview__wrapper .no__text {
  font-weight: normal;
  font-size: 20rem;
  line-height: 28.8rem;
  margin-top: 50rem;
  text-align: center;
  color: #232323;
}
.interview__wrapper .content__items {
  max-width: 1320rem;
  width: 95%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.interview__wrapper .content__items .c__item {
  width: 25%;
  padding: 0 7rem;
  margin-bottom: 15rem;
}
.interview__wrapper .content__items .c__item .c__inner {
  width: 100%;
  padding: 10rem;
  border-radius: 12rem;
  background: #f5fafa;
  display: block;
}
.interview__wrapper .content__items .c__item .c__inner .c__image {
  width: 100%;
  display: flex;
}
.interview__wrapper .content__items .c__item .c__inner .content__text {
  padding: 30rem 20rem;
}
.interview__wrapper .content__items .c__item .c__inner .content__text h3 {
  font-weight: bold;
  font-size: 22rem;
  line-height: 36.3rem;
  text-align: justify;
  color: #00a0e9;
}
.interview__wrapper .content__items .c__item .c__inner .content__text .company__name {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 25rem;
  text-align: right;
  color: #232323;
}

.pagination {
  margin-top: 60rem;
}
.pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .wp-pagenavi span.current {
  border: 1rem solid #00A0E9;
  border-color: #00a0e9;
  color: #00a0e9;
}
.pagination .wp-pagenavi a, .pagination .wp-pagenavi span {
  width: 40rem;
  height: 40rem;
  margin: 0 10rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size: 14rem;
  line-height: 22.4rem;
  text-align: center;
  color: #232323;
}
.pagination .wp-pagenavi a.nextpostslink, .pagination .wp-pagenavi span.nextpostslink {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: #00a0e9;
  position: relative;
}
.pagination .wp-pagenavi a.nextpostslink:after, .pagination .wp-pagenavi span.nextpostslink:after {
  content: "";
  width: 10rem;
  height: 8rem;
  background: url(../img/arrow_w_right.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pagination .wp-pagenavi a.previouspostslink, .pagination .wp-pagenavi span.previouspostslink {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: #00a0e9;
  position: relative;
}
.pagination .wp-pagenavi a.previouspostslink:after, .pagination .wp-pagenavi span.previouspostslink:after {
  content: "";
  width: 10rem;
  height: 8rem;
  background: url(../img/arrow_w.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul li {
  width: 40rem;
  height: 40rem;
  margin: 0 10rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size: 14rem;
  line-height: 22.4rem;
  text-align: center;
  color: #232323;
}
.pagination ul li.prev {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: #00a0e9;
  position: relative;
}
.pagination ul li.prev:after {
  content: "";
  width: 10rem;
  height: 8rem;
  background: url(../img/arrow_w.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pagination ul li.next {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: #00a0e9;
  position: relative;
}
.pagination ul li.next:after {
  content: "";
  width: 10rem;
  height: 8rem;
  background: url(../img/arrow_w_right.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pagination ul li.current {
  border: 1rem solid #00A0E9;
  border-color: #00a0e9;
  color: #00a0e9;
}

.interivew-detail__wrapper {
  width: 800rem;
  height: auto;
  padding: 25rem;
  border-radius: 30rem;
  background: #f5fafa;
  margin: 120rem auto 0;
}
.interivew-detail__wrapper .main__image {
  width: 100%;
  display: flex;
}
.interivew-detail__wrapper .content__text {
  padding: 30rem 25rem;
}
.interivew-detail__wrapper .content__text h2 {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  text-align: center;
  color: #00a0e9;
}
.interivew-detail__wrapper .content__text .company__name {
  font-weight: 500;
  font-size: 20rem;
  line-height: 36rem;
  margin-top: 25rem;
  text-align: right;
  color: #232323;
}
.interivew-detail__wrapper .content__text .p__line {
  width: 95%;
  margin: 24rem auto 45rem;
}
.interivew-detail__wrapper .content__text .c__text {
  padding: 0 40rem;
}
.interivew-detail__wrapper .content__text .c__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}

.control__btns {
  margin-top: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.control__btns .prev {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: #00a0e9;
  position: relative;
}
.control__btns .prev.disible {
  opacity: 0;
}
.control__btns .prev:after {
  content: "";
  width: 10rem;
  height: 8rem;
  background: url(../img/arrow_w.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.control__btns .list__btn {
  width: 220rem;
  height: 60rem;
  margin: 0 40rem;
  border-radius: 30rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  transition: 0.3s;
  align-items: center;
}
.control__btns .list__btn:hover {
  background: #00a0e9;
}
.control__btns .list__btn:hover span {
  color: white;
}
.control__btns .list__btn span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
  transition: 0.3s;
}
.control__btns .next {
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: #00a0e9;
  position: relative;
}
.control__btns .next.disible {
  opacity: 0;
}
.control__btns .next:after {
  content: "";
  width: 10rem;
  height: 8rem;
  background: url(../img/arrow_w_right.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.voice__wrapper {
  margin-top: 120rem;
}
.voice__wrapper .content__items {
  max-width: 1320rem;
  width: 95%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.voice__wrapper .content__items .c__item {
  width: 25%;
  padding: 0 7rem;
  margin-bottom: 15rem;
}
.voice__wrapper .content__items .c__item .c__inner {
  width: 100%;
  padding: 10rem;
  border-radius: 12rem;
  background: #f5fafa;
  display: block;
}
.voice__wrapper .content__items .c__item .c__inner .c__image {
  width: 100%;
  display: flex;
}
.voice__wrapper .content__items .c__item .c__inner .content__text {
  padding: 20rem;
}
.voice__wrapper .content__items .c__item .c__inner .content__text .cat {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
  padding: 4rem 10rem;
  border-radius: 16rem;
  background: #00a0e9;
  border: 0.49rem solid #96d8f6;
}
.voice__wrapper .content__items .c__item .c__inner .content__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 22rem;
  text-align: justify;
  color: #232323;
}

.news__wrapper {
  width: 800rem;
  margin: auto;
  margin-top: 100rem;
}
.news__wrapper .n__item {
  width: 100%;
  border-radius: 8rem;
  padding: 10rem;
  margin-bottom: 20rem;
  background: #f5fafa;
  display: flex;
  align-items: center;
}
.news__wrapper .n__item .c__image {
  width: 280rem;
  display: flex;
}
.news__wrapper .n__item .content__text {
  width: calc(100% - 280rem);
  padding: 0 25rem;
}
.news__wrapper .n__item .content__text .date {
  font-family: Helvetica-Light;
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.4;
  text-align: justify;
  color: #00a0e9;
}
.news__wrapper .n__item .content__text .c__txt {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  margin-top: 13rem;
  text-align: justify;
  color: #232323;
}
.news__wrapper .n__item .content__text .more__btn {
  margin-top: 14rem;
  display: flex;
  justify-content: right;
  align-items: center;
}
.news__wrapper .n__item .content__text .more__btn .lbl {
  font-weight: 500;
  font-size: 16rem;
  margin-right: 10rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
}
.news__wrapper .n__item .content__text .more__btn .icon {
  width: 6rem;
  display: flex;
}

.news-detail__wrapper {
  width: 800rem;
  height: auto;
  padding: 25rem;
  border-radius: 30rem;
  background: #f5fafa;
  margin: 120rem auto 0;
}
.news-detail__wrapper .main__image {
  width: 100%;
  display: flex;
}
.news-detail__wrapper .content__text {
  padding: 30rem 25rem;
}
.news-detail__wrapper .content__text .date {
  font-family: Helvetica-Bold;
  font-weight: normal;
  font-size: 16rem;
  line-height: 1.5;
  text-align: justify;
  color: #00a0e9;
}
.news-detail__wrapper .content__text h3 {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  margin-top: 12rem;
  text-align: justify;
  color: #232323;
}
.news-detail__wrapper .content__text .p__line {
  width: 95%;
  margin: 24rem auto 45rem;
}
.news-detail__wrapper .content__text .c__text {
  padding: 0 40rem;
}
.news-detail__wrapper .content__text .c__text p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}

.information__wrapper {
  width: 800rem;
  margin: auto;
  margin-top: 120rem;
}
.information__wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.information__wrapper table tr {
  border-top: 1rem solid #96d8f6;
}
.information__wrapper table tr:last-child {
  border-bottom: 1rem solid #96d8f6;
}
.information__wrapper table tr td {
  padding: 55rem 0;
  vertical-align: baseline;
}
.information__wrapper table tr td:first-child {
  width: 270rem;
  padding-left: 150rem;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #00a0e9;
}
.information__wrapper table tr td .c__name {
  font-weight: 500;
  font-size: 20rem;
  line-height: 36rem;
  text-align: justify;
  color: #232323;
}
.information__wrapper table tr td .t__item {
  margin-bottom: 25rem;
  display: flex;
  align-items: center;
}
.information__wrapper table tr td .t__item:last-child {
  margin-bottom: 0;
}
.information__wrapper table tr td .t__item .t__lbl {
  width: 80rem;
  height: 22rem;
  margin-right: 20rem;
  border-radius: 11rem;
  background: #00a0e9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: center;
  color: #fff;
}
.information__wrapper .pdf__links {
  margin-top: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.information__wrapper .pdf__links .pdf__link {
  width: 220rem;
  height: 60rem;
  margin: 0 5rem;
  border-radius: 30rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.information__wrapper .pdf__links .pdf__link .icon {
  width: 19rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 18rem;
  transform: translateY(-50%);
}
.information__wrapper .pdf__links .pdf__link span {
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
}

.faq__wrapper {
  width: 1090rem;
  margin: auto;
  margin-top: 120rem;
}
.faq__wrapper .faq__links {
  display: flex;
  align-items: center;
}
.faq__wrapper .faq__links li {
  width: 240rem;
  height: 46rem;
  margin-right: 6rem;
}
.faq__wrapper .faq__links li:last-child a {
  background: #ffe7dd;
}
.faq__wrapper .faq__links li:last-child a span {
  color: #ff9c90;
}
.faq__wrapper .faq__links li a {
  width: 100%;
  height: 100%;
  background: #f5fafa;
  border-radius: 12rem 12rem 0rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq__wrapper .faq__links li a span {
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
}
.faq__wrapper .faq__content {
  width: 100%;
  height: auto;
  padding: 70rem 55rem;
  border-radius: 0rem 12rem 12rem 12rem;
  background: #f5fafa;
  display: none;
}
.faq__wrapper .faq__content.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}
.faq__wrapper .faq__content#obj02 {
  background: #ffe7dd;
}
.faq__wrapper .faq__content#obj02 .faq__items .f__item .t__title {
  background: #ff5a46;
}
.faq__wrapper .faq__content#obj02 .faq__items .f__item .t__title.open span {
  background: #ffbdb5;
}
.faq__wrapper .faq__content#obj02 .faq__items .f__item .t__title span:after {
  border-color: #ff5a46;
}
.faq__wrapper .faq__content#obj02 .faq__items .f__item .t__title span:before {
  border-color: #ff5a46;
}
.faq__wrapper .faq__content .faq__items .f__item {
  width: 100%;
  margin-bottom: 25rem;
}
.faq__wrapper .faq__content .faq__items .f__item:last-child {
  margin-bottom: 0;
}
.faq__wrapper .faq__content .faq__items .f__item .t__title {
  width: 100%;
  height: auto;
  border-radius: 6rem;
  padding: 5rem 10rem 5rem 20rem;
  background: #00a0e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__wrapper .faq__content .faq__items .f__item .t__title.open span {
  background: #99d9f6;
}
.faq__wrapper .faq__content .faq__items .f__item .t__title.open span:after {
  opacity: 0;
}
.faq__wrapper .faq__content .faq__items .f__item .t__title .t__lbl {
  width: 95%;
  font-weight: bold;
  font-size: 18rem;
  line-height: 1.5;
  text-align: justify;
  color: #fff;
}
.faq__wrapper .faq__content .faq__items .f__item .t__title span {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: 0.3s;
}
.faq__wrapper .faq__content .faq__items .f__item .t__title span:before {
  content: "";
  width: 12rem;
  height: 0rem;
  background: #b2e2f8;
  border-top: 2rem solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq__wrapper .faq__content .faq__items .f__item .t__title span:after {
  content: "";
  width: 0rem;
  height: 12rem;
  background: transparent;
  border-left: 2rem solid #00a0e9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq__wrapper .faq__content .faq__items .f__item .a__box {
  padding: 20rem 0 0 30rem;
  display: none;
}
.faq__wrapper .faq__content .faq__items .f__item .a__box p {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
}

.contact__wrapper {
  margin: 120rem 0;
}
.contact__wrapper .note__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #232323;
}
.contact__wrapper .contact__items {
  margin-top: 55rem;
  display: flex;
  justify-content: center;
}
.contact__wrapper .contact__items .c__item {
  margin: 0 50rem;
}
.contact__wrapper .contact__items .c__item .detail__btn {
  width: 300rem;
  height: 60rem;
  border-radius: 30rem;
}
.contact__wrapper .contact__items .c__item .tel {
  margin-top: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__wrapper .contact__items .c__item .tel .icon {
  width: 36rem;
  display: flex;
  margin-right: 5rem;
}
.contact__wrapper .contact__items .c__item .tel .lbl {
  font-weight: bold;
  font-size: 48rem;
  line-height: 1.4;
  text-align: center;
  color: #232323;
}
.contact__wrapper .contact__items .c__item .w__txt {
  margin-top: 10rem;
  display: flex;
  justify-content: center;
}
.contact__wrapper .contact__items .c__item .w__txt span {
  font-weight: 500;
  margin-right: 5rem;
  color: #00A0E9;
}
.contact__wrapper .contact__items .c__item .fax {
  font-weight: bold;
  font-size: 30rem;
  line-height: 54rem;
  margin-top: 10rem;
  display: block;
  text-align: center;
  color: #232323;
}
.contact__wrapper .contact__items .c__item .fax span {
  color: #00A0E9;
}
.contact__wrapper .contact__items .c__item .n__txt {
  width: 300rem;
  font-weight: normal;
  font-size: 14rem;
  line-height: 25.2rem;
  margin-top: 10rem;
  letter-spacing: -0.05em;
  text-align: justify;
  color: #232323;
}
.contact__wrapper .contact__items .c__item .pdf__items {
  width: 300rem;
  margin-top: 20rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact__wrapper .contact__items .c__item .pdf__items .pdf__link {
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
}
.contact__wrapper .contact__items .c__item .pdf__items .pdf__link .icon {
  width: 20rem;
  margin-right: 5rem;
  display: flex;
}
.contact__wrapper .contact__items .c__item .pdf__items .pdf__link .lbl {
  font-weight: 500;
  font-size: 14rem;
  line-height: 25.2rem;
  text-align: justify;
  color: #505050;
}
.contact__wrapper .contact__form {
  width: 1170rem;
  height: auto;
  margin: auto;
  padding: 100rem;
  margin-top: 90rem;
  border-radius: 12rem;
  background: #f5fafa;
}
.contact__wrapper .contact__form .c__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 42.9rem;
  padding-bottom: 30rem;
  text-align: justify;
  color: #00a0e9;
  border-bottom: 1rem solid #96d8f6;
}
.contact__wrapper .contact__form table tr td {
  padding: 30rem 0;
  vertical-align: top;
  font-weight: 500;
  font-size: 18rem;
  line-height: 36rem;
  text-align: justify;
  color: #000;
}
.contact__wrapper .contact__form table tr td .post__item {
  display: flex;
  align-items: center;
  margin-bottom: 10rem;
}
.contact__wrapper .contact__form table tr td .post__item input[type=text] {
  width: 115rem;
}
.contact__wrapper .contact__form table tr td .post__item .search__btn {
  width: 170rem;
  height: 32rem;
  margin-left: 10rem;
  border-radius: 16rem;
  background: #a1a1a1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}
.contact__wrapper .contact__form table tr td .post__item .search__btn span {
  font-weight: 500;
  font-size: 13.33rem;
  line-height: 24rem;
  text-align: center;
  color: #fff;
}
.contact__wrapper .contact__form table tr td textarea {
  width: 645rem;
  height: 140rem;
  border-radius: 6rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
  padding: 20rem;
}
.contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
  width: 445rem;
  height: 40rem;
  border-radius: 6rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  font-weight: normal;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: justify;
  color: #232323;
  padding-left: 20rem;
}
.contact__wrapper .contact__form table tr td input[type=text].long, .contact__wrapper .contact__form table tr td input[type=email].long {
  width: 645rem;
}
.contact__wrapper .contact__form table tr td input[type=text].short, .contact__wrapper .contact__form table tr td input[type=email].short {
  width: 245rem;
}
.contact__wrapper .contact__form table tr td:first-child {
  padding-right: 25rem;
}
.contact__wrapper .contact__form table tr td:first-child .p__lbl {
  width: 300rem;
  height: 40rem;
  border-radius: 6rem;
  background: #00a0e9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #fff;
}
.contact__wrapper .contact__form table tr td:first-child .p__lbl span {
  font-size: 14rem;
  font-weight: 400;
  margin-left: 5rem;
  color: #ff0;
}
.contact__wrapper .contact__form .submit__btn {
  width: 220rem;
  height: 60rem;
  margin: auto;
  margin-top: 60rem;
  border-radius: 30rem;
  background: #fff;
  border: 1rem solid #96d8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16rem;
  line-height: 28.8rem;
  text-align: center;
  color: #00a0e9;
}

@media screen and (max-width: 1400px) {
  header {
    padding: 0 0rem 0 20rem;
  }
  header ul li {
    padding: 0 7rem;
  }
  .about__wrapper .feature__content .gap {
    width: 23vw;
    right: 0vw;
  }
  header ul li {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1210px) {
  header ul li.contact a {
    width: 190rem;
  }
  header ul li.contact a span {
    font-weight: 500;
    font-size: 14rem;
  }
  header .logo {
    width: 211.91rem;
  }
  .about__wrapper .feature__content .content__items .c__item {
    width: 50%;
  }
}
@media screen and (max-width: 1130px) {
  html {
    font-size: 0.8px;
  }
  .frontview .catchcopy__text {
    width: 58vw;
  }
  .subfrontview .sub__content {
    width: 51vw;
    height: 19vw;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 0.65px;
  }
  header .logo {
    width: 182.91rem;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.27vw;
  }
  header .logo {
    width: 215rem;
  }
  header {
    height: 80rem;
    padding: 0 0rem 0 30rem;
  }
  .frontview {
    width: 330rem;
    margin: auto;
    padding-top: 80rem;
  }
  .frontview .catchcopy__text {
    width: 231rem;
  }
  .well-detail {
    margin-top: 120rem;
  }
  .well-detail .detail__content {
    display: block;
  }
  .well-detail .detail__content .c__image {
    width: 330rem;
    margin: auto;
  }
  .well-detail .detail__content .content__text {
    width: 300rem;
    margin: auto;
    margin-top: 35rem;
  }
  .well-detail .detail__content .content__text h2 {
    font-size: 32rem;
    letter-spacing: -0.08em;
  }
  .detail__btn {
    width: 300rem;
    height: 60rem;
  }
  .well-detail .detail__content .content__text .detail__btn {
    margin: auto;
  }
  .well-detail .service__content {
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 80rem;
    border-radius: 0;
    padding: 35rem;
  }
  .well-detail .service__content .content__inner {
    display: block;
  }
  .well-detail .service__content .content__inner .content__text {
    position: relative;
    padding: 30rem 0;
  }
  .well-detail .service__content .content__inner .content__text p {
    width: 100%;
    text-align: justify;
  }
  .section-belong .content__text p {
    text-align: justify;
  }
  .well-detail .service__content .content__inner .content__text.right-bottom {
    left: auto;
    right: 0;
    top: auto;
  }
  .well-detail .service__content .train__content {
    margin-top: 70rem;
    flex-direction: column-reverse;
  }
  .well-detail .service__content .train__content .c__image {
    width: 100%;
  }
  .well-detail .service__content .train__content .content__text p {
    width: 100%;
  }
  .well-detail .service__content .train__content .content__text {
    margin-top: 30rem;
  }
  .well-detail .well__flow {
    margin-top: 60rem;
  }
  .well-detail .well__flow .content__items {
    width: 300rem;
  }
  .well-detail .well__flow .content__items .c__item {
    width: 100%;
    margin-bottom: 60rem;
    display: block;
  }
  .well-detail .well__flow .content__items .c__item .c__image {
    width: 100%;
  }
  .well-detail .well__flow .content__items .c__item .content__text {
    width: 100%;
    margin-top: 25rem;
  }
  .section-voice {
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 60rem;
    border-radius: 0;
    padding: 60rem 0 30rem;
  }
  .section-voice .voice__slider {
    width: 100%;
    margin-top: 35rem;
    padding-bottom: 70rem;
  }
  .section-voice .voice__slider .swiper-button-next {
    top: 14%;
  }
  .section-voice .voice__slider .swiper-button-prev {
    top: 14%;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12rem;
    height: 12rem;
    margin: 0 6rem;
  }
  .section-belong {
    margin-top: 60rem;
    display: block;
  }
  .section-belong .c__image {
    width: 300rem;
    margin: auto;
  }
  .section-belong .content__text {
    width: 300rem;
    margin: auto;
    padding-top: 25rem;
  }
  .bottom__links {
    margin-top: 60rem;
    display: block;
  }
  .bottom__links .detail__btn {
    width: 300rem;
    height: 100rem;
    margin: 20rem auto;
  }
  .section-contact .content__inner .contact__items {
    display: block;
    margin-top: 15rem;
  }
  .section-contact .content__inner .contact__items .c__btn {
    width: 300rem;
    height: 100rem;
    margin: 20rem auto;
  }
  .section-contact {
    width: 100%;
    margin: auto;
    margin-top: 60rem;
  }
  .section-contact .content__inner {
    top: 60rem;
    transform: translate(-50%);
  }
  footer {
    padding: 75rem 0;
    margin-top: 0;
    border-radius: 0;
  }
  footer .footer__menu {
    display: block;
  }
  footer .footer__menu .f__info .info__txt {
    font-size: 18rem;
  }
  footer .footer__menu .f__menu {
    width: 310rem;
    margin: auto;
    margin-top: 75rem;
    justify-content: space-between;
  }
  footer .footer__menu .f__menu ul {
    margin-right: 0;
  }
  .copyright {
    margin-top: 55rem;
  }
  .sp-menu {
    width: 72rem;
    height: 72rem;
    background: #fff;
    filter: drop-shadow(0px 0px 30px rgba(0, 160, 233, 0.2));
    border-radius: 50%;
    position: absolute;
    top: 20rem;
    right: 20rem;
  }
  .sp-menu.open span:nth-child(1) {
    top: 35rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    top: 35rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu span {
    width: 30rem;
    height: 1rem;
    background: linear-gradient(to right, #00a0e9 0%, #00bfe9 100%);
    position: absolute;
    left: 50%;
    top: 28rem;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 35rem;
  }
  .sp-menu span + span + span {
    top: 42rem;
  }
  header ul {
    width: 100%;
    height: 100vh;
    padding-top: 100rem;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    display: none;
  }
  header ul li {
    padding: 20rem 0;
  }
  header ul li a {
    display: block;
    font-size: 14rem;
    line-height: 25.2rem;
    text-align: center;
  }
  header ul li.contact {
    display: flex;
    justify-content: center;
  }
  header.fixed {
    width: 100%;
    left: 0;
    transform: unset;
  }
  .subfrontview {
    width: 330rem;
    padding-top: 80rem;
    display: block;
  }
  .subfrontview .sub__content {
    width: auto;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 45rem;
  }
  .subfrontview .sub__content .breadcrumb {
    left: 0;
    margin-top: 40rem;
    top: 0;
    position: relative;
  }
  .about__wrapper {
    margin-top: 100rem;
    overflow: hidden;
  }
  .sub-detail__content {
    display: block;
  }
  .sub-detail__content .c__image {
    width: 300rem;
    margin: auto;
  }
  .sub-detail__content .content__text {
    width: 300rem;
    margin: auto;
    margin-top: 35rem;
  }
  .about__wrapper .well__introduce .content__items .c__item p {
    text-align: justify;
  }
  .about__wrapper .feature__content .content__items .c__item .c__txt {
    text-align: justify;
  }
  .sub__line {
    width: 300rem;
    height: 0rem;
    margin: 45rem auto;
  }
  .about__wrapper .feature__content .sub__title {
    width: 300rem;
    margin: auto;
  }
  .about__wrapper .feature__content .sub__title .en__txt {
    text-align: justify;
  }
  .about__wrapper .feature__content .sub__title .ja__txt {
    text-align: justify;
  }
  .about__wrapper .feature__content .content__items {
    width: 320rem;
    margin: auto;
    margin-top: 50rem;
  }
  .about__wrapper .feature__content .content__items .c__item {
    width: 100%;
    padding: 70rem 20rem 30rem;
  }
  .about__wrapper .feature__content .content__items .c__item:last-child {
    margin-bottom: 0;
  }
  .about__wrapper .feature__content .content__items .c__item h3 {
    font-size: 20rem;
    line-height: 30rem;
  }
  .about__wrapper .feature__content .content__items .c__item .t__txt {
    font-size: 20rem;
  }
  .about__wrapper .well__introduce {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50rem 15rem 60rem;
    margin-top: 40rem;
    border-radius: 0;
  }
  .about__wrapper .well__introduce .t__txt {
    font-size: 28rem;
    line-height: 46rem;
    letter-spacing: -0.05em;
  }
  .about__wrapper .well__introduce .t__txt .gap {
    width: 70rem;
    left: -3rem;
    top: -16rem;
  }
  .about__wrapper .well__introduce .content__items .c__item {
    width: 310rem;
    margin: auto;
    margin-top: 50rem;
  }
  .about__wrapper .well__introduce .content__items .c__item p.c01 {
    height: auto;
  }
  .about__wrapper .well__introduce .content__items .c__item .link__btn {
    margin-top: 30rem;
  }
  .about__wrapper .well__introduce .content__items .c__item h3.c01 {
    letter-spacing: -0.1em;
  }
  .sub__links {
    margin-top: 60rem;
    display: block;
  }
  .sub__links .p__link {
    width: 300rem;
    height: 100rem;
    margin: 10rem auto;
  }
  .other__gap .c__lbl {
    font-size: 28rem;
    line-height: 60rem;
  }
  .other__gap .c__lbl span {
    display: block;
    position: relative;
  }
  .other__gap .c__lbl span:first-child:after {
    background: url(../img/sy01.webp);
    background-size: 100% 100%;
    width: 259.09rem;
    height: 10rem;
  }
  .other__gap .c__lbl span:after {
    content: "";
    width: 225.09rem;
    height: 10rem;
    background: url(../img/sy02.webp);
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    bottom: 0rem;
    transform: translate(-50%);
  }
  .other__gap {
    margin-top: 30rem;
  }
  .contact__fixed {
    width: 220rem;
    height: 60rem;
    border-radius: 30rem 0px 0px 0px;
    background: linear-gradient(to right, #00a0e9 0%, #00bfe9 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .contact__fixed span {
    font-weight: 500;
    font-size: 16rem;
    text-align: center;
    color: #fff;
  }
  .sub-detail__content .content__text p {
    text-align: justify;
  }
  .about__wrapper .feature__content .gap {
    width: 260rem;
    right: -116rem;
    top: -20rem;
  }
  .service__wrapper .service__content .content__items {
    width: 320rem;
    margin: auto;
    margin-top: 35rem;
  }
  .service__wrapper .service__content .content__items .c__item {
    width: 100%;
    height: auto;
    padding: 0;
    margin-bottom: 20rem;
  }
  .service__wrapper .service__content .content__items .c__item .c__inner .content__text p {
    text-align: justify;
  }
  .service__wrapper .service__content .content__items .c__item .c__inner .content__text h3 {
    height: auto;
  }
  .sub-detail__content .content__text h3.c01 {
    font-size: 26rem;
    line-height: 40.2rem;
    letter-spacing: -0.05em;
  }
  .difference__wrapper .difference__content .content__inner {
    background: #f5fafa;
    padding: 60px 0;
    margin-top: 60px;
  }
  .difference__wrapper .difference__content .content__detail {
    width: 100%;
    margin: auto;
    margin-top: 35rem;
    display: block;
  }
  .difference__wrapper .difference__content .content__detail .content__text {
    width: 100%;
    padding: 0 35rem;
    background: transparent;
  }
  .difference__wrapper .difference__content .content__detail .content__text h3 {
    font-size: 21rem;
    line-height: 33rem;
  }
  .difference__wrapper .difference__content .content__detail .content__text p {
    text-align: justify;
  }
  .difference__wrapper .difference__content .content__detail .c__image {
    width: 350rem;
    margin: auto;
    margin-top: 25rem;
  }
  .difference__wrapper .difference__content .content__table {
    width: 355rem;
    height: auto;
    margin: 0 0 0 auto;
    margin-top: 40rem;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .difference__wrapper .difference__content .content__table .t__lbl {
    font-size: 20rem;
    line-height: 33rem;
    padding-left: 20rem;
  }
  .difference__wrapper .difference__content .content__table table {
    width: 100%;
    margin-top: 15rem;
  }
  .difference__wrapper .difference__content .content__table .table__inner {
    width: 100%;
    overflow: auto;
  }
  .difference__wrapper .difference__content .content__table table tr td .c__lbl {
    width: 117rem;
    height: auto;
    padding: 3rem 0;
    font-size: 14rem;
    line-height: 20rem;
  }
  .difference__wrapper .difference__content .content__member {
    width: 300rem;
    height: auto;
    margin: auto;
    margin-top: 30rem;
    padding: 55rem 0 20rem;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid #96d8f6;
  }
  .difference__wrapper .difference__content .content__member .dt__content {
    width: 100%;
    display: block;
  }
  .difference__wrapper .difference__content .content__member .dt__content .content__text .t__txt {
    font-size: 20rem;
    line-height: 35rem;
  }
  .difference__wrapper .difference__content .content__member .dt__content .content__text .c__txt {
    text-align: justify;
  }
  .difference__wrapper .difference__content .content__member .dt__content .c__image {
    width: 100%;
    margin-top: 20rem;
  }
  .difference__wrapper .difference__content .content__member .note__txt {
    text-align: justify;
  }
  .c__links {
    margin-top: 25rem;
    display: block;
  }
  .c__links .link {
    width: 300rem;
    height: 100rem;
    margin: 10rem auto;
  }
  .difference__wrapper .difference__content .content__term {
    width: 300rem;
    height: auto;
    margin: auto;
    padding: 55rem 0 10rem;
    margin-top: 40rem;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid #96d8f6;
  }
  .difference__wrapper .difference__content .content__term .c__lbl {
    font-size: 20rem;
    line-height: 33rem;
  }
  .difference__wrapper .difference__content .content__term .term__detail {
    width: 100%;
    margin-top: 20rem;
    flex-direction: column-reverse;
  }
  .difference__wrapper .difference__content .content__term .term__detail .c__text {
    width: 100%;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28.8rem;
    text-align: justify;
  }
  .difference__wrapper .difference__content .content__term .term__detail .cp__image {
    width: 350rem;
    margin-top: 25rem;
  }
  .difference__wrapper .difference__content .content__term .term__detail .cp__image .cap__txt {
    padding: 0 25rem;
    text-align: justify;
    margin-top: 32rem;
  }
  .difference__wrapper .difference__content .note__detail {
    width: 300rem;
    margin: auto;
    margin-top: 45rem;
    display: block;
  }
  .difference__wrapper .difference__content .note__detail .n__item {
    width: 100%;
    padding: 0 0 30rem 0;
    border-right: 0;
    border-bottom: 1rem dashed #a7a7a7;
  }
  .difference__wrapper .difference__content .note__detail .n__item:last-child {
    padding: 30rem 0 0 0;
    border-right: 0;
    border-bottom: 0;
  }
  .difference__wrapper .difference__content .case__detail {
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 50rem;
    padding: 50rem 0;
    border-radius: 0;
    background: #fff;
    border: 0;
    border-top: 1rem solid #80cff4;
  }
  .difference__wrapper .difference__content .case__detail .cd__items {
    margin-top: 35rem;
    display: block;
  }
  .difference__wrapper .difference__content .case__detail .cd__items .c__item {
    width: 300rem;
    margin: auto;
    margin-bottom: 40rem;
  }
  .difference__wrapper .difference__content .case__detail .cd__items .c__item:last-child {
    margin-bottom: 0;
  }
  .difference__wrapper .difference__content .detail__text {
    width: 100%;
    margin: auto;
    margin-top: 0;
    padding-top: 35rem;
    border-top: 1rem solid #80cff4;
  }
  .difference__wrapper .difference__content .detail__text p {
    padding: 0 35rem;
    font-size: 16rem;
    line-height: 28.8rem;
    text-align: justify;
  }
  .difference__wrapper .difference__content .content__table table tr td:first-child {
    width: 144rem;
  }
  .difference__wrapper .difference__content .content__table table tr td {
    padding: 20rem 10rem;
    font-weight: 500;
    font-size: 14rem;
  }
  .sub-detail__content .content__text .w__man {
    width: 140rem;
    right: -36rem;
    top: 9rem;
  }
  .flow__wrapper .flow__content {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50rem 35rem;
    margin-top: 60rem;
    border-radius: 0;
  }
  .flow__wrapper .flow__content table tr {
    display: grid;
  }
  .flow__wrapper .flow__content table tr td .step {
    width: 100%;
    margin-top: 20rem;
  }
  .flow__wrapper .flow__content table tr td {
    padding: 12rem 0;
    text-align: justify;
  }
  .flow__wrapper .flow__content table tr td p {
    margin-bottom: 10rem;
  }
  .flow__wrapper .flow__content table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .flow__wrapper .flow__content table tr td h3 {
    font-size: 22rem;
    line-height: 32rem;
    margin-top: 10rem;
    margin-bottom: 30rem;
  }
  .training__wrapper .program__content .program__gap {
    width: 175rem;
    top: -113rem;
    right: -40rem;
  }
  .training__wrapper .program__content .content__items {
    width: 320rem;
  }
  .training__wrapper .program__content .content__items .c__item {
    width: 100%;
    height: auto;
    margin-top: 35rem;
    padding: 35rem 0;
  }
  .training__wrapper .program__content .content__items .c__item h3 {
    font-size: 20rem;
    line-height: 33rem;
  }
  .training__wrapper .program__content .content__items .c__item .p__line {
    width: 260rem;
    margin: 30rem auto;
  }
  .training__wrapper .program__content .content__items .c__item .c__image {
    width: 260rem;
    margin: auto;
  }
  .training__wrapper .program__content .content__items .c__item p {
    width: 260rem;
    margin: auto;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28.8rem;
    margin-top: 25rem;
    text-align: justify;
  }
  .training__wrapper .program__content .content__items .c__item .p__link {
    width: 260rem;
    height: 60rem;
  }
  .training__wrapper .program__content .content__items .c__item .p__link .icon {
    width: 12rem;
    right: 20rem;
  }
  .ssw__wrapper .ssw__txt {
    width: 300rem;
    margin: auto;
    margin-bottom: 40rem;
    text-align: justify;
  }
  .ssw__wrapper {
    margin-top: 80rem;
  }
  .sub-detail__content .content__text .p__links {
    margin-top: 20rem;
    display: block;
  }
  .sub-detail__content .content__text .p__links .p__link {
    width: 300rem;
    height: 60rem;
    margin-right: 0;
    margin-bottom: 10rem;
  }
  .ssw__wrapper .merits__content {
    margin-top: 60rem;
    padding: 70rem 0 10rem;
    margin-bottom: 0;
  }
  .ssw__wrapper .merits__content .content__items .gap {
    width: 345rem;
    margin: auto;
    margin-bottom: 20rem;
    position: relative;
    right: 0;
    top: 0;
  }
  .ssw__wrapper .merits__content .content__items {
    width: 100%;
    margin: auto;
    margin-top: 12rem;
    display: block;
  }
  .ssw__wrapper .merits__content .content__items .c__item {
    width: 320rem;
    height: auto;
    margin: auto;
    margin-bottom: 20rem;
  }
  .ssw__wrapper .merits__content .content__items .c__item .content__text p {
    text-align: justify;
  }
  .ssw__wrapper .bg__inner {
    background: #f5fafa;
    padding: 1rem 0 40rem;
  }
  .difference__wrapper .difference__content .content__table .n__txt {
    width: 300rem;
    margin: auto;
    font-weight: normal;
    text-align: justify;
    margin-top: 13rem;
  }
  .ssw__wrapper .start__flow {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50rem 0 0 35rem;
    margin-top: 0;
    border-radius: 0;
    background: transparent;
  }
  .ssw__wrapper .start__flow .c__image {
    overflow: auto;
  }
  .ssw__wrapper .start__flow .c__image img {
    width: 700rem;
  }
  .ssw__wrapper .accept__step {
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 0;
    padding: 50rem 35rem 0;
    background: transparent;
  }
  .ssw__wrapper .accept__step .n__txt {
    text-align: justify;
  }
  .ssw__wrapper .accept__step .step__items {
    width: 100%;
    margin-top: 30rem;
  }
  .ssw__wrapper .accept__step .step__items .s__item .t__title .t__lbl {
    font-size: 16rem;
    letter-spacing: -0.05em;
  }
  .ssw__wrapper .accept__step .step__items .s__item .t__title {
    padding: 0 10rem 0 10rem;
  }
  .ssw__wrapper .accept__step .step__items .s__item {
    margin-bottom: 20rem;
  }
  .ssw__wrapper .accept__step .contact__part {
    display: block;
  }
  .ssw__wrapper .accept__step .contact__part .c__txt {
    width: 100%;
    font-weight: normal;
    font-size: 16rem;
    line-height: 28.8rem;
    text-align: justify;
  }
  .ssw__wrapper .accept__step .contact__part .detail__btn {
    margin-top: 30rem;
  }
  .ssw__wrapper .want__list {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50rem 35rem 10rem;
    margin-top: 0;
    border-radius: 0;
    background: transparent;
  }
  .ssw__wrapper .want__list .c__txt {
    text-align: justify;
  }
  .ssw__wrapper .want__list .table__inner .c__image {
    width: 335rem;
    overflow: auto;
  }
  .ssw__wrapper .want__list .table__inner .c__image img {
    width: 700rem;
  }
  .ssw__wrapper .want__list .contact__part {
    margin-top: 50rem;
    display: block;
  }
  .ssw__wrapper .want__list .contact__part .c__txt {
    width: 100%;
    margin-bottom: 30rem;
  }
  .ssw__wrapper .list__content {
    width: 300rem;
    margin: auto;
    margin-top: 60rem;
  }
  .ssw__wrapper .list__content .c__item .t__title .t__lbl {
    font-size: 15rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
  .ssw__wrapper .list__content .c__item .t__title {
    padding: 0 10rem 0 9rem;
  }
  .ssw__wrapper .list__content .c__item {
    width: 100%;
    margin-bottom: 10rem;
  }
  .ssw__wrapper .list__content .c__item .a__box h3 {
    font-size: 20rem;
  }
  .ssw__wrapper .list__content .c__item .a__box {
    padding: 16rem 0 0 19rem;
  }
  .ssw__wrapper .list__content .c__item .a__box .list__items {
    width: 100%;
    margin-top: 35rem;
    display: block;
  }
  .ssw__wrapper .list__content .c__item .a__box .list__items .item {
    width: 280rem;
    margin-bottom: 30rem;
  }
  .ssw__wrapper .list__content .c__item .a__box .list__items .item ul {
    padding: 21rem 15rem 0 0;
  }
  .bg__inner .p__line {
    width: 300rem;
    margin: auto;
    margin-top: 40rem;
    border-top: 1rem solid #96D8F6;
  }
  .interview__wrapper .content__items {
    width: 320rem;
  }
  .interview__wrapper {
    margin-top: 80rem;
  }
  .interview__wrapper .content__items .c__item {
    width: 100%;
    padding: 0;
  }
  .interivew-detail__wrapper {
    width: 320rem;
    height: auto;
    padding: 10rem;
    border-radius: 30rem;
    margin: 85rem auto 0;
  }
  .interivew-detail__wrapper .content__text h2 {
    text-align: justify;
  }
  .interivew-detail__wrapper .content__text .company__name {
    font-size: 16rem;
    line-height: 1.4;
    margin-top: 15rem;
  }
  .interivew-detail__wrapper .content__text .p__line {
    width: 100%;
    margin: 24rem auto;
  }
  .interivew-detail__wrapper .content__text .c__text {
    padding: 0;
  }
  .interivew-detail__wrapper .content__text .c__text p {
    text-align: justify;
  }
  .control__btns {
    margin-top: 40rem;
  }
  .control__btns .list__btn {
    width: 180rem;
    height: 60rem;
    margin: 0 15rem;
  }
  .voice__wrapper {
    margin-top: 80rem;
  }
  .voice__wrapper .content__items {
    width: 320rem;
  }
  .voice__wrapper .content__items .c__item {
    width: 100%;
    padding: 0;
  }
  .pagination ul li {
    margin: 0 3rem;
  }
  .news__wrapper {
    width: 320rem;
    margin: auto;
    margin-top: 80rem;
  }
  .news__wrapper .n__item {
    border-radius: 12rem;
    display: block;
  }
  .news__wrapper .n__item .c__image {
    width: 100%;
  }
  .news__wrapper .n__item .content__text {
    width: 100%;
    padding: 20rem;
  }
  .news-detail__wrapper {
    width: 320rem;
    height: auto;
    padding: 10rem;
    border-radius: 12rem;
    margin: 80rem auto 0;
  }
  .news-detail__wrapper .content__text h3 {
    font-size: 22rem;
    line-height: 36rem;
  }
  .news-detail__wrapper .content__text .p__line {
    width: 100%;
    margin: 24rem auto;
  }
  .news-detail__wrapper .content__text .c__text {
    padding: 0;
  }
  .information__wrapper {
    width: 300rem;
    margin: auto;
    margin-top: 80rem;
  }
  .information__wrapper table tr td:first-child {
    width: 90rem;
    padding-left: 0;
  }
  .information__wrapper table tr td {
    padding: 35rem 0;
  }
  .information__wrapper table tr td .t__item .txt {
    font-size: 16rem;
    line-height: 23rem;
    letter-spacing: -0.05em;
    color: #232323;
  }
  .information__wrapper table tr td .t__item .t__lbl {
    margin-right: 6rem;
  }
  .information__wrapper table tr td .t__item {
    align-items: baseline;
  }
  .information__wrapper .pdf__links {
    margin-top: 40rem;
    display: block;
  }
  .information__wrapper .pdf__links .pdf__link {
    width: 100%;
    height: 60rem;
    margin: 10rem auto;
  }
  .information__wrapper .pdf__links .pdf__link .icon {
    right: 28rem;
  }
  .faq__wrapper {
    width: 320rem;
    margin: auto;
    margin-top: 80rem;
  }
  .faq__wrapper .faq__links li {
    width: 140rem;
    height: 56rem;
  }
  .faq__wrapper .faq__links li a span {
    font-size: 16rem;
    line-height: 20rem;
  }
  .faq__wrapper .faq__content {
    padding: 30rem;
  }
  .faq__wrapper .faq__content .faq__items .f__item .t__title .t__lbl {
    width: 87%;
    font-size: 16rem;
    line-height: 28rem;
  }
  .faq__wrapper .faq__content .faq__items .f__item {
    width: 100%;
    margin-bottom: 20rem;
  }
  .faq__wrapper .faq__content .faq__items .f__item .a__box {
    padding: 15rem 0 10rem 18rem;
  }
  .contact__wrapper {
    margin: 100rem 0 50rem;
  }
  .contact__wrapper .note__txt {
    width: 300rem;
    margin: auto;
    font-size: 16rem;
    line-height: 28.8rem;
    text-align: justify;
  }
  .contact__wrapper .contact__items {
    margin-top: 30rem;
    display: block;
  }
  .contact__wrapper .contact__items .c__item {
    margin: 40rem auto;
  }
  .contact__wrapper .contact__items .c__item .detail__btn {
    width: 300rem;
    height: 60rem;
    margin: auto;
  }
  .contact__wrapper .contact__items .c__item .w__txt {
    font-size: 16rem;
    line-height: 22rem;
    margin-top: 10rem;
  }
  .contact__wrapper .contact__items .c__item .n__txt {
    margin: auto;
    margin-top: 10rem;
  }
  .contact__wrapper .contact__items .c__item .pdf__items {
    width: 300rem;
    margin: auto;
    margin-top: 12rem;
  }
  .contact__wrapper .contact__form {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 40rem 35rem;
    margin-top: 90rem;
    border-radius: 0;
  }
  .contact__wrapper .contact__form table tr {
    display: grid;
  }
  .contact__wrapper .contact__form table tr td input[type=text], .contact__wrapper .contact__form table tr td input[type=email] {
    width: 100%;
    padding-left: 15rem;
  }
  .contact__wrapper .contact__form table tr td textarea {
    width: 100%;
    padding: 16rem;
  }
  .contact__wrapper .contact__form table tr td {
    padding: 20rem 0;
  }
  .contact__wrapper .contact__form table tr td:last-child {
    padding-top: 10rem;
  }
  .contact__wrapper .contact__form table tr td:first-child {
    padding-right: 0;
    padding-bottom: 0;
  }
  .contact__wrapper .contact__form table tr td input[type=text].long, .contact__wrapper .contact__form table tr td input[type=email].long {
    width: 100%;
  }
  .contact__wrapper .contact__form .submit__btn {
    width: 100%;
    height: 60rem;
    margin: auto;
    margin-top: 20rem;
  }
  .contact__wrapper .contact__form table tr td input[type=text].short, .contact__wrapper .contact__form table tr td input[type=email].short {
    width: 100%;
  }
  .contact__wrapper .contact__form table {
    margin-top: 20rem;
  }
}/*# sourceMappingURL=style.css.map */