@charset "UTF-8";
@font-face {
  font-family: Brown-Regular;
  src: url(../font/coper.ttf) format("truetype");
}
@font-face {
  font-family: FuturaPT-Demi;
  src: url(../font/FuturaCyrillicMedium.ttf) format("truetype");
}
@font-face {
  font-family: FuturaPT-Heavy;
  src: url(../font/FuturaCyrillicHeavy.ttf) format("truetype");
}
@font-face {
  font-family: CenturyGothic-Bold;
  src: url(../font/Century_Gothic_Bold.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", 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;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

* {
  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(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.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;
  }
}
html {
  font-size: 0.5px;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 50rem;
  z-index: 3;
}
header .logo__lbl {
  font-size: 40rem;
  padding: 6rem 20rem;
  font-family: FuturaPT-Demi;
  font-weight: normal;
  color: white;
  border: 5rem solid #fff;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}
header.fixed {
  position: fixed;
  background: #054b5b;
}
header.fixed .logo__lbl {
  opacity: 1;
}
header ul {
  display: flex;
  align-items: center;
}
header ul li {
  padding: 0 25rem;
}
header ul li:last-child {
  padding-right: 0;
}
header ul li:last-child a {
  width: 166rem;
  display: flex;
}
header ul li:last-child a:after {
  content: unset;
}
header ul li a {
  font-weight: normal;
  font-size: 30.41rem;
  line-height: 43.65rem;
  text-align: left;
  color: #fff;
  position: relative;
}
header ul li a:hover:after {
  width: 100%;
}
header ul li a:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5rem solid #fff;
  position: absolute;
  left: 0;
  bottom: -30rem;
  transition: 0.3s;
}

.frontview {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}
.frontview .catchopy__text {
  font-family: FuturaPT-Demi;
  font-weight: normal;
  font-size: 80.09rem;
  line-height: 140.15rem;
  padding: 4rem 32rem;
  text-align: left;
  color: #fff;
  border: 8.33rem solid #fff;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.detail__content {
  width: 100%;
  display: flex;
  position: relative;
}
.detail__content .content__text {
  position: absolute;
  top: 50%;
  left: 100rem;
  transform: translateY(-50%);
}
.detail__content .content__text h3 {
  font-weight: normal;
  font-size: 66.84rem;
  line-height: 115.2rem;
  text-align: left;
  color: #fff;
}
.detail__content .content__text p {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 55.3rem;
  margin-top: 55rem;
  text-align: left;
  color: #fff;
}

.job__content {
  margin-top: 300rem;
}
.job__content .j__item {
  margin-bottom: 170rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.job__content .j__item:last-child {
  margin-bottom: 0;
  flex-direction: row-reverse;
}
.job__content .j__item:last-child .content__text {
  padding-left: 100rem;
}
.job__content .j__item .c__image {
  width: 50%;
  display: flex;
  position: relative;
}
.job__content .j__item .c__image .num {
  font-family: CenturyGothic-Bold;
  font-weight: normal;
  font-size: 124.61rem;
  line-height: 1;
  text-align: left;
  color: #000;
  position: absolute;
  left: 20rem;
  top: 20rem;
}
.job__content .j__item .content__text {
  width: 50%;
  padding: 0 150rem 0 100rem;
}
.job__content .j__item .content__text .e__txt {
  font-family: CenturyGothic-Bold;
  font-weight: normal;
  font-size: 76.8rem;
  line-height: 133.76rem;
  text-align: left;
  color: #3e3e3e;
}
.job__content .j__item .content__text .j__txt {
  font-weight: 600;
  font-size: 42.98rem;
  line-height: 71.64rem;
  text-align: left;
  color: #3e3e3e;
}
.job__content .j__item .content__text .c__txt {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 46.08rem;
  margin-top: 78rem;
  text-align: left;
  color: #3e3e3e;
}

.title__wrapper.--white .en__txt {
  color: white;
}
.title__wrapper.--white .ja__txt {
  color: white;
}
.title__wrapper .en__txt {
  font-family: FuturaPT-Demi;
  font-weight: normal;
  font-size: 67.88rem;
  line-height: 1.4;
  text-align: center;
  color: #054b5b;
}
.title__wrapper .ja__txt {
  font-weight: 600;
  font-size: 30.88rem;
  line-height: 55rem;
  text-align: center;
  color: #054b5b;
}

.works__content {
  padding-top: 400rem;
}
.works__content .works__items {
  max-width: 1500rem;
  width: 95%;
  margin: auto;
  margin-top: 110rem;
  display: flex;
  flex-wrap: wrap;
}
.works__content .works__items .w__item {
  width: 33.3333333333%;
  padding: 0 50rem;
  margin-bottom: 100rem;
}
.works__content .works__items .w__item .item__inner {
  width: 100%;
  cursor: pointer;
}
.works__content .works__items .w__item .item__inner .c__image {
  width: 100%;
  height: 600rem;
  position: relative;
}
.works__content .works__items .w__item .item__inner .c__image .pule__btn {
  width: 60rem;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.works__content .works__items .w__item .item__inner .c__text {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 55.3rem;
  margin-top: 30rem;
  text-align: left;
  color: #010101;
}

.process__content {
  padding: 120rem 0;
  background: #eee;
}
.process__content .content__items {
  width: 1420rem;
  margin: auto;
  margin-top: 114rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.process__content .content__items .c__item {
  width: 300rem;
  margin-bottom: 35rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.process__content .content__items .c__item:nth-child(4n) .c__icon:after {
  content: unset;
}
.process__content .content__items .c__item .num {
  font-family: FuturaPT-Heavy;
  font-weight: normal;
  font-size: 106.44rem;
  line-height: 1;
  text-align: left;
  color: #707070;
}
.process__content .content__items .c__item .c__icon {
  width: 100%;
  margin: 15rem 0;
  display: flex;
  position: relative;
}
.process__content .content__items .c__item .c__icon:after {
  content: "";
  width: 80rem;
  height: 0;
  background: transparent;
  border-top: 9.22rem solid #000;
  position: absolute;
  right: -75rem;
  top: 50%;
  transform: translateY(-50%);
}
.process__content .content__items .c__item .c__lbl {
  font-weight: 600;
  font-size: 34rem;
  line-height: 64rem;
  text-align: center;
  color: #000;
}

.voice__content {
  padding: 110rem 0;
  background: #7ca9ad;
}
.voice__content .content__items {
  max-width: 1700rem;
  width: 95%;
  margin: auto;
  margin-top: 90rem;
}
.voice__content .content__items .c__item {
  width: 100%;
  height: auto;
  margin-bottom: 55rem;
  padding: 80rem;
  border-radius: 28.42rem;
  background: #f9f9f9;
  display: flex;
  align-items: flex-start;
}
.voice__content .content__items .c__item .c__icon {
  width: 290rem;
  margin-right: 150rem;
  display: flex;
}
.voice__content .content__items .c__item .content__text p {
  font-weight: 600;
  font-size: 28rem;
  line-height: 55.3rem;
  text-align: left;
  color: #000;
}
.voice__content .content__items .c__item .content__text p span {
  font-size: 46rem;
}

.company__content {
  padding: 130rem 0;
  background: #eee;
}
.company__content .content__text {
  max-width: 1660rem;
  width: 95%;
  margin: auto;
  margin-top: 160rem;
}
.company__content .content__text table {
  width: 100%;
  border-collapse: collapse;
}
.company__content .content__text table tr {
  border-top: 1rem solid #a1a1a1;
}
.company__content .content__text table tr td {
  font-weight: normal;
  font-size: 27.63rem;
  line-height: 55.26rem;
  padding: 40rem 0;
  text-align: left;
  color: #000;
}
.company__content .content__text table tr td .c__logo {
  width: 370rem;
  display: flex;
}
.company__content .content__text table tr td:first-child {
  font-weight: 600;
  width: 520rem;
  padding-left: 60rem;
  vertical-align: top;
}

.main__slider {
  height: 800rem;
}
.main__slider .item {
  height: auto;
}

.thumnail__slider {
  margin-top: 20rem;
}
.thumnail__slider .item {
  height: auto;
}

.faq__content {
  padding: 140rem 0;
}
.faq__content .faq__items {
  max-width: 1730rem;
  width: 95%;
  margin: auto;
  margin-top: 125rem;
}
.faq__content .faq__items .f__item {
  width: 100%;
  height: auto;
  margin-bottom: 60rem;
  padding: 45rem 65rem;
  border-radius: 28.42rem;
  background: #f9f9f9;
}
.faq__content .faq__items .f__item .q__title {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.faq__content .faq__items .f__item .q__title.open:after {
  opacity: 0;
}
.faq__content .faq__items .f__item .q__title:before {
  content: "";
  width: 52rem;
  height: 5rem;
  background: #054b5b;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq__content .faq__items .f__item .q__title:after {
  content: "";
  height: 52rem;
  width: 5rem;
  background: #054b5b;
  position: absolute;
  right: 24rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.faq__content .faq__items .f__item .q__title .q__lbl {
  font-family: CenturyGothic-Bold;
  font-weight: normal;
  font-size: 108.69rem;
  margin-right: 72rem;
  line-height: 1.5;
  text-align: left;
  color: #054b5b;
}
.faq__content .faq__items .f__item .q__title .q__txt {
  font-weight: 600;
  font-size: 40.71rem;
  line-height: 72.5rem;
  text-align: left;
  color: #054b5b;
}
.faq__content .faq__items .f__item .a__box {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 55.3rem;
  padding-top: 45rem;
  text-align: left;
  color: #000;
  border-top: 4.88rem solid #aed5e1;
  display: none;
}

.contact__content {
  max-width: 1620rem;
  width: 95%;
  margin: auto;
  padding: 220rem 0;
}
.contact__content .d__txt {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 46.08rem;
  margin-top: 80rem;
  text-align: left;
  color: #000;
}
.contact__content .contact__form {
  width: 100%;
  margin-top: 180rem;
  text-align: center;
}
.contact__content .contact__form table {
  width: 100%;
  border-collapse: collapse;
}
.contact__content .contact__form table tr:last-child td:first-child {
  vertical-align: top;
}
.contact__content .contact__form table tr td {
  padding: 50rem 0;
}
.contact__content .contact__form table tr td input[type=text], .contact__content .contact__form table tr td input[type=email] {
  width: 1030.43rem;
  height: 79.75rem;
  background: #f1efef;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  padding-left: 35rem;
  text-align: left;
  color: #000;
  border: 0;
}
.contact__content .contact__form table tr td textarea {
  width: 1030.67rem;
  height: 448.5rem;
  background: #f1efef;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  padding: 35rem;
  text-align: left;
  color: #000;
  border: 0;
}
.contact__content .contact__form table tr td:first-child {
  width: 550rem;
  font-weight: normal;
  font-size: 27.06rem;
  line-height: 47.36rem;
  text-align: left;
  color: #000;
}
.contact__content .contact__form table tr td:first-child .required {
  font-weight: 600;
  font-size: 20.3rem;
  padding: 6rem 20rem;
  margin-left: 30rem;
  line-height: 35.52rem;
  text-align: left;
  color: #fff;
  border-radius: 19.2rem;
  background: #e64c3d;
}
.contact__content .contact__form .submit__btn {
  width: 745.58rem;
  height: 157.1rem;
  margin: auto;
  margin-top: 180rem;
  border-radius: 78.55rem;
  background: #054b5b;
  font-weight: normal;
  font-size: 30rem;
  line-height: 65.15rem;
  text-align: center;
  color: #fff;
  border: 0;
}

footer {
  padding: 140rem 0 200rem;
  background: #054b5b;
}
footer .info__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .info__content .c__lbl {
  font-family: FuturaPT-Demi;
  font-weight: normal;
  font-size: 55.3rem;
  line-height: 1.4;
  padding: 10rem 22rem;
  margin-right: 145rem;
  text-align: left;
  color: #fff;
  border: 8.33rem solid #fff;
}
footer .info__content .address__txt {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 46.08rem;
  text-align: left;
  color: #fff;
}
footer ul {
  margin-top: 55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer ul li {
  padding: 0 20rem;
}
footer ul li a {
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 46.08rem;
  text-align: left;
  color: #fff;
}
footer .copyright {
  font-family: CenturyGothic-Bold;
  font-weight: normal;
  font-size: 27.65rem;
  line-height: 50.71rem;
  margin-top: 30rem;
  text-align: center;
  color: #fff;
}

.fixed__btns {
  width: 100%;
  height: 180rem;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
}
.fixed__btns .f__btn {
  width: 50%;
  background: #0985a1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed__btns .f__btn:last-child {
  background: #06c755;
}
.fixed__btns .f__btn:last-child span {
  width: 440rem;
}
.fixed__btns .f__btn span {
  width: 650rem;
}

.modal__wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  display: none;
}
.modal__wrapper.visible {
  display: block;
  animation: fadeIn 0.5s forwards;
}
.modal__wrapper .overlay {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 0;
}
.modal__wrapper .slider__inner {
  width: 600rem;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal__wrapper .slider__inner .close__btn {
  font-size: 50rem;
  position: absolute;
  top: -50rem;
  right: -50rem;
  color: white;
  cursor: pointer;
}
.modal__wrapper .slider__inner .p__slider {
  width: 100%;
  height: 100%;
}
.modal__wrapper .slider__inner .p__slider .slick-list {
  height: 100%;
}
.modal__wrapper .slider__inner .p__slider .slick-list .slick-track {
  height: 100%;
}
.modal__wrapper .slider__inner .p__slider .c__item {
  height: 100%;
  background: #ddd;
}
.modal__wrapper .slider__inner .p__slider .c__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.thanks__wrapper {
  margin: 600rem 0;
}
.thanks__wrapper p {
  font-size: 50rem;
  text-align: center;
}

@media screen and (max-width: 1250px) {
  html {
    font-size: 0.5px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.13333333vw;
  }
  .sp-menu {
    width: 70rem;
    height: 70rem;
    background: #054b5b;
    position: relative;
    opacity: 0;
    transition: 0.3s;
  }
  .sp-menu.open span:nth-child(1) {
    top: 33rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    top: 33rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu span {
    width: 70%;
    height: 0;
    border-top: 3rem solid #fff;
    position: absolute;
    top: 18rem;
    left: 50%;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 33rem;
  }
  .sp-menu span + span + span {
    top: 50rem;
  }
  .frontview .catchopy__text {
    width: 70%;
    font-size: 71.09rem;
    line-height: 110.15rem;
  }
  .detail__content {
    width: 100%;
    height: 850rem;
    background: #054b5b;
    background-image: url(../img/detail_bg.webp);
    background-size: 70%;
    background-position-x: right;
    background-repeat: no-repeat;
  }
  .detail__content .content__text {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .detail__content .content__text h3 {
    font-weight: normal;
    font-size: 53rem;
    line-height: 1.6;
  }
  .job__content {
    width: 90%;
    margin: auto;
    margin-top: 150rem;
  }
  .job__content .j__item {
    margin-bottom: 170rem;
    display: block;
  }
  .job__content .j__item .c__image {
    width: 100%;
  }
  .job__content .j__item .content__text {
    width: 100%;
    padding: 50rem 0 0;
  }
  .job__content .j__item:last-child .content__text {
    padding-left: 0;
  }
  .works__content {
    padding-top: 320rem;
  }
  .works__content .works__items .w__item {
    width: 100%;
  }
  .process__content .content__items {
    width: 90%;
  }
  .process__content .content__items .c__item:nth-child(2n) .c__icon:after {
    content: unset;
  }
  .voice__content .content__items .c__item {
    display: block;
    padding: 80rem 40rem;
  }
  .voice__content .content__items .c__item .content__text {
    margin-top: 30rem;
  }
  .voice__content .content__items .c__item .c__icon {
    width: 32%;
    margin: auto;
  }
  .voice__content .content__items .c__item .content__text p span {
    font-size: 40rem;
  }
  .company__content .content__text table tr {
    display: grid;
  }
  .company__content .content__text table tr td:first-child {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
  .company__content .content__text {
    width: 85%;
  }
  .company__content .content__text table tr td:last-child {
    padding-top: 20rem;
  }
  .faq__content .faq__items .f__item {
    margin-bottom: 60rem;
    padding: 25rem 35rem;
  }
  .faq__content .faq__items .f__item .q__title .q__lbl {
    font-size: 55rem;
    margin-right: 32rem;
  }
  .faq__content .faq__items .f__item .q__title .q__txt {
    width: 72%;
    line-height: 1.7;
    font-size: 30.71rem;
  }
  .faq__content .faq__items .f__item .q__title:before {
    content: "";
    width: 40rem;
    height: 3rem;
  }
  .faq__content .faq__items .f__item .q__title:after {
    content: "";
    height: 40rem;
    width: 3rem;
    right: 19rem;
  }
  .contact__content .contact__form {
    margin-top: 100rem;
  }
  .contact__content .contact__form table tr {
    display: grid;
  }
  .contact__content .contact__form table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .contact__content .contact__form table tr td input[type=text], .contact__content .contact__form table tr td input[type=email] {
    width: 100%;
  }
  .contact__content .contact__form table tr td textarea {
    width: 100%;
  }
  .contact__content .contact__form table tr td input[type=text], .contact__content .contact__form table tr td:last-child {
    padding-top: 25rem;
  }
  .contact__content .contact__form .submit__btn {
    width: 78%;
    height: 124.1rem;
    margin: auto;
    margin-top: 100rem;
  }
  footer .info__content {
    display: block;
    text-align: center;
  }
  footer .info__content .c__lbl {
    font-family: FuturaPT-Demi;
    font-weight: normal;
    font-size: 55.3rem;
    line-height: 1.4;
    padding: 10rem 22rem;
    margin-right: 0;
    display: inline-block;
  }
  footer .info__content .address__txt {
    font-weight: normal;
    font-size: 27.65rem;
    line-height: 46.08rem;
    text-align: center;
    display: block;
    margin-top: 40rem;
  }
  footer ul {
    width: 58%;
    margin: auto;
    margin-top: 55rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
  }
  footer ul li {
    width: 50%;
    padding: 20rem;
  }
  header ul {
    width: 100%;
    height: 100%;
    background: #054b5b;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 230rem;
    padding: 230rem 30rem;
    display: none;
  }
  header ul li {
    padding: 50rem 0;
    border-top: 1rem solid #fff;
  }
  header ul li:nth-child(6) {
    border-bottom: 1rem solid #fff;
  }
  header ul li a {
    display: flex;
  }
  header ul li a .icon {
    width: 41rem;
    display: flex;
  }
  header ul li a .icon img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  header ul li a .e__txt {
    font-family: CenturyGothic-Bold;
    font-size: 60rem;
    margin: 0 35rem;
    color: #fff;
  }
  header ul li a {
    font-size: 22rem;
  }
  header.open .logo__lbl {
    opacity: 1;
  }
  header.fixed {
    position: fixed;
    justify-content: right;
    height: 100rem;
  }
  header.fixed .sp-menu {
    opacity: 1;
  }
  .process__content .content__items .c__item .num {
    font-size: 60rem;
  }
  .process__content .content__items .c__item .c__lbl {
    font-size: 19rem;
    line-height: 1.5;
  }
  .process__content .content__items .c__item {
    width: 150rem;
    margin-bottom: 60rem;
  }
  .fixed__btns .f__btn:last-child span {
    width: 265rem;
  }
  .fixed__btns .f__btn span {
    width: 355rem;
  }
  .fixed__btns {
    width: 100%;
    height: 110rem;
  }
  header ul li a:hover:after {
    content: unset;
  }
  .thanks__wrapper p {
    font-size: 31rem;
    line-height: 1.6;
  }
  .thanks__wrapper {
    margin: 300rem 0 200rem;
  }
  header.fixed.open {
    justify-content: right;
  }
  header.fixed .logo__lbl {
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 12rem;
    transform: translate(-50%);
  }
  .job__content .j__item .content__text .e__txt {
    font-size: 76.8rem;
    line-height: 1.2;
  }
  .faq__content .faq__items .f__item .a__box {
    font-size: 27.65rem;
    line-height: 49.3rem;
    padding-top: 23rem;
    margin-top: 12rem;
  }
}/*# sourceMappingURL=style.css.map */